/* ============================================================
   Jesse Chance — Wedding Photography & Videography, Perth
   Design system
   ============================================================ */

:root{
  /* Palette — warm, editorial, drawn from the photography */
  --cream:      #FBF8F4;
  --bone:       #F3EDE5;
  --sand:       #E4D8C8;
  --ink:        #17130F;
  --ink-soft:   #3A322B;
  --muted:      #7A6E63;
  --line:       #E2D8CB;
  --rose:       #E8879F;   /* from the logo mark */
  --rose-deep:  #B8536D;   /* accessible on cream */
  --gold:       #A9895E;
  --dark:       #14100D;
  --dark-soft:  #221B16;

  /* Type */
  --display: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --sp-section: clamp(5rem, 11vw, 10rem);
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
/* The hidden attribute must win over any display rule below (e.g. form{display:grid}) */
[hidden]{display:none!important}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:300;
  font-size:clamp(1rem,.96rem + .2vw,1.0625rem);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}
h1,h2,h3,h4{margin:0;font-weight:300;line-height:1.06;letter-spacing:-.015em}
p{margin:0 0 1.15em}
p:last-child{margin-bottom:0}
::selection{background:var(--rose);color:#fff}

/* ---------- Layout ---------- */
.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:var(--gutter)}
.wrap-wide{max-width:1600px;margin-inline:auto;padding-inline:var(--gutter)}
.section{padding-block:var(--sp-section)}
.center{text-align:center}

/* ---------- Type scale ---------- */
.display{
  font-family:var(--display);
  font-size:clamp(3rem,10.5vw,9.5rem);
  line-height:.92;
  letter-spacing:-.02em;
  font-weight:300;
}
.h1{font-family:var(--display);font-size:clamp(2.5rem,6.4vw,5.25rem);line-height:1.02}
.h2{font-family:var(--display);font-size:clamp(2.1rem,4.7vw,3.9rem);line-height:1.06}
.h3{font-family:var(--display);font-size:clamp(1.5rem,2.4vw,2.15rem);line-height:1.15}
.italic{font-style:italic}
.rose{color:var(--rose-deep)}

.eyebrow{
  font-size:.7rem;
  letter-spacing:.34em;
  text-transform:uppercase;
  font-weight:400;
  color:var(--muted);
  margin:0 0 1.5rem;
  display:flex;align-items:center;gap:.9rem;
}
.eyebrow::before{content:"";width:2rem;height:1px;background:var(--gold);flex:none}
.eyebrow.center-e{justify-content:center}
.eyebrow.center-e::after{content:"";width:2rem;height:1px;background:var(--gold);flex:none}

.lede{font-size:clamp(1.05rem,1.5vw,1.3rem);line-height:1.7;color:var(--ink-soft);max-width:62ch}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.7rem;
  padding:1.15rem 2.4rem;
  font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;font-weight:400;
  border:1px solid var(--ink);
  background:var(--ink);color:var(--cream);
  transition:background .5s var(--ease),color .5s var(--ease),border-color .5s var(--ease),transform .5s var(--ease);
  position:relative;overflow:hidden;text-align:center;
}
.btn:hover{background:transparent;color:var(--ink);transform:translateY(-2px)}
.btn--ghost{background:transparent;color:var(--ink);border-color:var(--ink)}
.btn--ghost:hover{background:var(--ink);color:var(--cream)}
.btn--light{background:var(--cream);color:var(--ink);border-color:var(--cream)}
.btn--light:hover{background:transparent;color:var(--cream)}
.btn--outline-light{background:transparent;color:var(--cream);border-color:rgba(251,248,244,.5)}
.btn--outline-light:hover{background:var(--cream);color:var(--ink);border-color:var(--cream)}
.btn--rose{background:var(--rose-deep);border-color:var(--rose-deep);color:#fff}
.btn--rose:hover{background:transparent;color:var(--rose-deep)}
.btn--sm{padding:.9rem 1.7rem;font-size:.66rem}
.btn-row{display:flex;flex-wrap:wrap;gap:1rem}

/* Text link with animated rule */
.tlink{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:.72rem;letter-spacing:.24em;text-transform:uppercase;
  padding-bottom:.4rem;position:relative;
}
.tlink::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:100%;
  background:currentColor;transform-origin:right;transform:scaleX(1);
  transition:transform .5s var(--ease);
}
.tlink:hover::after{transform:scaleX(0);transform-origin:left}
.tlink .arr{transition:transform .45s var(--ease)}
.tlink:hover .arr{transform:translateX(5px)}

/* ============================================================
   Header / Nav
   ============================================================ */
.header{
  position:fixed;inset:0 0 auto 0;z-index:100;
  padding-block:1.4rem;
  transition:background .5s var(--ease),padding .5s var(--ease),box-shadow .5s var(--ease);
  color:var(--cream);
}
.header::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(to bottom,rgba(0,0,0,.42),rgba(0,0,0,0));
  transition:opacity .5s var(--ease);
}
.header.scrolled{background:var(--cream);color:var(--ink);padding-block:.85rem;box-shadow:0 1px 0 var(--line)}
.header.scrolled::before{opacity:0}
.header.solid{background:var(--cream);color:var(--ink);position:sticky}
.header.solid::before{opacity:0}

.nav{display:flex;align-items:center;justify-content:space-between;gap:2rem}
.brand{display:flex;align-items:center;gap:.75rem;flex:none}
.brand img{width:38px;height:38px;transition:width .5s var(--ease)}
.header.scrolled .brand img{width:32px}
/* JC monogram set as live text - crisp at any size, recolourable, ~0 bytes */
.brand-mark{
  font-family:var(--display);font-weight:300;font-size:31px;line-height:.9;
  color:inherit;flex:none;transition:font-size .5s var(--ease);
  padding-top:.06em;
}
.header.scrolled .brand-mark{font-size:26px}
.brand-txt{
  font-size:.78rem;letter-spacing:.3em;text-transform:uppercase;font-weight:400;line-height:1.1;
}
.brand-txt small{display:block;font-size:.54rem;letter-spacing:.2em;opacity:.65;margin-top:.2rem}

.nav-links{display:flex;align-items:center;gap:2.2rem;list-style:none;margin:0;padding:0}
.nav-links a{
  font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;position:relative;padding-block:.3rem;
}
.nav-links a::after{
  content:"";position:absolute;left:0;bottom:0;height:1px;width:100%;background:currentColor;
  transform:scaleX(0);transform-origin:left;transition:transform .45s var(--ease);
}
.nav-links a:hover::after,.nav-links a[aria-current="page"]::after{transform:scaleX(1)}

.nav-cta{display:flex;align-items:center;gap:1.4rem;flex:none}
.nav-phone{
  font-size:.74rem;letter-spacing:.14em;white-space:nowrap;
  transition:color .35s var(--ease);
}
.nav-phone:hover{color:var(--rose-deep)}
.header:not(.scrolled):not(.solid) .nav-phone:hover{color:var(--rose)}
/* Hidden on small screens — the mobile menu carries the call link instead */
@media (max-width:1180px){.nav-phone{display:none}}

.mobile-call{
  margin-top:1.6rem;font-size:.74rem;letter-spacing:.24em;text-transform:uppercase;
  color:rgba(251,248,244,.7);
}
.nav-cta .btn{padding:.85rem 1.6rem;font-size:.65rem}
.header:not(.scrolled):not(.solid) .nav-cta .btn{
  background:transparent;color:var(--cream);border-color:rgba(251,248,244,.55);
}
.header:not(.scrolled):not(.solid) .nav-cta .btn:hover{background:var(--cream);color:var(--ink);border-color:var(--cream)}

/* Burger */
.burger{display:none;width:44px;height:44px;align-items:center;justify-content:center;flex-direction:column;gap:5px}
.burger span{display:block;width:22px;height:1px;background:currentColor;transition:transform .4s var(--ease),opacity .3s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.mobile-menu{
  position:fixed;inset:0;z-index:99;background:var(--dark);color:var(--cream);
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:.4rem;
  opacity:0;visibility:hidden;transition:opacity .5s var(--ease),visibility .5s;
}
.mobile-menu.open{opacity:1;visibility:visible}
.mobile-menu a:not(.btn){font-family:var(--display);font-size:clamp(2rem,9vw,3rem);line-height:1.5}
.mobile-menu a.btn{
  margin-top:2.5rem;width:auto;align-self:center;
  font-family:var(--sans);font-size:.72rem;line-height:1;letter-spacing:.24em;
  padding:1.15rem 2.4rem;white-space:nowrap;
}

@media (max-width:1000px){
  .nav-links{display:none}
  .nav-cta .btn{display:none}
  .burger{display:flex}
}

/* ============================================================
   Hero — cross-fading slideshow
   ============================================================ */
.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;color:var(--cream)}
.hero-media{position:absolute;inset:0;z-index:-2}
.hero-media img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 42%;
}
/* Hero film sits above the fallback image and covers it once playing. */
.hero-video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:center 45%;z-index:1;
  pointer-events:none;
}
/* If the film can't play, JS removes it and the poster image shows through. */
.hero-video.failed{display:none}
@media (prefers-reduced-motion: reduce){
  .hero-video{display:none}
}

/* Without JS only the first frame shows — never a blank hero. */
.hero-media img + img{opacity:0}
.js .hero-media img{opacity:0;transition:opacity 2s var(--ease)}
.js .hero-media img.on{opacity:1}
/* Slow drift on the visible frame */
.js .hero-media img.on{animation:heroDrift 12s ease-out forwards}
@keyframes heroDrift{from{transform:scale(1.085)}to{transform:scale(1)}}
@media (prefers-reduced-motion: reduce){
  .js .hero-media img.on{animation:none}
}

/* Slide progress dots */
.hero-dots{
  position:absolute;left:var(--gutter);bottom:2.5rem;display:flex;gap:.6rem;z-index:3;
}
.hero-dots button{
  width:26px;height:2px;background:rgba(251,248,244,.32);padding:0;border-radius:0;
  transition:background .5s var(--ease);cursor:pointer;
}
.hero-dots button[aria-current="true"]{background:var(--cream)}
@media (max-width:760px){.hero-dots{display:none}}
/* Two-axis scrim. The horizontal pass protects the left-aligned type, the
   vertical pass protects the nav and the bottom CTAs — so the headline stays
   legible no matter which slide is showing. */
.hero::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(to right,rgba(10,8,6,.74) 0%,rgba(10,8,6,.46) 38%,rgba(10,8,6,.12) 72%,rgba(10,8,6,0) 100%),
    linear-gradient(to bottom,rgba(10,8,6,.58) 0%,rgba(10,8,6,.14) 30%,rgba(10,8,6,.2) 62%,rgba(10,8,6,.66) 100%);
}
.hero-inner{width:100%;padding-bottom:clamp(3.5rem,8vh,7rem);padding-top:9rem}
.hero .display{max-width:14ch}
.hero-sub{max-width:44ch;font-size:clamp(1rem,1.35vw,1.2rem);color:rgba(251,248,244,.9);margin-top:1.8rem}
.hero-meta{
  display:flex;flex-wrap:wrap;align-items:center;gap:.9rem 1.6rem;margin-bottom:1.6rem;
  font-size:.68rem;letter-spacing:.26em;text-transform:uppercase;color:rgba(251,248,244,.82);
}
.hero-meta .dot{width:3px;height:3px;border-radius:50%;background:var(--rose);flex:none}
.hero .btn-row{margin-top:2.6rem}

.scroll-cue{
  position:absolute;right:var(--gutter);bottom:2.4rem;
  display:flex;flex-direction:column;align-items:center;gap:.7rem;
  font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;color:rgba(251,248,244,.75);
}
.scroll-cue i{display:block;width:1px;height:46px;background:linear-gradient(to bottom,rgba(251,248,244,.7),transparent);
  animation:cue 2.4s ease-in-out infinite}
@keyframes cue{0%,100%{transform:scaleY(.4);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}}
@media (max-width:700px){.scroll-cue{display:none}}

/* Mobile hero: keep the couple visible beside the type and hold contrast */
@media (max-width:760px){
  .hero-media img{object-position:72% 38%}
  .hero::after{
    background:linear-gradient(to bottom,rgba(10,8,6,.5) 0%,rgba(10,8,6,.28) 28%,rgba(10,8,6,.82) 100%);
  }
  .hero .display{max-width:none;font-size:clamp(2.9rem,13vw,4.6rem)}
  .hero-inner{padding-top:7rem}
  .hero .btn-row{flex-direction:column;align-items:stretch}
  .hero .btn-row .btn{width:100%}
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust{background:var(--dark);color:var(--cream);padding-block:clamp(2.5rem,5vw,3.5rem)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center}
.trust-item .n{font-family:var(--display);font-size:clamp(2rem,3.4vw,3rem);line-height:1;display:block}
.trust-item .l{font-size:.63rem;letter-spacing:.24em;text-transform:uppercase;color:rgba(251,248,244,.62);margin-top:.7rem;display:block}
.stars{color:var(--rose);letter-spacing:.18em;font-size:1rem}
@media (max-width:800px){.trust-grid{grid-template-columns:repeat(2,1fr);gap:2.5rem 1rem}}

/* ============================================================
   Split sections
   ============================================================ */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,6vw,6rem);align-items:center}
.split--reverse .split-media{order:2}
.split-media{position:relative}
.split-media img{width:100%;aspect-ratio:4/5;object-fit:cover}
.split-media.tall img{aspect-ratio:3/4}
.media-caption{
  position:absolute;bottom:-1px;left:-1px;background:var(--cream);padding:1.1rem 1.6rem 0 0;
  font-size:.63rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted);
}
.split-body{max-width:56ch}
.split-body .h2{margin-bottom:1.6rem}
@media (max-width:900px){
  .split{grid-template-columns:1fr}
  .split--reverse .split-media{order:0}
}

/* Signature */
.sig{font-family:var(--display);font-style:italic;font-size:1.6rem;color:var(--ink-soft);margin-top:1.6rem}

/* ============================================================
   Work / album grid
   ============================================================ */
.work-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(1rem,2.5vw,2.2rem)}
.album{position:relative;overflow:hidden;display:block;background:var(--sand)}
.album-img{aspect-ratio:4/5;overflow:hidden}
.album:nth-child(4n+1) .album-img,.album:nth-child(4n+4) .album-img{aspect-ratio:4/5}
.album:nth-child(4n+2) .album-img,.album:nth-child(4n+3) .album-img{aspect-ratio:4/5}
.album img{width:100%;height:100%;object-fit:cover;transition:transform 1.2s var(--ease),filter 1.2s var(--ease)}
.album:hover img{transform:scale(1.055)}
.album::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(12,9,7,.72) 0%,rgba(12,9,7,.08) 45%,transparent 70%);
  transition:opacity .6s var(--ease);
}
.album-cap{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:clamp(1.4rem,2.6vw,2.4rem);color:var(--cream)}
.album-cap .n{font-family:var(--display);font-size:clamp(1.5rem,2.6vw,2.4rem);line-height:1.1}
.album-cap .v{font-size:.65rem;letter-spacing:.24em;text-transform:uppercase;color:rgba(251,248,244,.82);margin-top:.6rem}
.album-cap .go{
  font-size:.63rem;letter-spacing:.24em;text-transform:uppercase;margin-top:1rem;
  display:inline-flex;gap:.5rem;align-items:center;
  opacity:0;transform:translateY(8px);transition:opacity .5s var(--ease),transform .5s var(--ease);
}
.album:hover .go{opacity:1;transform:translateY(0)}
@media (max-width:760px){.work-grid{grid-template-columns:1fr}.album-cap .go{opacity:1;transform:none}}

/* Marquee strip of details */
.strip{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(.5rem,1.4vw,1rem)}
.strip img{aspect-ratio:1;object-fit:cover;width:100%;transition:transform 1s var(--ease)}
.strip a:hover img,.strip figure:hover img{transform:scale(1.05)}
.strip>*{overflow:hidden}
@media (max-width:700px){.strip{grid-template-columns:repeat(2,1fr)}}

/* ============================================================
   Pillars / why us
   ============================================================ */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(2rem,4vw,3.5rem)}
.pillar{border-top:1px solid var(--line);padding-top:2rem}
.pillar .num{font-family:var(--display);font-size:1rem;color:var(--rose-deep);letter-spacing:.1em;display:block;margin-bottom:1.2rem}
.pillar h3{margin-bottom:.9rem}
.pillar p{color:var(--muted);font-size:.97rem}
@media (max-width:880px){.pillars{grid-template-columns:1fr}}

/* ============================================================
   Testimonial
   ============================================================ */
.quote-sec{background:var(--bone);position:relative;overflow:hidden}
.quote{max-width:60rem;margin-inline:auto;text-align:center;position:relative;z-index:2}
.quote-mark{font-family:var(--display);font-size:9rem;line-height:.6;color:var(--sand);display:block;margin-bottom:.5rem}
.quote blockquote{margin:0;font-family:var(--display);font-size:clamp(1.35rem,2.9vw,2.35rem);line-height:1.35;font-style:italic;color:var(--ink)}
.quote cite{
  display:block;margin-top:2.2rem;font-style:normal;
  font-size:.68rem;letter-spacing:.28em;text-transform:uppercase;color:var(--muted);
}
.quote .stars{margin-bottom:1.6rem;display:block;color:var(--rose-deep)}

/* Multi testimonial cards */
.tcards{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.2rem,2.4vw,2rem);margin-top:4rem}
.tcard{
  background:var(--cream);padding:clamp(1.8rem,3vw,2.5rem);border:1px solid var(--line);
  display:flex;flex-direction:column;
}
.tcard p{flex:1}
.tcard cite{margin-top:auto;padding-top:1.4rem}
.tcard .stars{color:var(--rose-deep);font-size:.85rem;display:block;margin-bottom:1.2rem}
.tcard p{font-size:.95rem;color:var(--ink-soft);font-style:italic;font-family:var(--display);font-size:1.15rem;line-height:1.5}
.tcard cite{display:block;margin-top:1.4rem;font-style:normal;font-size:.63rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted)}
@media (max-width:880px){.tcards{grid-template-columns:1fr}}

/* ============================================================
   Pricing
   ============================================================ */
.price-note{
  display:inline-flex;align-items:center;gap:.6rem;
  background:var(--rose-deep);color:#fff;padding:.55rem 1.2rem;
  font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;margin-bottom:1.6rem;
}
.tiers{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,1.8vw,1.5rem);align-items:stretch}
.tiers--two{grid-template-columns:repeat(2,1fr);max-width:820px;margin-inline:auto}
.tiers--three{grid-template-columns:repeat(3,1fr)}
.tier{
  background:var(--cream);border:1px solid var(--line);
  padding:clamp(1.8rem,2.6vw,2.4rem);display:flex;flex-direction:column;position:relative;
  transition:transform .5s var(--ease),box-shadow .5s var(--ease),border-color .5s var(--ease);
}
.tier:hover{transform:translateY(-6px);box-shadow:0 24px 50px -30px rgba(23,19,15,.4);border-color:var(--sand)}
.tier--feature{background:var(--dark);color:var(--cream);border-color:var(--dark)}
.tier--feature .tier-name,.tier--feature .tier-hours{color:rgba(251,248,244,.88)}
.tier--feature li{color:rgba(251,248,244,.97);border-color:rgba(251,248,244,.2)}
.tier--feature li::before{color:var(--rose)}
.tier--feature .was{color:rgba(251,248,244,.85);opacity:1}
.tier-badge{
  position:absolute;top:0;left:50%;transform:translate(-50%,-50%);
  background:var(--rose-deep);color:#fff;padding:.45rem 1.1rem;white-space:nowrap;
  font-size:.58rem;letter-spacing:.22em;text-transform:uppercase;
}
.tier-name{font-size:.7rem;letter-spacing:.3em;text-transform:uppercase;color:var(--muted);margin-bottom:1.2rem}
.tier-price{display:flex;align-items:baseline;gap:.7rem;flex-wrap:wrap;margin-bottom:.4rem}
.tier-price .now{font-family:var(--display);font-size:clamp(2.2rem,3.4vw,3rem);line-height:1}
.tier-price .was{font-family:var(--display);font-size:1.35rem;text-decoration:line-through;text-decoration-thickness:1px;color:var(--ink-soft);opacity:.62}
.tier-save{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--rose-deep);margin-bottom:1.4rem}
.tier--feature .tier-save{color:var(--rose)}
.tier-hours{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);padding-bottom:1.4rem;border-bottom:1px solid var(--line)}
.tier--feature .tier-hours{border-color:rgba(251,248,244,.16)}
.tier ul{list-style:none;margin:1.4rem 0 2rem;padding:0;flex:1}
.tier li{position:relative;padding:.7rem 0 .7rem 1.6rem;font-size:.9rem;color:var(--ink-soft);border-bottom:1px solid var(--line)}
.tier li:last-child{border-bottom:0}
.tier li::before{content:"—";position:absolute;left:0;color:var(--gold)}
.tier .btn{width:100%}

/* Feature (dark) tier overrides — declared last and with raised specificity so
   they beat the generic .tier li / .tier-price .was rules above. */
.tier.tier--feature li{color:rgba(251,248,244,.97);border-bottom-color:rgba(251,248,244,.2)}
.tier.tier--feature li::before{color:var(--rose)}
.tier.tier--feature .tier-price .was{color:rgba(251,248,244,.85);opacity:1}
.tier.tier--feature .tier-hours{color:rgba(251,248,244,.88);border-bottom-color:rgba(251,248,244,.2)}
.tier.tier--feature .tier-name{color:rgba(251,248,244,.88)}
.tier.tier--feature .tier-save{color:var(--rose)}
@media (max-width:1080px){.tiers{grid-template-columns:repeat(2,1fr)}.tiers--three{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.tiers,.tiers--two,.tiers--three{grid-template-columns:1fr}}

.price-foot{margin-top:3rem;text-align:center;color:var(--muted);font-size:.9rem}

/* Service switcher tabs */
.tabs{display:flex;justify-content:center;gap:.4rem;margin-bottom:3.5rem;flex-wrap:wrap}
.tab{
  padding:.9rem 1.9rem;font-size:.68rem;letter-spacing:.22em;text-transform:uppercase;
  border:1px solid var(--line);background:transparent;transition:all .4s var(--ease);
}
.tab[aria-selected="true"]{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.tabpanel[hidden]{display:none}

/* ============================================================
   Process
   ============================================================ */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.5rem,3vw,2.5rem);counter-reset:s}
.step{position:relative;padding-top:2.6rem;border-top:1px solid var(--line)}
.step::before{
  counter-increment:s;content:"0" counter(s);
  position:absolute;top:1.4rem;left:0;
  font-family:var(--display);font-size:.95rem;color:var(--rose-deep);letter-spacing:.1em;
}
.step h3{font-size:1.35rem;margin-bottom:.7rem;font-family:var(--display)}
.step p{font-size:.92rem;color:var(--muted)}
@media (max-width:900px){.steps{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.steps{grid-template-columns:1fr}}

/* ============================================================
   FAQ
   ============================================================ */
.faq{max-width:56rem;margin-inline:auto}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;cursor:pointer;padding:1.6rem 3rem 1.6rem 0;position:relative;
  font-family:var(--display);font-size:clamp(1.15rem,1.9vw,1.5rem);line-height:1.3;
  transition:color .3s var(--ease);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{color:var(--rose-deep)}
.faq summary::after{
  content:"";position:absolute;right:.4rem;top:50%;width:13px;height:1px;background:currentColor;
  transition:transform .4s var(--ease);
}
.faq summary::before{
  content:"";position:absolute;right:.4rem;top:50%;width:13px;height:1px;background:currentColor;
  transform:rotate(90deg);transition:transform .4s var(--ease);
}
.faq details[open] summary::before{transform:rotate(0)}
.faq-body{padding:0 3rem 1.9rem 0;color:var(--muted);max-width:62ch}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band{position:relative;color:var(--cream);overflow:hidden;text-align:center}
.cta-band .bg{position:absolute;inset:0;z-index:-2}
.cta-band .bg img{width:100%;height:100%;object-fit:cover}
.cta-band::after{content:"";position:absolute;inset:0;z-index:-1;background:rgba(14,11,9,.6)}
.cta-band .inner{padding-block:clamp(6rem,13vw,11rem);position:relative;z-index:2}
.cta-band .h1{max-width:18ch;margin-inline:auto}
.cta-band p{max-width:52ch;margin-inline:auto;color:rgba(251,248,244,.86);margin-top:1.6rem}
.cta-band .btn-row{justify-content:center;margin-top:2.8rem}

/* ============================================================
   Forms
   ============================================================ */
.form-sec{background:var(--bone)}
/* Form column is given extra width so a third-party embed has room to breathe.
   Need the full width? Add class "form-grid--full" to .form-grid — the
   "What happens next" panel then sits below the form instead of beside it. */
.form-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:clamp(2.5rem,6vw,5rem);align-items:start}
.form-grid--full{grid-template-columns:1fr}
form.enquiry{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem}
.field{display:flex;flex-direction:column;gap:.55rem}
.field--full{grid-column:1/-1}
label{font-size:.63rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted)}
input,select,textarea{
  font:inherit;font-size:.98rem;padding:.95rem 1.1rem;
  background:var(--cream);border:1px solid var(--line);color:var(--ink);
  border-radius:0;transition:border-color .35s var(--ease),box-shadow .35s var(--ease);
  width:100%;
}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--rose-deep);box-shadow:0 0 0 3px rgba(184,83,109,.12)}
textarea{min-height:130px;resize:vertical}
select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%237A6E63' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1.1rem center;padding-right:2.6rem}
.form-note{font-size:.78rem;color:var(--muted);grid-column:1/-1;margin-top:-.4rem}
/* ============================================================
   Sticky mobile booking bar
   Appears once the hero is out of view. Mobile/tablet only.
   ============================================================ */
.book-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:90;
  display:none;gap:0;
  background:rgba(20,16,13,.94);
  -webkit-backdrop-filter:saturate(140%) blur(14px);
  backdrop-filter:saturate(140%) blur(14px);
  border-top:1px solid rgba(251,248,244,.14);
  transform:translateY(102%);transition:transform .55s var(--ease);
  padding-bottom:env(safe-area-inset-bottom);
}
.book-bar.up{transform:translateY(0)}
.book-bar a{
  flex:1;display:flex;align-items:center;justify-content:center;gap:.55rem;
  padding:1.15rem .5rem;
  font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--cream);
}
.book-bar a.primary{background:var(--cream);color:var(--ink)}
.book-bar a + a{border-left:1px solid rgba(251,248,244,.14)}
.book-bar a.primary + a{border-left:0}
.book-bar svg{width:14px;height:14px;flex:none}
@media (max-width:1000px){
  .book-bar{display:flex}
  /* keep the footer clear of the bar */
  .footer{padding-bottom:6rem}
}

/* ============================================================
   Full-bleed image band (breaks the column, adds drama)
   ============================================================ */
.band{position:relative;height:clamp(360px,62vh,720px);overflow:hidden}
.band img{width:100%;height:120%;object-fit:cover;object-position:center 40%;will-change:transform}
.band::after{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 50% 50%,rgba(14,11,9,.52) 0%,rgba(14,11,9,.3) 55%,rgba(14,11,9,.22) 100%);
}
.band-quote{
  position:absolute;inset:0;z-index:2;display:flex;align-items:center;justify-content:center;
  text-align:center;padding:var(--gutter);
}
.band-quote p{
  font-family:var(--display);font-style:italic;
  font-size:clamp(1.5rem,4vw,3.25rem);line-height:1.25;color:var(--cream);
  max-width:20ch;text-shadow:0 2px 30px rgba(0,0,0,.35);
}

/* ============================================================
   Image fade-in — stops photos snapping in as they decode
   ============================================================ */
.js img[loading="lazy"]{opacity:0;transition:opacity .9s var(--ease)}
.js img[loading="lazy"].loaded{opacity:1}
@media (prefers-reduced-motion: reduce){
  .js img[loading="lazy"]{opacity:1}
}

/* Hero slides are lazy too, but their opacity is driven by the slideshow.
   These must come AFTER the fade-in rules and outrank them (0,4,1 vs 0,3,1),
   otherwise every slide shows at once and the last one wins. */
.js .hero-media img[loading="lazy"]{opacity:0;transition:opacity 2s var(--ease)}
.js .hero-media img[loading="lazy"].on{opacity:1}
.js .hero-media img[loading="lazy"].loaded:not(.on){opacity:0}

/* ============================================================
   Value stack — what's included with every package
   ============================================================ */
.stack{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border:1px solid var(--line)}
.stack-item{padding:clamp(1.6rem,2.6vw,2.2rem);border-right:1px solid var(--line);border-bottom:1px solid var(--line)}
.stack-item:nth-child(3n){border-right:0}
.stack-item:nth-last-child(-n+3){border-bottom:0}
.stack-item .ic{
  display:block;font-family:var(--display);font-size:1rem;color:var(--rose-deep);
  letter-spacing:.1em;margin-bottom:1rem;
}
.stack-item h3{font-family:var(--display);font-size:1.3rem;line-height:1.2;margin-bottom:.6rem}
.stack-item p{font-size:.92rem;color:var(--muted)}
@media (max-width:900px){
  .stack{grid-template-columns:repeat(2,1fr)}
  .stack-item:nth-child(3n){border-right:1px solid var(--line)}
  .stack-item:nth-child(2n){border-right:0}
  .stack-item:nth-last-child(-n+3){border-bottom:1px solid var(--line)}
  .stack-item:nth-last-child(-n+2){border-bottom:0}
}
@media (max-width:560px){
  .stack{grid-template-columns:1fr}
  .stack-item{border-right:0!important;border-bottom:1px solid var(--line)!important}
  .stack-item:last-child{border-bottom:0!important}
}

/* Proof strip beside pricing */
.price-proof{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1rem 2.5rem;
  margin-bottom:clamp(2.5rem,5vw,3.5rem);
  padding:1.4rem 1.8rem;border:1px solid var(--line);background:var(--cream);
}
.price-proof p{
  font-family:var(--display);font-style:italic;font-size:clamp(1rem,1.5vw,1.2rem);
  color:var(--ink-soft);margin:0;
}
.price-proof cite{
  font-style:normal;font-size:.62rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted);
}

/* ============================================================
   Bundle — book more than one service
   ============================================================ */
.bundle{
  position:relative;background:var(--dark);color:var(--cream);overflow:hidden;
  padding:clamp(2.5rem,5vw,4rem);
}
.bundle-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.8rem);margin-top:2.5rem}
@media (max-width:820px){.bundle-grid{grid-template-columns:1fr}}
.bundle-card{
  border:1px solid rgba(251,248,244,.2);padding:clamp(1.4rem,2.2vw,1.9rem);
  display:flex;flex-direction:column;gap:.6rem;
}
.bundle-card .t{font-family:var(--display);font-size:1.45rem;line-height:1.15}
.bundle-card .d{font-size:.9rem;color:rgba(251,248,244,.72)}
.bundle-card .p{font-size:.66rem;letter-spacing:.22em;text-transform:uppercase;color:var(--rose);margin-top:auto;padding-top:1rem}

/* ============================================================
   Venue landing pages
   ============================================================ */
.venue-hero{
  position:relative;min-height:min(64vh,620px);display:flex;align-items:flex-end;
  overflow:hidden;color:var(--cream);
}
.venue-hero-media{position:absolute;inset:0;z-index:-2}
.venue-hero-media img{width:100%;height:100%;object-fit:cover;object-position:center 45%}
.venue-hero::after{
  content:"";position:absolute;inset:0;z-index:-1;
  background:linear-gradient(to bottom,rgba(10,8,6,.5) 0%,rgba(10,8,6,.2) 40%,rgba(10,8,6,.78) 100%);
}
.venue-hero-inner{width:100%;padding-block:clamp(6rem,12vw,8rem) clamp(2.5rem,5vw,4rem)}
.venue-hero .eyebrow::before{background:var(--rose)}

.venue-links{
  display:flex;flex-wrap:wrap;justify-content:center;gap:.8rem;margin-top:2.5rem;
}
.venue-link{
  display:inline-flex;align-items:center;gap:.7rem;
  border:1px solid var(--line);padding:.9rem 1.6rem;
  font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;
  transition:border-color .4s var(--ease),background .4s var(--ease),color .4s var(--ease);
}
.venue-link:hover{background:var(--ink);color:var(--cream);border-color:var(--ink)}
.venue-link .arr{transition:transform .4s var(--ease)}
.venue-link:hover .arr{transform:translateX(4px)}

/* Venue index block (work page) */
.venue-index{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,2vw,1.6rem)}
@media (max-width:900px){.venue-index{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.venue-index{grid-template-columns:1fr}}
.venue-card{position:relative;overflow:hidden;display:block;background:var(--sand)}
.venue-card img{width:100%;aspect-ratio:3/4;object-fit:cover;transition:transform 1.1s var(--ease)}
.venue-card:hover img{transform:scale(1.05)}
.venue-card::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(12,9,7,.78) 0%,rgba(12,9,7,.1) 55%,transparent 75%);
}
.venue-card-cap{
  position:absolute;left:0;right:0;bottom:0;z-index:2;padding:clamp(1.1rem,2vw,1.6rem);color:var(--cream);
}
.venue-card-cap .n{font-family:var(--display);font-size:clamp(1.15rem,1.7vw,1.5rem);line-height:1.15}
.venue-card-cap .r{font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:rgba(251,248,244,.8);margin-top:.45rem}

/* ============================================================
   Video embed slots (YouTube / Vimeo)
   Paste an embed inside .video-slot — it's forced to a 16:9 full-width frame.
   Empty slots show a quiet placeholder instead of looking broken.
   ============================================================ */
.video-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(1.2rem,2.6vw,2.2rem)}
@media (max-width:820px){.video-grid{grid-template-columns:1fr}}
.video-item{margin:0}
.video-item figcaption{
  margin-top:1rem;font-size:.66rem;letter-spacing:.22em;text-transform:uppercase;color:var(--muted);
}
.video-slot{position:relative;width:100%;aspect-ratio:16/9;overflow:hidden;background:var(--dark)}
.video-slot iframe,.video-slot video,.video-slot embed,.video-slot object{
  position:absolute;inset:0;width:100%;height:100%;border:0;display:block;
}
/* NOTE: can't use :empty here — the HTML comment inside each slot sits on its
   own line, and the surrounding whitespace text nodes stop :empty matching.
   main.js adds .is-empty when a slot has no element children. */
.video-slot.is-empty::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 50% 45%,rgba(232,135,159,.18),transparent 62%);
}
.video-slot.is-empty::after{
  content:"Film coming soon";
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  color:rgba(251,248,244,.5);
  font-size:.66rem;letter-spacing:.26em;text-transform:uppercase;
}

/* ============================================================
   Team grid (add photographers when headshots are ready)
   ============================================================ */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1.2rem,2.4vw,2rem)}
@media (max-width:900px){.team-grid{grid-template-columns:repeat(2,1fr)}}
.team-member{margin:0}
.team-member img{width:100%;aspect-ratio:4/5;object-fit:cover;background:var(--sand)}
.team-member .nm{font-family:var(--display);font-size:1.35rem;margin-top:1rem;line-height:1.2}
.team-member .rl{font-size:.63rem;letter-spacing:.24em;text-transform:uppercase;color:var(--muted);margin-top:.4rem}
.team-slot{
  position:relative;width:100%;aspect-ratio:4/5;background:var(--bone);
  border:1px dashed var(--line);display:flex;align-items:center;justify-content:center;
}
.team-slot::after{
  content:"Photo";
  font-size:.62rem;letter-spacing:.26em;text-transform:uppercase;color:var(--muted);opacity:.7;
}

/* ---------- Third-party form embed slot (Studio Ninja) ----------
   Paste an embed inside <div class="embed-slot">. While it's empty the slot
   collapses to nothing, so the page looks correct before the form is added.
   Reusable — drop the same div on any page where you want a form. */
.embed-slot.is-empty{display:none}
.embed-slot:empty{display:none}
.embed-slot{width:100%}
/* Studio Ninja ships a fixed-size iframe (e.g. width="600" height="650").
   We override width to fill the column. Height can't be measured across
   origins, so it's a generous fixed value — if your form is taller or shorter,
   change --sn-height here and nowhere else. */
:root{--sn-height:860px;--sn-height-mobile:1040px}
.embed-slot iframe{
  width:100%!important;max-width:none!important;
  border:0;display:block;background:transparent;color-scheme:light;
}
/* Studio Ninja's current embed (id="sn-form-...") ships iframeResizer.js, which
   sets the exact height inline. Forcing a height with !important would fight it
   and clip the form, so the fixed height only applies to embeds WITHOUT it. */
.embed-slot iframe[id^="sn-form"]{min-height:600px}
.embed-slot iframe:not([id^="sn-form"]){height:var(--sn-height)!important}
@media (max-width:600px){
  .embed-slot iframe:not([id^="sn-form"]){height:var(--sn-height-mobile)!important}
}

/* Package context banner (survives the cross-origin iframe) */
.pkg-context{
  border-left:2px solid var(--rose-deep);
  background:var(--cream);
  padding:1.1rem 1.4rem;margin-bottom:1.8rem;
}
.pkg-context p{font-size:.95rem;color:var(--ink-soft);margin:0}
.pkg-context strong{font-weight:400;color:var(--ink)}
.pkg-hint{display:block;margin-top:.35rem;font-size:.85rem;color:var(--muted)}

.form-side .h2{margin-bottom:1.4rem}
.form-side ul{list-style:none;padding:0;margin:2rem 0 0}
.form-side li{position:relative;padding:.75rem 0 .75rem 1.9rem;border-bottom:1px solid var(--line);font-size:.95rem;color:var(--ink-soft)}
.form-side li::before{content:"✓";position:absolute;left:0;color:var(--rose-deep)}
@media (max-width:900px){.form-grid{grid-template-columns:1fr}}
@media (max-width:560px){form.enquiry{grid-template-columns:1fr}}

/* ============================================================
   Footer
   ============================================================ */
.footer{background:var(--dark);color:var(--cream);padding-block:clamp(4rem,8vw,6rem) 2.5rem}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:clamp(2rem,4vw,3rem)}
.footer h2{font-size:.66rem;letter-spacing:.28em;text-transform:uppercase;color:rgba(251,248,244,.55);margin-bottom:1.5rem}
.footer ul{list-style:none;padding:0;margin:0}
.footer li{margin-bottom:.85rem}
.footer a{font-size:.93rem;color:rgba(251,248,244,.82);transition:color .35s var(--ease)}
.footer a:hover{color:var(--rose)}
.foot-brand img{width:56px;margin-bottom:1.4rem}
.foot-brand .foot-mark{
  font-family:var(--display);font-weight:300;font-size:46px;line-height:1;
  color:var(--cream);margin:0 0 1.2rem;max-width:none;
}
.foot-brand p{color:rgba(251,248,244,.62);font-size:.93rem;max-width:34ch}
.foot-bottom{
  margin-top:clamp(3rem,6vw,4.5rem);padding-top:2rem;border-top:1px solid rgba(251,248,244,.12);
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  font-size:.75rem;color:rgba(251,248,244,.5);
}
@media (max-width:900px){.foot-grid{grid-template-columns:1fr 1fr}}
@media (max-width:520px){.foot-grid{grid-template-columns:1fr}}

/* ============================================================
   Gallery (work page)
   ============================================================ */
.page-head{padding-top:clamp(9rem,16vw,13rem);padding-bottom:clamp(3rem,6vw,5rem)}
.page-head .h1{max-width:16ch}
.page-head .lede{margin-top:1.8rem}

.masonry{columns:3;column-gap:clamp(.7rem,1.6vw,1.2rem)}
.masonry figure{margin:0 0 clamp(.7rem,1.6vw,1.2rem);break-inside:avoid;overflow:hidden;cursor:zoom-in;background:var(--sand)}
.masonry img{width:100%;transition:transform 1.1s var(--ease),opacity .8s var(--ease)}
.masonry figure:hover img{transform:scale(1.04)}
@media (max-width:1000px){.masonry{columns:2}}
@media (max-width:600px){.masonry{columns:1}}

.album-section{padding-block:clamp(3rem,7vw,6rem)}
.album-head{display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;margin-bottom:2.5rem;flex-wrap:wrap}
.album-head .venue{font-size:.68rem;letter-spacing:.26em;text-transform:uppercase;color:var(--muted);margin-top:.8rem}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;z-index:200;background:rgba(12,9,7,.96);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transition:opacity .4s var(--ease),visibility .4s;
}
.lightbox.open{opacity:1;visibility:visible}
.lightbox img{max-width:92vw;max-height:88vh;object-fit:contain}
.lb-close,.lb-prev,.lb-next{
  position:absolute;color:var(--cream);width:56px;height:56px;
  display:flex;align-items:center;justify-content:center;font-size:1.6rem;
  transition:opacity .3s;opacity:.75;
}
.lb-close:hover,.lb-prev:hover,.lb-next:hover{opacity:1}
.lb-close{top:1.2rem;right:1.2rem}
.lb-prev{left:1rem;top:50%;transform:translateY(-50%)}
.lb-next{right:1rem;top:50%;transform:translateY(-50%)}
.lb-count{position:absolute;bottom:1.4rem;left:50%;transform:translateX(-50%);color:rgba(251,248,244,.6);
  font-size:.68rem;letter-spacing:.24em}

/* ============================================================
   Reveal animation
   ============================================================ */
/* Content is visible by default. Only hide it when JS is confirmed running
   (html.js is set by an inline script in <head>), so a JS failure can never
   leave sections blank. */
.reveal{opacity:1;transform:none}
.js .reveal{opacity:0;transform:translateY(26px);transition:opacity 1s var(--ease),transform 1s var(--ease)}
.js .reveal.in{opacity:1;transform:none}
.reveal-d1{transition-delay:.09s}
.reveal-d2{transition-delay:.18s}
.reveal-d3{transition-delay:.27s}

/* Skip link */
.skip{position:absolute;left:-9999px;top:0;z-index:999;background:var(--ink);color:var(--cream);padding:1rem 1.5rem}
.skip:focus{left:.5rem;top:.5rem}

/* Utilities */
.mt-0{margin-top:0}
.mb-lg{margin-bottom:clamp(2.5rem,5vw,4rem)}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:2rem;flex-wrap:wrap;margin-bottom:clamp(2.5rem,5vw,4rem)}
.sec-head .lede{margin-top:1.2rem}
.dark-sec{background:var(--dark);color:var(--cream)}
.dark-sec .eyebrow{color:rgba(251,248,244,.6)}
.dark-sec .lede{color:rgba(251,248,244,.78)}
.dark-sec .pillar{border-color:rgba(251,248,244,.16)}
.dark-sec .pillar p{color:rgba(251,248,244,.68)}
.bone-sec{background:var(--bone)}
