/* ============================================================
   SIMPLYCREATES — wedding & event content creation

   Repositioned from "luxury wedding films" to Simi's content-creation
   business: short-form vertical video, candid moments, delivered in 48
   hours. The visual language is kept from the original build (didone
   display + Cormorant body + Jost caps, drained concrete-grey palette)
   and restructured around the new six-section content.

   Real media is in (Sep 2026): hero is a crossfade of real wedding
   slides, the portfolio reels are real couple posters that open the clip
   in a video lightbox, and the couples gallery uses real B&W photos.
   Still to come from Simi: a portrait of her (About panel), the events
   portfolio, and written testimonial quotes.
   ============================================================ */

:root {
  --bone:  #FAFAF9;
  --sand:  #EFEFED;
  --stone: #D8D8D5;
  --ink:   #2A2A27;
  --muted: #7C7C77;
  --line:  rgba(42,42,39,0.13);
  --white: #FFFFFF;

  --display: "Bodoni Moda", "Bodoni 72", Didot, "Times New Roman", serif;
  --body:    "Cormorant Garamond", Garamond, Georgia, serif;
  --caps:    "Jost", "Futura", "Century Gothic", system-ui, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.075rem;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; margin: 0; line-height: 1.12; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 900px; }

.caps {
  font-family: var(--caps); font-weight: 400;
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
}
.eyebrow { font-family: var(--caps); font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.hero :focus-visible, .band-cta :focus-visible, .final :focus-visible { outline-color: var(--white); }

/* section rhythm */
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.section--tight { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto clamp(2.6rem, 5vw, 4rem); }
.section-head .eyebrow { display: block; margin-bottom: 1.3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.section-head p { color: var(--muted); margin: 1.4rem auto 0; max-width: 38rem; }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22,0.61,0.36,1); }
[data-reveal].seen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-block; padding: 1rem 2.4rem; border: 1px solid currentColor;
  font-family: var(--caps); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease; cursor: pointer; background: transparent;
}
.btn:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--light { color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--fill { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn--fill:hover { background: transparent; color: var(--ink); }

/* ---------------- nav ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.3rem var(--gutter); color: var(--white);
  transition: background 0.4s ease, color 0.4s ease, padding 0.4s ease;
}
.nav.solid { background: var(--bone); color: var(--ink); padding-block: 0.85rem; box-shadow: 0 1px 0 var(--line); }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .mark { width: 42px; height: auto; }
.mark--dark { display: none; }
.nav.solid .mark--light, .nav.open .mark--light { display: none; }
.nav.solid .mark--dark, .nav.open .mark--dark { display: block; }
.brand .wordmark { font-family: var(--caps); font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; padding-top: 3px; }
.nav-links { display: flex; gap: 1.9rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { position: relative; padding-bottom: 3px; font-family: var(--caps); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.32s ease; }
.nav-links a:hover::after, .nav-links a[aria-current]::after { transform: scaleX(1); }
.nav-toggle { display: none; background: none; border: 0; color: inherit; padding: 0.4rem; cursor: pointer; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45)); }
.nav-toggle svg { width: 26px; }
@media (max-width: 1000px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open { background: var(--bone); color: var(--ink); }
  .nav.open .nav-links { display: flex; flex-direction: column; gap: 1.3rem; align-items: flex-start; position: absolute; top: 100%; left: 0; right: 0; background: var(--bone); padding: 1.8rem var(--gutter) 2.4rem; box-shadow: 0 20px 40px -30px rgba(0,0,0,0.5); }
  .nav.open .nav-links a { font-size: 0.8rem; }
}

/* ---------------- video placeholders ---------------- */
/* ⚠️ Stand-in for real footage. .reel = vertical 9:16 (portfolio, social
   clips); .filmstrip = landscape 16:9 (hero). Swap the inner .ph for a
   <video muted loop playsinline poster="..."> and nothing else changes. */
.ph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(160deg, #34342f 0%, #22221f 55%, #191916 100%);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("assets/logo-mark-white.png");
  background-repeat: no-repeat; background-position: center; background-size: 34%;
  opacity: 0.14;
}
.ph .ph-tag { position: relative; z-index: 2; font-family: var(--caps); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.5); align-self: end; margin-bottom: 1.1rem; }

/* ---------------- hero ---------------- */
.hero { position: relative; height: 100svh; min-height: 640px; overflow: hidden; color: var(--white); }
.filmstrip { position: absolute; inset: 0; }
.filmstrip video, .filmstrip .ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(0deg, rgba(22,22,20,0.44), rgba(22,22,20,0.44)),
    linear-gradient(180deg, rgba(22,22,20,0.46) 0%, rgba(22,22,20,0.12) 26%, rgba(22,22,20,0.12) 66%, rgba(22,22,20,0.56) 100%),
    radial-gradient(62% 52% at 50% 46%, rgba(22,22,20,0.36) 0%, transparent 100%);
}
.hero-inner { position: relative; z-index: 4; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 6rem var(--gutter) 5rem; }
.hero .eyebrow { color: rgba(255,255,255,0.82); letter-spacing: 0.42em; margin-bottom: 1.7rem; }
.hero h1 { font-size: clamp(2.5rem, 6.6vw, 5rem); line-height: 1.14; letter-spacing: 0.01em; margin-bottom: 1.6rem; max-width: 16ch; text-wrap: balance; }
.hero p.sub { max-width: min(38rem, 100%); margin: 0 auto 1.4rem; font-size: clamp(1.02rem, 1.6vw, 1.2rem); line-height: 1.85; color: rgba(255,255,255,0.9); }
.hero .delivered { font-family: var(--caps); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: 2.4rem; }
.hero .delivered::before { content: "— "; }
.hero .delivered::after { content: " —"; }

/* ---------------- more than content ---------------- */
.moments { background: var(--bone); }
.moments-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.moments h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 1.6rem; }
.moments p { color: var(--muted); max-width: 34rem; }
.moments-list { list-style: none; margin: 0; padding: 0; column-count: 2; column-gap: 2rem; }
.moments-list li { font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.5rem); padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.moments-list li:last-child { border-bottom: 0; }
@media (max-width: 820px) { .moments-grid { grid-template-columns: 1fr; } }
.moments-photo { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; }
.moments-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
@media (max-width: 820px) { .moments-photo { max-width: 420px; margin-inline: auto; } }

/* ---------------- two paths (weddings / events) ---------------- */
.paths { background: var(--sand); }
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); }
@media (max-width: 780px) { .path-grid { grid-template-columns: 1fr; } }
.path { position: relative; overflow: hidden; min-height: clamp(340px, 46vw, 480px); display: flex; align-items: flex-end; color: var(--white); }
.path .ph { position: absolute; }
.path::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,18,0.15) 0%, rgba(20,20,18,0.62) 100%); z-index: 2; }
.path-body { position: relative; z-index: 3; padding: clamp(1.8rem, 4vw, 2.8rem); }
.path-body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.9rem; }
.path-body p { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 30rem; margin: 0 0 1.5rem; }

/* ---------------- centred statement band ---------------- */
.statement { background: var(--stone); text-align: center; }
.statement p.lead { font-family: var(--display); font-style: italic; font-size: clamp(1.3rem, 3vw, 2rem); max-width: 30rem; margin: 0 auto 1.6rem; line-height: 1.35; }
.statement .pair { font-family: var(--display); font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.2; }

/* ---------------- portfolio / featured ---------------- */
.reel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 2vw, 1.6rem); }
@media (max-width: 900px) { .reel-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reel-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }
.reel { display: block; }
.reel-frame { display: block; position: relative; aspect-ratio: 9 / 16; overflow: hidden; background: var(--ink); }
.reel-frame .ph, .reel-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-frame::after { content: ""; position: absolute; inset: 0; background: rgba(25,25,22,0.12); transition: background 0.4s ease; z-index: 2; }
.reel:hover .reel-frame::after { background: rgba(25,25,22,0); }
.play { position: absolute; inset: 0; margin: auto; z-index: 3; width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.85); display: grid; place-items: center; background: rgba(255,255,255,0.12); backdrop-filter: blur(2px); transition: transform 0.35s ease, background 0.35s ease; }
.reel:hover .play { transform: scale(1.08); background: rgba(255,255,255,0.26); }
.play svg { width: 13px; margin-left: 3px; fill: var(--white); }
.reel-cap { padding: 1rem 0 0; }
.reel-cap h3 { font-size: 1.15rem; letter-spacing: 0.01em; }
.reel-cap .date { display: block; font-family: var(--caps); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }
.center-cta { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.6rem); }

/* ---------------- portfolio redesign — reel wall ---------------- */
.folio-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; margin-bottom: clamp(2.6rem, 5vw, 4.2rem); }
.folio-head .eyebrow { display: block; margin-bottom: 1rem; }
.folio-head h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.08; }
.folio-head p { color: var(--muted); max-width: 32rem; margin: 0; }
@media (max-width: 760px) { .folio-head { grid-template-columns: 1fr; align-items: start; } }

.folio { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.2vw, 1.8rem); }
.folio-item:nth-child(3n+2) { margin-top: clamp(2rem, 6vw, 4.5rem); }
@media (max-width: 900px) { .folio { grid-template-columns: 1fr 1fr; } .folio-item:nth-child(3n+2) { margin-top: 0; } .folio-item:nth-child(2n) { margin-top: clamp(1.6rem, 5vw, 3rem); } }
@media (max-width: 560px) { .folio { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } .folio-item { margin-top: 0 !important; } }

.folio-item { display: block; }
.folio-frame { position: relative; display: block; aspect-ratio: 9 / 16; overflow: hidden; background: var(--ink); }
.folio-frame img, .folio-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.folio-vid { opacity: 0; transition: opacity 0.55s ease; z-index: 1; }
.folio-item:hover .folio-vid { opacity: 1; }
.folio-frame::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(20,20,18,0.28) 0%, rgba(20,20,18,0) 32%, rgba(20,20,18,0) 62%, rgba(20,20,18,0.42) 100%); }
.folio-num { position: absolute; top: 0.9rem; left: 1rem; z-index: 3; font-family: var(--caps); font-size: 0.6rem; letter-spacing: 0.24em; color: rgba(255,255,255,0.94); text-shadow: 0 1px 6px rgba(0,0,0,0.4); }
.folio-play { position: absolute; inset: 0; margin: auto; z-index: 3; width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.85); display: grid; place-items: center; background: rgba(255,255,255,0.12); backdrop-filter: blur(2px); transition: transform 0.4s ease, opacity 0.4s ease; }
.folio-play svg { width: 13px; margin-left: 3px; fill: var(--white); }
.folio-item:hover .folio-play { opacity: 0; transform: scale(1.12); }
.folio-cap { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-top: 0.95rem; margin-top: 0.95rem; border-top: 1px solid var(--line); }
.folio-cap h3 { font-size: 1.12rem; letter-spacing: 0.01em; }
.folio-cap .hint { font-family: var(--caps); font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); opacity: 0; transition: opacity 0.3s ease; white-space: nowrap; }
.folio-item:hover .folio-cap .hint { opacity: 1; }

.folio-events { text-align: center; margin-top: clamp(3.6rem, 7vw, 5.5rem); }
.folio-events .eyebrow { display: block; margin-bottom: 0.8rem; }
.folio-events p { color: var(--muted); margin: 0; }

/* ---------------- how it works ---------------- */
.steps { background: var(--sand); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.6rem, 4vw, 3rem); }
@media (max-width: 880px) { .step-grid { grid-template-columns: 1fr 1fr; row-gap: 2.8rem; } }
@media (max-width: 480px) { .step-grid { grid-template-columns: 1fr; } }
.step .num { font-family: var(--display); font-size: 2.4rem; color: var(--stone); line-height: 1; margin-bottom: 1rem; }
.step h3 { font-family: var(--caps); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 400; margin-bottom: 0.8rem; }
.step p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---------------- packages ---------------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); align-items: stretch; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.pkg { border: 1px solid var(--line); padding: clamp(1.8rem, 3.4vw, 2.6rem); display: flex; flex-direction: column; background: var(--white); }
.pkg--feature { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.pkg--feature .pkg-hours, .pkg--feature li { color: rgba(250,250,249,0.82); }
.pkg--feature li::before { border-color: rgba(250,250,249,0.6); }
.pkg-name { font-family: var(--caps); font-size: 0.74rem; letter-spacing: 0.28em; text-transform: uppercase; }
.pkg-hours { font-family: var(--display); font-size: 1.35rem; margin: 0.9rem 0 1.5rem; color: var(--muted); }
.pkg--feature .pkg-hours { color: rgba(250,250,249,0.9); }
.pkg .incl { font-family: var(--caps); font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.pkg ul { list-style: none; margin: 0 0 2rem; padding: 0; flex: 1; }
.pkg li { position: relative; padding-left: 1.4rem; padding-block: 0.5rem; border-top: 1px solid var(--line); font-size: 1rem; }
.pkg--feature li { border-color: rgba(250,250,249,0.16); }
.pkg li:first-child { border-top: 0; }
.pkg li::before { content: ""; position: absolute; left: 0; top: 1.15rem; width: 8px; height: 8px; border-left: 1px solid var(--ink); border-bottom: 1px solid var(--ink); transform: rotate(-45deg); }
.pkg--feature li::before { border-color: var(--bone); }
.pkg .btn { align-self: flex-start; }
.pkg--feature .btn { color: var(--bone); }
.pkg--feature .btn:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* add-ons + travel */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); margin-top: clamp(2.6rem, 5vw, 4rem); }
@media (max-width: 820px) { .addons { grid-template-columns: 1fr; } }
.addon h4 { font-family: var(--caps); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400; margin-bottom: 0.7rem; }
.addon p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ---------------- events we cover ---------------- */
.cover-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (max-width: 700px) { .cover-grid { grid-template-columns: 1fr; } }
.cover { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.cover h3 { font-family: var(--caps); font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 400; margin-bottom: 0.7rem; }
.cover p { color: var(--muted); margin: 0; font-size: 0.99rem; }

/* ---------------- about ---------------- */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-portrait { max-width: 360px; } }
.about-portrait { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.about-portrait .ph { position: absolute; }
.about h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1.6rem; }
.about p { color: var(--muted); max-width: 34rem; margin: 0 0 1.3rem; }
.about .plain { color: var(--ink); }

/* work-style band */
.workstyle { text-align: center; }
.workstyle h3 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 1.4rem; }
.workstyle p { color: var(--muted); max-width: 40rem; margin: 0 auto 1.2rem; }

/* testimonials */
.quotes { background: var(--stone); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
@media (max-width: 820px) { .quote-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.quote { text-align: center; }
.quote .mono { width: 34px; margin: 0 auto 1.2rem; opacity: 0.5; }
.quote blockquote { font-family: var(--display); font-style: italic; font-size: 1.2rem; line-height: 1.5; margin: 0 0 1.1rem; }
.quote cite { font-family: var(--caps); font-style: normal; font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.quote--placeholder blockquote { color: var(--muted); }

/* ---------------- faq ---------------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { position: relative; flex: 0 0 auto; width: 16px; height: 16px; }
.faq-item .plus::before, .faq-item .plus::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-item .plus::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.faq-item .plus::after { top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); }
.faq-item[open] .plus::after { opacity: 0; }
.faq-item .answer { padding: 0 0 1.6rem; color: var(--muted); max-width: 44rem; }
.faq-item .answer p { margin: 0 0 0.7rem; }
.faq-item .answer p:last-child { margin: 0; }

/* ---------------- enquire ---------------- */
.enquire { background: var(--sand); }
.form { max-width: 720px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--caps); font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.55rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--white); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--body); font-size: 1.05rem; padding: 0.85rem 0.95rem; border-radius: 0;
  transition: border-color 0.3s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.form .form-cta { text-align: center; margin-top: 2rem; }
.form-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 1.2rem; }

/* ---------------- final cta ---------------- */
.final { position: relative; overflow: hidden; color: var(--white); text-align: center; }
.final .ph { position: absolute; }
.final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,18,0.5), rgba(20,20,18,0.62)); z-index: 2; }
.final-inner { position: relative; z-index: 3; padding: clamp(5rem, 12vw, 9rem) var(--gutter); }
.final h2 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.16; margin-bottom: 2rem; }

/* ---------------- footer ---------------- */
footer.site { padding: clamp(3.4rem, 7vw, 5rem) 0 2.6rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.6rem; }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot-brand .mark { width: 46px; margin-bottom: 1rem; }
.foot-brand p { color: var(--muted); max-width: 22rem; margin: 0; }
.foot-col h4 { font-family: var(--caps); font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; font-weight: 400; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin-bottom: 0.6rem; }
.foot-col a { font-family: var(--caps); font-size: 0.72rem; letter-spacing: 0.14em; }
.foot-col a:hover { color: var(--muted); }
.foot-base { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.4rem, 5vw, 3.4rem); padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--muted); }
.foot-base p { margin: 0; font-family: var(--caps); font-size: 0.6rem; letter-spacing: 0.16em; }

/* ---------------- real media (added when assets came in) ---------------- */
/* hero slideshow */
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.is-active { opacity: 1; }

/* poster / background images in reels, paths, about, final */
.reel-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.path img.path-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: 1; }
.about-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-brand { display: grid; place-items: center; background: var(--stone); }
.about-brand img { position: static; inset: auto; width: 40%; max-width: 150px; height: auto; opacity: 0.5; }
.about-brand-note { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; font-family: var(--caps); font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.final img.bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 34%; z-index: 1; }

/* couples gallery (real photos in place of placeholder testimonials) */
.couples-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.8rem, 2vw, 1.5rem); }
@media (max-width: 900px) { .couples-grid { grid-template-columns: 1fr 1fr; } }
.couple-frame { display: block; position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--ink); }
.couple-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.couple:hover .couple-frame img { transform: scale(1.045); }
.couple-cap { padding: 0.9rem 0 0; text-align: center; }
.couple-cap h3 { font-size: 1.08rem; }
.couple-cap .date { display: block; font-family: var(--caps); font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 0.35rem; }

/* featured testimonial */
.testimonial-feature { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; max-width: 980px; margin: 0 auto; }
@media (max-width: 720px) { .testimonial-feature { grid-template-columns: 1fr; max-width: 440px; text-align: center; } }
.tf-photo { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; }
@media (max-width: 720px) { .tf-photo { max-width: 300px; margin-inline: auto; } }
.tf-mark { width: 32px; opacity: 0.5; margin-bottom: 1.2rem; }
@media (max-width: 720px) { .tf-mark { margin-inline: auto; } }
.tf-body blockquote { font-family: var(--display); font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.65rem); line-height: 1.5; margin: 0 0 1.3rem; }
.tf-body blockquote p { margin: 0 0 1rem; }
.tf-body blockquote p:last-child { margin: 0; }
.tf-body cite { font-family: var(--caps); font-style: normal; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* testimonials page — alternating rows */
.tpage { padding-top: 70px; } /* clears the fixed solid nav (no hero on this page) */
.tpage-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.tpage-head .eyebrow { display: block; margin-bottom: 1.3rem; }
.tpage-head h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
.tpage-head p { color: var(--muted); margin: 1.4rem auto 0; max-width: 38rem; }
.tstack { display: flex; flex-direction: column; gap: clamp(3.4rem, 8vw, 6.5rem); }
.testimonial-feature.reverse { grid-template-columns: 1.28fr 0.72fr; }
.testimonial-feature.reverse .tf-photo { order: 2; }
.testimonial-feature.reverse .tf-body { order: 1; }
@media (max-width: 720px) { .testimonial-feature.reverse { grid-template-columns: 1fr; } .testimonial-feature.reverse .tf-photo, .testimonial-feature.reverse .tf-body { order: 0; } }
.tquote-cta { text-align: center; margin-top: clamp(4rem, 9vw, 7rem); }

/* video lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(16,16,14,0.93); padding: clamp(1rem, 4vw, 3rem); }
.lightbox.open { display: flex; }
.lb-video { max-height: 90vh; max-width: min(440px, 92vw); aspect-ratio: 9 / 16; width: auto; background: #000; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8); }
.lb-close { position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.5); background: transparent; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; border-radius: 50%; display: grid; place-items: center; }
.lb-close:hover { background: rgba(255,255,255,0.16); }
