/* ==================================================================
   SONSOYAGRAPHY — clean editorial photography portfolio
   ================================================================== */

:root {
  --ink: #14100e;
  --ink-2: #453d38;
  --ink-3: #7d736c;
  --paper: #faf8f5;
  --paper-2: #f2ede7;
  --paper-3: #e7dfd6;
  --line: rgba(20, 16, 14, 0.12);
  --line-soft: rgba(20, 16, 14, 0.07);

  /* accents — gold for detail, deep maroon for action. Two tones only, so the
     colour reads intentional instead of decorative. */
  --accent: #b0803c;      /* gold — large/decorative use */
  --accent-ink: #8a6229;  /* darker gold — small text, keeps contrast readable */
  --brand: #8f2c42;       /* deep maroon — buttons, italic headings */
  --brand-dark: #742234;
  --brand-light: #e0a3b0; /* for maroon on dark backgrounds */
  --wa: #128c4a;

  --hdr-over: rgba(63, 20, 32, 0.84); /* frosted header tint (per-page below) */

  --dark: #100e0d;
  --dark-2: #1c1917;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gut: clamp(1.25rem, 4vw, 4.5rem);
  --sec: clamp(4.5rem, 10vw, 9.5rem);
  --max: 1560px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------
   Per-page colour identity. One attribute on <body> re-themes the frosted
   header, buttons, italic headings, filter pills, stats and form focus.
   The gold stays constant on every page so it still reads as one brand.
------------------------------------------------------------------- */
body[data-page="home"]     { --brand: #1f5266; --brand-dark: #163d4d; --hdr-over: rgba(14, 41, 51, 0.86); }
body[data-page="work"]     { --brand: #8f2c42; --brand-dark: #742234; --hdr-over: rgba(63, 20, 32, 0.84); }
body[data-page="films"]    { --brand: #5a2a5f; --brand-dark: #451f49; --hdr-over: rgba(42, 19, 46, 0.84); }
body[data-page="services"] { --brand: #a35429; --brand-dark: #85411f; --hdr-over: rgba(66, 32, 15, 0.84); }
body[data-page="about"]    { --brand: #33417a; --brand-dark: #26325f; --hdr-over: rgba(22, 28, 58, 0.84); }
/* contact goes green — it has no solid brand button, so it never sits next to
   the WhatsApp green and stays clearly distinct from home's wine */
body[data-page="contact"]  { --brand: #22624a; --brand-dark: #184b38; --hdr-over: rgba(13, 41, 29, 0.85); }
/* client area — bronze, tied to the shared gold so it feels like a members area */
body[data-page="status"]   { --brand: #8a6229; --brand-dark: #6d4c1e; --hdr-over: rgba(46, 33, 14, 0.86); }

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--brand); color: #fff; }

/* ---------- type ---------- */
.display {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
}
/* the giant hero line stays a touch lighter — 600 at that size gets heavy */
.d1 { font-size: clamp(2.9rem, 9vw, 8.5rem); font-weight: 500; }
.d2 { font-size: clamp(2.3rem, 5.6vw, 5rem); }
.d3 { font-size: clamp(1.7rem, 3.2vw, 2.9rem); line-height: 1.08; }

/* italic words carry the brand colour — one accent per heading */
.it { font-style: italic; color: var(--brand); }
/* …except over photography / dark panels, where white reads cleaner */
.hero .it, .dark-sec .it, .cta .it, .ftr .it { color: inherit; }

.label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.lede { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--ink-2); line-height: 1.7; }
p + p { margin-top: 1.1em; }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: var(--sec) 0; }
.section--tight { padding: calc(var(--sec) * 0.6) 0; }
.rule { height: 1px; background: var(--line); border: 0; }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}
.sec-head__t { max-width: 34ch; }
.sec-head .label { display: block; margin-bottom: 1.1rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.05rem 1.9rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--light:hover { background: transparent; color: var(--paper); }
.btn--wa { background: var(--wa); border-color: var(--wa); color: #fff; }
.btn--wa:hover { background: #0e7a40; border-color: #0e7a40; color: #fff; }
.btn svg { width: 15px; height: 15px; }

/* secondary buttons ("More about me", "Full portfolio"…) — these used to be
   underlined text and read as body copy, so they now carry a real filled pill */
.txt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
              transform 0.4s var(--ease), gap 0.4s var(--ease);
}
.txt-link:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  gap: 0.95rem;
  transform: translateY(-2px);
}
.txt-link svg { width: 14px; height: 14px; }

/* ---------- header ---------- */
/* the header is a frosted bar in the page's own colour on every page —
   over the hero video on home, over the paper background everywhere else */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.5rem 0;
  color: #fff;
  background: var(--hdr-over);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.13);
  transition: padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.hdr__in {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hdr__logo {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1;
}
.hdr__logo span { display: block; font-size: 0.55rem; font-weight: 400; letter-spacing: 0.24em; color: rgba(255,255,255,.66); margin-top: 6px; }
.hdr__nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.4rem); }
.hdr__nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.hdr__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.hdr__nav a:hover::after, .hdr__nav a[aria-current="page"]::after { transform: scaleX(1); }
.hdr__cta { display: inline-flex; gap: 0.5rem; }
.hdr__cta .btn {
  padding: 0.8rem 1.4rem;
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.hdr__cta .btn:hover { background: #fff; color: var(--brand-dark); border-color: #fff; }
/* "Book a date" stays the primary action — solid white so the pair has a clear
   hierarchy instead of two identical outlined pills */
.hdr__cta .btn--solid { background: #fff; border-color: #fff; color: var(--brand-dark); }
.hdr__cta .btn--solid:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); color: #fff; }
/* client-area button — green, so it stands apart from the header's page colour */
.hdr__cta .btn--hdr2 { background: var(--wa); border-color: var(--wa); color: #fff; }
.hdr__cta .btn--hdr2:hover { background: #0e7a40; border-color: #0e7a40; color: #fff; }
/* between 900–1150px the 5 nav links plus two buttons crowd, so the secondary
   one steps aside there (footer + mobile menu still link to it) */
@media (max-width: 1150px) { .hdr__cta .btn--hdr2 { display: none; } }
.hdr .burger span { background: #fff; }

/* scrolled: same colour, just tighter and with a firmer edge */
.hdr--stuck {
  padding: 0.85rem 0;
  box-shadow: 0 6px 24px rgba(10, 8, 7, 0.18), 0 1px 0 rgba(255, 255, 255, 0.13);
}

.burger { display: none; width: 30px; height: 18px; position: relative; z-index: 320; }
.burger span {
  position: absolute; left: 0; height: 1.5px; width: 100%;
  background: var(--ink);
  transition: transform 0.45s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }
.burger { transition: opacity 0.3s var(--ease); }

/* ---------- mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--dark);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  /* respects iPhone notch / home-bar */
  padding: max(1.15rem, env(safe-area-inset-top)) var(--gut)
           max(1.6rem, env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
  overflow-y: auto;
}
body.menu-open .drawer { opacity: 1; visibility: visible; transform: none; }

/* top row: brand + a real close button (the burger sits under the drawer, so
   the drawer carries its own X) */
.drawer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(250,248,245,.13);
}
.drawer__logo {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  padding-top: 0.45rem;
}
.drawer__logo span {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(250,248,245,.55);
  margin-top: 7px;
}
.drawer__x {
  flex: none;
  width: 44px; height: 44px;
  position: relative;
  border: 1px solid rgba(250,248,245,.28);
  border-radius: 50%;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.drawer__x:hover, .drawer__x:active { background: rgba(250,248,245,.12); border-color: rgba(250,248,245,.6); transform: rotate(90deg); }
.drawer__x span {
  position: absolute;
  top: 50%; left: 50%;
  width: 15px; height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
}
.drawer__x span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.drawer__x span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* nav list — editorial rows with an index number, not oversized type */
.drawer__nav { display: flex; flex-direction: column; padding: 0.6rem 0; margin: auto 0; }
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 6.4vw, 2rem);
  line-height: 1;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(250,248,245,.09);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.3s;
}
.drawer__nav a i {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--accent);
  flex: none;
}
.drawer__nav a[aria-current="page"] { color: rgba(250,248,245,.5); }
.drawer__nav a:active { color: var(--accent); }
body.menu-open .drawer__nav a { opacity: 1; transform: none; }
body.menu-open .drawer__nav a:nth-child(1) { transition-delay: 0.10s; }
body.menu-open .drawer__nav a:nth-child(2) { transition-delay: 0.15s; }
body.menu-open .drawer__nav a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .drawer__nav a:nth-child(4) { transition-delay: 0.25s; }
body.menu-open .drawer__nav a:nth-child(5) { transition-delay: 0.30s; }

/* contact block */
.drawer__foot {
  padding-top: 1.8rem;
  display: grid;
  gap: 1.05rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.32s;
}
body.menu-open .drawer__foot { opacity: 1; }
.drawer__row { display: grid; gap: 0.22rem; }
.drawer__row .label { font-size: 0.58rem; color: rgba(250,248,245,.45); }
.drawer__row a {
  font-size: 0.98rem;
  color: var(--paper);
  font-variant-numeric: lining-nums;
  word-break: break-word;
}
.drawer__cta { margin-top: 0.5rem; justify-content: center; width: 100%; padding: 1.05rem 1.4rem; }

/* burger hides while the drawer is open — the drawer's own X takes over */
body.menu-open .burger { opacity: 0; pointer-events: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}
.hero__media { position: absolute; inset: 0; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(8,7,6,.68) 0%, rgba(8,7,6,.28) 42%, transparent 72%),
    linear-gradient(to top, rgba(8,7,6,.8) 0%, rgba(8,7,6,.22) 48%, rgba(8,7,6,.44) 100%);
}
.hero__in { position: relative; width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut) clamp(3rem, 7vh, 6rem); }
.hero .label { color: rgba(255,255,255,.72); }
.hero__title { margin: 1.4rem 0 1.6rem; }
.hero__title span { display: block; }
.hero__sub { max-width: 44ch; color: rgba(255,255,255,.82); font-size: clamp(0.98rem, 1.4vw, 1.14rem); }
.hero__row { margin-top: 2.4rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
/* vertical, hugging the right edge — keeps clear of the floating WhatsApp button */
.hero__scroll {
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.9rem;
  writing-mode: vertical-rl;
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero__scroll i { display: block; height: 46px; width: 1px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  transform: translateY(-100%);
  animation: sweep 2.4s var(--ease) infinite;
}
@keyframes sweep { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* page hero (inner pages) */
.phero { padding: clamp(9rem, 16vh, 13rem) 0 clamp(2.5rem, 5vw, 4rem); }
.phero__title { margin: 1.2rem 0 1.4rem; }
.phero .lede { max-width: 52ch; }

/* ---------- intro / stats ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; border-top: 1px solid var(--line); padding-top: 1.8rem; }
.stat__v { font-family: var(--serif); font-weight: 600; color: var(--brand); font-size: clamp(1.4rem, 2.3vw, 2.1rem); line-height: 1; }
.stat__l { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-top: 0.55rem; }

/* ---------- gallery ---------- */
.filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filters button {
  padding: 0.62rem 1.15rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  transition: all 0.35s var(--ease);
}
.filters button:hover { border-color: var(--brand); color: var(--brand); }
.filters button.on { background: var(--brand); border-color: var(--brand); color: #fff; }

.masonry { columns: 3; column-gap: clamp(0.6rem, 1.4vw, 1.4rem); }
.masonry--2 { columns: 2; }
.tile {
  break-inside: avoid;
  margin-bottom: clamp(0.6rem, 1.4vw, 1.4rem);
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  cursor: zoom-in;
}
.tile img {
  width: 100%;
  transition: transform 1.1s var(--ease), filter 0.7s var(--ease);
}
.tile:hover img { transform: scale(1.045); }
.tile__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 50%;
  background: rgba(12,10,9,.22);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.tile__play svg { width: 14px; height: 14px; margin-left: 2px; }
.tile--video:hover .tile__play { transform: scale(1.08); background: rgba(12,10,9,.38); }
.tile__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem 1.1rem 0.95rem;
  background: linear-gradient(to top, rgba(10,8,7,.72), transparent);
  color: #fff;
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.tile:hover .tile__cap { opacity: 1; transform: none; }

/* category cards */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(0.8rem, 1.6vw, 1.4rem); }
.cat { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--paper-2); display: block; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cat:hover img { transform: scale(1.06); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,7,.7), rgba(10,8,7,.05) 60%); }
.cat__txt { position: absolute; inset: auto 0 0 0; padding: 1.6rem; color: #fff; z-index: 2; }
.cat__txt h3 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; line-height: 1.1; }
.cat__txt p { font-size: 0.82rem; color: rgba(255,255,255,.78); margin-top: 0.4rem; }
.cat__n { position: absolute; top: 1.2rem; right: 1.3rem; z-index: 2; color: rgba(255,255,255,.8); font-size: 0.66rem; letter-spacing: 0.16em; }

/* ---------- films (dark) ---------- */
.dark-sec { background: var(--dark); color: var(--paper); }
.dark-sec .label { color: #d9b877; }
.dark-sec .lede { color: rgba(250,248,245,.72); }
.dark-sec .rule { background: rgba(250,248,245,.14); }
/* on dark panels the filled pill flips to paper-on-dark */
.dark-sec .txt-link { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.dark-sec .txt-link:hover { background: transparent; border-color: var(--paper); color: var(--paper); }

.reels {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(255px, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  overflow-x: auto;
  overflow-y: hidden; /* without this, overflow-x:auto forces a stray vertical scrollbar */
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.reels--grid { grid-auto-flow: row; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); grid-auto-columns: auto; overflow: visible; }
.reel {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--dark-2);
  scroll-snap-align: start;
  cursor: pointer;
}
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), opacity .5s; }
.reel:hover img { transform: scale(1.05); opacity: .85; }
.reel__play {
  position: absolute; inset: 0; margin: auto;
  width: 58px; height: 58px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  backdrop-filter: blur(3px);
}
.reel:hover .reel__play { background: rgba(255,255,255,.2); transform: scale(1.08); }
.reel__play svg { width: 14px; height: 14px; margin-left: 2px; }
.reel__t { position: absolute; inset: auto 0 0 0; padding: 2.4rem 1rem 1rem; background: linear-gradient(to top, rgba(8,7,6,.85), transparent); color: #fff; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; }
.wide-clip { position: relative; overflow: hidden; background: var(--dark-2); aspect-ratio: 16/9; cursor: pointer; }
.wide-clip img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- services ---------- */
.svcs { border-top: 1px solid var(--line); }
.svc {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(1.8rem, 3.4vw, 2.8rem) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.5s var(--ease);
}
.svc:hover { background: var(--paper-2); }
.svc__price { font-family: var(--serif); font-weight: 600; color: var(--accent); font-size: clamp(1.5rem, 2.4vw, 2.1rem); line-height: 1; }
.svc__price small { display: block; font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 0.5rem; }
.svc__t { font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.85rem); font-weight: 600; line-height: 1.15; }
.svc__d { font-size: 0.94rem; color: var(--ink-2); margin-top: 0.6rem; }
.svc__inc { display: grid; gap: 0.45rem; }
.svc__inc li { list-style: none; font-size: 0.86rem; color: var(--ink-2); padding-left: 1.1rem; position: relative; }
.svc__inc li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.note { font-size: 0.88rem; color: var(--ink-3); max-width: 62ch; margin-top: 1.8rem; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.5rem, 3vw, 3rem); }
.step__n { font-family: var(--serif); font-size: 2.4rem; color: var(--paper-3); line-height: 1; }
.dark-sec .step__n { color: rgba(250,248,245,.22); }
.step__t { font-size: 1rem; font-weight: 500; margin: 0.8rem 0 0.4rem; letter-spacing: 0.01em; }
.step__d { font-size: 0.9rem; color: var(--ink-2); }
.dark-sec .step__d { color: rgba(250,248,245,.68); }

/* ---------- about split ---------- */
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split--rev { grid-template-columns: 1.15fr 0.85fr; }
.split__img { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--paper-2); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.8rem; }
.chip { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 0.95rem; color: var(--ink-2); }
.dark-sec .chip { border-color: rgba(250,248,245,.2); color: rgba(250,248,245,.8); }
.ticks { display: grid; gap: 0.7rem; margin-top: 1.8rem; }
.ticks li { list-style: none; padding-left: 1.5rem; position: relative; color: var(--ink-2); font-size: 0.95rem; }
.ticks li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

/* ---------- client reviews ---------- */
.reviews-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(176,128,60,.12), transparent 24rem),
    var(--paper-2);
  overflow: hidden;
}
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}
.reviews-head__copy { max-width: 44rem; }
.reviews-head .label { display: block; margin-bottom: 1.1rem; }
.reviews-rating {
  flex: none;
  display: grid;
  gap: .35rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  color: var(--ink-2);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.reviews-rating__stars,
.review-stars {
  color: #d59b20;
  letter-spacing: .15em;
  line-height: 1;
}
.reviews-rating__stars { font-size: 1rem; }
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 30vw);
  gap: 1rem;
  overflow-x: auto;
  padding: .15rem .15rem 1.25rem;
  margin: 0 -.15rem;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--accent) rgba(20,16,14,.08);
  scrollbar-width: thin;
}
.review-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  border: 1px solid rgba(20,16,14,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 50px rgba(32,24,18,.06);
}
.review-card__top { display: flex; align-items: center; gap: .85rem; }
.review-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.review-card__top h3 {
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.1;
}
.review-card__top div > span {
  display: block;
  margin-top: .25rem;
  color: var(--ink-3);
  font-size: .63rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.review-stars { margin: 1.3rem 0 1rem; font-size: .86rem; }
.review-card p { color: var(--ink-2); font-size: .92rem; line-height: 1.72; }
.review-source {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--ink-3);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.review-source i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-style: normal;
}
.reviews-hint { margin-top: 1rem; color: var(--ink-3); font-size: .78rem; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  font-family: var(--serif); font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 12px; height: 12px; position: relative; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; background: var(--brand); transition: transform 0.4s var(--ease); }
.faq summary i::before { inset: 5px 0 auto 0; height: 1px; }
.faq summary i::after { inset: 0 auto 0 5px; width: 1px; }
.faq details[open] summary i::after { transform: scaleY(0); }
.faq__a { padding: 0 0 1.5rem; max-width: 68ch; color: var(--ink-2); font-size: 0.95rem; }

/* ---------- marquee ---------- */
.marq { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.5rem 0; }
.marq__t { display: flex; gap: 3.5rem; width: max-content; animation: marq 34s linear infinite; }
.marq__t span { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.7rem); color: var(--ink-3); white-space: nowrap; display: flex; align-items: center; gap: 3.5rem; }
.marq__t span::after { content: "·"; color: var(--accent); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- contact ---------- */
.cta {
  background: var(--dark);
  color: var(--paper);
  text-align: center;
  padding: clamp(5rem, 12vw, 10rem) 0;
}
.cta .label { color: #d9b877; }
.cta .display { margin: 1.4rem auto 2rem; max-width: 22ch; }
.cta__row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.cinfo { display: grid; gap: 1.6rem; }
.cinfo__row .label { display: block; margin-bottom: 0.35rem; }
.cinfo__row a, .cinfo__row p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
  /* lining digits so phone numbers / emails stay easy to read and copy */
  font-variant-numeric: lining-nums;
  word-break: break-word;
}
.cinfo__row a { transition: color 0.3s; }
.cinfo__row a:hover { color: var(--brand); }

.form { display: grid; gap: 1.3rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  border-radius: 0;
  transition: border-color 0.35s var(--ease);
  appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 12px) 1.25rem, calc(100% - 7px) 1.25rem; background-size: 5px 5px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form__hint { font-size: 0.78rem; color: var(--ink-3); }

/* ---------- footer ---------- */
.ftr { background: var(--dark); color: rgba(250,248,245,.7); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250,248,245,.14); }
.ftr__logo { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.3em; color: var(--paper); }
.ftr__tag { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--paper); margin-top: 1.2rem; max-width: 22ch; line-height: 1.15; }
.ftr h4 { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,245,.5); font-weight: 500; margin-bottom: 1.1rem; }
.ftr ul { display: grid; gap: 0.6rem; }
.ftr li { list-style: none; font-size: 0.92rem; }
.ftr a:hover { color: var(--paper); }
.ftr__bot { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: 0.75rem; color: rgba(250,248,245,.45); }

/* ---------- lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(8,7,6,.97);
  display: none;
  place-items: center;
}
.lb.on { display: grid; }
.lb__img { max-width: min(92vw, 1500px); max-height: 86svh; object-fit: contain; animation: lbin 0.5s var(--ease); }
.lb__vid { width: min(94vw, 480px); max-height: 86svh; background: #000; animation: lbin 0.5s var(--ease); }
.lb__vid--wide { width: min(94vw, 1180px); }
@keyframes lbin { from { opacity: 0; transform: scale(0.985); } }
.lb__x, .lb__nav {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transition: background 0.3s, border-color 0.3s;
  z-index: 2;
}
.lb__x:hover, .lb__nav:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.lb__x { top: 1.5rem; right: 1.5rem; }
.lb__nav--p { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb__nav--n { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb__x svg, .lb__nav svg { width: 16px; height: 16px; }
.lb__count { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); font-size: 0.7rem; letter-spacing: 0.2em; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 180;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(18,140,74,.38);
  transition: transform 0.4s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .masonry { columns: 2; }
  .svc { grid-template-columns: 0.6fr 1.2fr; row-gap: 1.4rem; }
  .svc__inc { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); display: grid; }
  .svc__cta { grid-column: 1 / -1; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hdr__nav { display: none; }
  /* nav collapses to the burger here, which frees room — so on phones the green
     client-area button comes back into the header and "Book a date" moves to the
     drawer (it would be two buttons plus a burger otherwise) */
  .hdr__cta { display: inline-flex; }
  .hdr__cta .btn--solid { display: none; }
  /* must stay on one line — "Check Status" was wrapping on a 390px iPhone */
  .hdr__cta .btn--hdr2 {
    display: inline-flex;
    flex: none;
    white-space: nowrap;
    padding: 0.55rem 0.85rem;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
  }
  .hdr__in { gap: 0.7rem; }
  .burger { display: block; }
  .intro-grid, .split, .split--rev, .contact-grid { grid-template-columns: 1fr; }
  .split__img { order: -1; aspect-ratio: 16/11; }
  .hero__scroll { display: none; }
  .reviews-head { align-items: flex-start; flex-direction: column; }
  .reviews-rating { width: 100%; }
  .reviews-track { grid-auto-columns: minmax(300px, 72vw); }
}

/* very small phones — shrink the wordmark a touch so the header stays one row */
@media (max-width: 430px) {
  .hdr__logo { font-size: 0.78rem; letter-spacing: 0.2em; }
  .hdr__logo span { font-size: 0.5rem; letter-spacing: 0.18em; }
  .hdr__cta .btn--hdr2 { padding: 0.5rem 0.72rem; font-size: 0.56rem; letter-spacing: 0.05em; }
  .hdr__in { gap: 0.5rem; }
}

@media (max-width: 620px) {
  /* two-up on phones — one card per row reads as oversized */
  .masonry, .masonry--2 { columns: 2; column-gap: 0.5rem; }
  .tile { margin-bottom: 0.5rem; }

  .cats { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .cat { aspect-ratio: 3 / 4.1; }
  .cat__txt { padding: 0.9rem 0.8rem; }
  .cat__txt h3 { font-size: 1.08rem; }
  .cat__txt p { display: none; }
  .cat__n { top: 0.7rem; right: 0.75rem; font-size: 0.56rem; letter-spacing: 0.1em; }

  .reels { grid-auto-columns: minmax(165px, 1fr); gap: 0.5rem; }
  .reels--grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .reel__t { padding: 1.8rem 0.65rem 0.7rem; font-size: 0.56rem; letter-spacing: 0.1em; }
  .reel__play { width: 44px; height: 44px; }

  .stats { grid-template-columns: 1fr; gap: 1.1rem; }
  .svc { grid-template-columns: 1fr; }
  .svc__inc { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-track { grid-auto-columns: minmax(270px, 88vw); }
  .review-card { border-radius: 14px; }
  .lb__nav--p { left: 0.6rem; }
  .lb__nav--n { right: 0.6rem; }
  .lb__x { top: 0.8rem; right: 0.8rem; }
}

/* ==================================================================
   CLIENT STATUS CHECKER (status.html)
   ================================================================== */

.s-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: #fff;
  max-width: 640px;
}
.s-form { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; }
.s-form .field { flex: 1 1 260px; }
.s-form .btn { flex: none; }
.s-privacy { font-size: 0.78rem; color: var(--ink-3); margin-top: 1.1rem; }

.recent { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.recent:empty { display: none; }
.chip--btn { cursor: pointer; font-family: inherit; }
.chip--btn:hover { border-color: var(--brand); color: var(--brand); }
.recent__clear {
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); border-bottom: 1px solid var(--line); padding-bottom: 2px;
}
.recent__clear:hover { color: var(--brand); border-color: var(--brand); }

.s-out { margin-top: clamp(2rem, 5vw, 3.5rem); }
.s-out:empty { display: none; }

.s-head { margin-bottom: clamp(1.5rem, 3vw, 2.4rem); }
.s-head .display { margin: 0.9rem 0 0.5rem; }

/* three dots while the lookup runs */
.s-loading { display: flex; gap: 0.5rem; padding: 2rem 0; }
.s-loading span {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  animation: sdot 1.1s var(--ease) infinite;
}
.s-loading span:nth-child(2) { animation-delay: 0.15s; }
.s-loading span:nth-child(3) { animation-delay: 0.3s; }
@keyframes sdot { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-5px); } }

.s-empty { padding: 2.2rem 0; max-width: 52ch; }
.s-empty .lede { margin: 0.9rem 0 1.6rem; }

.s-list { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }

/* ---- one shoot card ---- */
.sb {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.3rem, 2.6vw, 2rem);
  background: #fff;
}
.sb.is-cancelled { opacity: 0.6; }
.sb__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem;
}
.sb__pkg { font-family: var(--serif); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.15; }
.sb__meta { font-size: 0.88rem; color: var(--ink-3); margin-top: 0.35rem; }
.sb__badge {
  flex: none;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.45rem 0.85rem; border-radius: 999px;
  background: var(--paper-2); color: var(--ink-2);
}
.sb__badge.is-booked    { background: #eef2f6; color: #2c4a63; }
.sb__badge.is-shot      { background: #f3eefa; color: #4d3670; }
.sb__badge.is-editing   { background: #fdf3e5; color: #8a5a17; }
.sb__badge.is-delivered { background: #e9f5ee; color: #1c6b45; }
.sb__badge.is-cancelled { background: #fdeceb; color: #a3282f; }

/* ---- pipeline ---- */
.pipe {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0 0 1.8rem;
}
.pipe__step { position: relative; text-align: center; padding-top: 22px; }
/* connector line between dots */
.pipe__step::before {
  content: "";
  position: absolute; top: 6px; left: 0; width: 100%; height: 2px;
  background: var(--paper-3);
}
.pipe__step:first-child::before { left: 50%; width: 50%; }
.pipe__step:last-child::before { width: 50%; }
.pipe__step.is-done::before, .pipe__step.is-now::before { background: var(--brand); }
.pipe__step.is-now:last-child::before { background: var(--brand); }
.pipe__dot {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--paper-3);
}
.pipe__step.is-done .pipe__dot { background: var(--brand); border-color: var(--brand); }
.pipe__step.is-now .pipe__dot {
  background: var(--brand); border-color: var(--brand);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 18%, transparent);
}
.pipe__label {
  display: block;
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.pipe__step.is-done .pipe__label { color: var(--ink-2); }
.pipe__step.is-now .pipe__label { color: var(--brand); font-weight: 600; }

/* ---- detail grid ---- */
.sb__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 2rem);
  border-top: 1px solid var(--line-soft);
  padding-top: 1.4rem;
}
.sb__cell .label { display: block; margin-bottom: 0.4rem; }
.sb__cell > b { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; display: block; }
.sb__note { display: block; font-size: 0.82rem; color: var(--ink-3); margin-top: 0.25rem; }

.sb__money { display: grid; gap: 0.45rem; }
.sb__mrow { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9rem; color: var(--ink-2); }
.sb__mrow b { font-variant-numeric: lining-nums; }
.sb__mrow.is-due { color: var(--brand); font-weight: 600; }
.sb__mrow.is-due b { color: var(--brand); }

.sb__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1.6rem; }
.sb__actions .btn { padding: 0.85rem 1.5rem; }

@media (max-width: 620px) {
  .s-form { flex-direction: column; align-items: stretch; }
  .s-form .btn { width: 100%; justify-content: center; }
  .sb__grid { grid-template-columns: 1fr; }
  .pipe__label { font-size: 0.58rem; letter-spacing: 0.05em; }
  .sb__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* the copyright line doubles as a hidden admin entry (3 taps) — keep it looking
   like plain text: no pointer cursor, no mobile tap flash */
[data-secret] { -webkit-tap-highlight-color: transparent; cursor: inherit; }
