:root {
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);

  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #191919;
  --line: #2a2a2a;
  --line-soft: #1e1e1e;
  --ink: #ededea;
  --ink-dim: #979793;
  --steel: #babfc6;
  --steel-dim: #74787e;
  --accent: #7a2424;

  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}
html { scroll-padding-top: env(safe-area-inset-top, 0px); scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: inherit; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
  opacity: 0; transition: opacity .5s ease;
}
body.ready { opacity: 1; }
body.lock { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){transition-delay:.02s}.reveal-stagger.in > *:nth-child(2){transition-delay:.08s}
.reveal-stagger.in > *:nth-child(3){transition-delay:.14s}.reveal-stagger.in > *:nth-child(4){transition-delay:.2s}
.reveal-stagger.in > *:nth-child(5){transition-delay:.26s}.reveal-stagger.in > *:nth-child(6){transition-delay:.32s}
.reveal-stagger.in > *:nth-child(7){transition-delay:.38s}.reveal-stagger.in > *:nth-child(8){transition-delay:.44s}
.reveal-stagger.in > *:nth-child(9){transition-delay:.5s}.reveal-stagger.in > *:nth-child(10){transition-delay:.56s}
.reveal-stagger.in > *:nth-child(11){transition-delay:.62s}.reveal-stagger.in > *:nth-child(12){transition-delay:.68s}
.reveal-stagger.in > *:nth-child(13){transition-delay:.74s}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { transition: none; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track, .hero-photo img { animation: none !important; }
  * { animation-duration: .001ms !important; }
}

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky; top: 0; top: env(safe-area-inset-top, 0px); z-index: 80;
  background: rgba(10,10,10,0.86); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.nav-brand img { height: 36px; width: 36px; object-fit: contain; }
.nav-brand span { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .02em; }
nav.nav-links { display: flex; gap: 34px; }
nav.nav-links a { text-decoration: none; color: var(--ink-dim); font-size: .92rem; font-weight: 500; transition: color .2s ease; position: relative; padding: 4px 0; }
nav.nav-links a::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px; background:var(--steel); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); }
nav.nav-links a:hover { color: var(--ink); }
nav.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--steel-dim); border-radius: 2px; text-decoration: none; color: var(--ink); font-size: .88rem; font-weight: 500; transition: all .2s ease; white-space: nowrap; }
.nav-cta:hover { border-color: var(--steel); background: var(--surface); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 2px; padding: 8px 10px; color: var(--ink); cursor: pointer; }
.mobile-menu { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .35s var(--ease); }
.mobile-menu > div { min-height: 0; overflow: hidden; display: flex; flex-direction: column; }
.mobile-menu.open { grid-template-rows: 1fr; border-top: 1px solid var(--line-soft); }
.mobile-menu.open > div { padding: 8px 0 20px; }
.mobile-menu a { padding: 12px 0; text-decoration: none; color: var(--ink-dim); border-bottom: 1px solid var(--line-soft); font-size: .95rem; }

/* ---------- Hero (full photo) ---------- */
.hero { position: relative; height: min(92vh, 820px); min-height: 560px; overflow: hidden; border-top: none; }
.hero-photo { position: absolute; inset: -6% -6%; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; filter: grayscale(.25) brightness(.55) contrast(1.08); }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.35) 40%, rgba(10,10,10,.92) 100%),
  linear-gradient(90deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.15) 55%);
}
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.35); backdrop-filter: blur(6px); border-radius: 40px; padding: 9px 16px; color: var(--ink-dim); font-size: .82rem; margin-bottom: 26px; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #3fae6a; box-shadow: 0 0 0 3px rgba(63,174,106,.15); }
.hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.5rem, 5.6vw, 4.2rem); line-height: 1.1; margin: 0 0 20px; color: var(--ink); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--steel); }
.hero p.lede { font-size: 1.08rem; color: #d9d9d6; max-width: 48ch; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 2px; text-decoration: none; font-size: .92rem; font-weight: 600; transition: all .2s var(--ease); cursor: pointer; border: none; font-family: var(--font-body); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--ink); color: #0a0a0a; border: 1px solid var(--ink); }
.btn-primary:hover { background: #d7d7d4; transform: translateY(-2px); }
.btn-ghost { background: rgba(0,0,0,.25); color: var(--ink); border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--steel); transform: translateY(-2px); }
.scroll-cue { position: absolute; z-index: 2; left: 28px; bottom: 28px; display: flex; align-items: center; gap: 10px; color: var(--ink-dim); font-size: .78rem; }
.scroll-cue .line { width: 1px; height: 28px; background: linear-gradient(var(--steel), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } 51%{ transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee-section { border-top: 1px solid var(--line-soft); background: var(--surface); padding: 0; overflow: hidden; }
.marquee { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee figure { margin: 0; width: 190px; height: 130px; flex: none; border-right: 1px solid var(--line-soft); overflow: hidden; }
.marquee img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.85); transition: filter .3s ease; }
.marquee figure:hover img { filter: grayscale(0) brightness(1); }

/* ---------- Section shared ---------- */
section { padding: 92px 0; border-top: 1px solid var(--line-soft); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head .eyebrow { color: var(--steel-dim); font-size: .82rem; margin: 0 0 8px; }
.section-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 0; }
.section-head p { color: var(--ink-dim); max-width: 42ch; margin: 8px 0 0; }

/* ---------- Portfolio ---------- */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tabs button { font-family: var(--font-body); font-size: .86rem; font-weight: 500; color: var(--ink-dim); background: transparent; border: 1px solid var(--line); border-radius: 40px; padding: 9px 18px; cursor: pointer; transition: all .25s var(--ease); }
.filter-tabs button:hover { border-color: var(--steel); color: var(--ink); }
.filter-tabs button.active { background: var(--ink); color: #0a0a0a; border-color: var(--ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .item:nth-child(6n+1) { grid-row: span 2; }
.g-card { position: relative; overflow: hidden; border-radius: 2px; border: 1px solid var(--line-soft); cursor: pointer; height: 100%; min-height: 220px; background: var(--surface); transition: opacity .4s var(--ease), transform .5s var(--ease); opacity: 0; transform: translateY(18px); }
.g-card.shown { opacity: 1; transform: translateY(0); }
.g-card.hide { display: none; }
.g-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease), filter .4s ease; filter: brightness(.92); }
.g-card:hover img { transform: scale(1.07); filter: brightness(1); }
.g-card .tag { position: absolute; left: 12px; bottom: 12px; padding: 6px 12px; background: rgba(10,10,10,.65); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.12); border-radius: 40px; font-size: .74rem; color: var(--ink-dim); opacity: 0; transform: translateY(6px); transition: all .3s var(--ease); }
.g-card:hover .tag { opacity: 1; transform: translateY(0); }
.g-card .zoom { position: absolute; right: 12px; top: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(10,10,10,.55); border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; color: var(--ink); }
.g-card:hover .zoom { opacity: 1; }
.g-card .zoom svg { width: 14px; height: 14px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,6,6,.94); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 40px 20px; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; max-width: 900px; max-height: 84vh; text-align: center; transform: scale(.96); transition: transform .3s var(--ease); }
.lightbox.open figure { transform: scale(1); }
.lightbox img { max-height: 78vh; width: auto; margin: 0 auto; border: 1px solid var(--line-soft); }
.lightbox figcaption { color: var(--ink-dim); font-size: .86rem; margin-top: 14px; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next { position: absolute; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--ink); border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s ease; }
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { border-color: var(--steel); background: rgba(255,255,255,.12); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 18px; height: 18px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.about-grid .quote { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.5; color: var(--ink); margin: 0; }
.about-body p { color: var(--ink-dim); margin: 0 0 16px; }
.about-signoff { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line-soft); color: var(--steel); font-size: .88rem; }

.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.process-card { border: 1px solid var(--line-soft); border-radius: 2px; padding: 22px 20px; background: var(--surface); transition: border-color .3s ease, transform .3s var(--ease); position: relative; }
.process-card:hover { border-color: var(--line); transform: translateY(-3px); }
.process-card .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--steel-dim); margin: 0 0 10px; }
.process-card h4 { font-family: var(--font-display); font-weight: 500; font-size: 1rem; margin: 0 0 6px; }
.process-card p { margin: 0; color: var(--ink-dim); font-size: .85rem; }

/* ---------- Instagram strip ---------- */
.ig-strip { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 42px 40px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 2px; flex-wrap: wrap; }
.ig-strip h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin: 0 0 6px; }
.ig-strip p { margin: 0; color: var(--ink-dim); font-size: .9rem; }
.ig-strip .btn { flex: none; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-item button.faq-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; text-align: left; cursor: pointer; padding: 22px 0; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.faq-item .chev { flex: none; color: var(--steel-dim); transition: transform .35s var(--ease); }
.faq-item .chev svg { width: 16px; height: 16px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-item .panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item .panel > div { overflow: hidden; }
.faq-item.open .panel { grid-template-rows: 1fr; }
.faq-item .panel p { margin: 0 0 20px; color: var(--ink-dim); font-size: .92rem; max-width: 62ch; }

/* ---------- Booking form ---------- */
.book-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.book-info h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 0 0 14px; }
.book-info p { color: var(--ink-dim); margin: 0 0 26px; max-width: 40ch; }
.book-meta { display: flex; flex-direction: column; gap: 18px; }
.book-meta div { display: flex; gap: 14px; align-items: flex-start; }
.book-meta .icon { width: 32px; height: 32px; flex: none; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--steel); }
.book-meta .icon svg { width: 14px; height: 14px; }
.book-meta strong { display: block; font-size: .88rem; color: var(--ink); margin-bottom: 2px; }
.book-meta span { font-size: .85rem; color: var(--ink-dim); }

.book-form { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 2px; padding: 36px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: .78rem; color: var(--ink-dim); margin-bottom: 8px; letter-spacing: .01em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 2px; padding: 13px 14px;
  color: var(--ink); font-family: var(--font-body); font-size: .92rem; transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--steel); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23babfc6' stroke-width='1.8'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.field textarea { resize: vertical; min-height: 110px; font-family: var(--font-body); }
.form-submit { width: 100%; justify-content: center; }
.form-status { margin-top: 16px; font-size: .84rem; color: var(--steel); min-height: 1.2em; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line-soft); padding: 40px 0; padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px)); }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 24px; width: 24px; object-fit: contain; }
.footer-brand span { font-family: var(--font-display); font-size: .9rem; color: var(--ink-dim); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--ink-dim); text-decoration: none; font-size: .86rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--ink); }
.footer-social { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink-dim); transition: all .2s ease; }
.footer-social:hover { color: var(--ink); border-color: var(--steel); transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 42px; height: 42px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s var(--ease); opacity: 0; pointer-events: none;
}
.back-to-top:hover { border-color: var(--steel); transform: translateY(-3px); background: var(--surface-2); }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top svg { width: 18px; height: 18px; }


/* ---------- Native Select ---------- */
.native-select {
  width: 100%;
  padding: 13px 14px;
  background-color: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .92rem;
  border-radius: 2px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23dddddd%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 14px top 50%;
  background-size: 10px auto;
}
.native-select:focus {
  outline: none;
  border-color: var(--steel);
}

@media (max-width: 860px) {
  nav.nav-links { display: none; } .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { height: 88vh; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .item:nth-child(6n+1) { grid-row: span 1; }
  .book-grid { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .ig-strip { padding: 30px 24px; }
  .book-form { padding: 26px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .process-row { grid-template-columns: 1fr; }
  .lightbox .lb-prev, .lightbox .lb-next { width: 36px; height: 36px; }
}
