/* ===========================================================
   Stay Married — scoped layer on the shared Stay Seen system.
   Inherits tokens + .eyebrow / .btn / .section from styles.css.
   Re-tints the palette to a warm, romantic wedding identity.
   =========================================================== */

body.sm {
  /* warm wedding re-tint of the shared tokens */
  --taupe: #9b7b5f;
  --taupe-deep: #7c6048;
  --body: #6c6157;
  --ink: #20191320;            /* (kept dark below) */
  --ink: #211b15;
  --hairline: #e7ddce;
  --hairline-strong: #d9c9b2;
  --canvas: #fffaf2;
  --primary: #211b15;
  --warm-black: #1a1611;

  --sm-cream: #f4efe7;
  --sm-paper: #fbf7f0;
  --sm-serif: var(--serif);

  background: var(--sm-cream);
  color: var(--ink);
  font-family: var(--sans);
}

body.sm ::selection { background: var(--taupe); color: #fff; }

.sm img, .sm video { display: block; max-width: 100%; }

/* page-load veil */
body.sm::before {
  content: "";
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background: var(--warm-black);
  animation: smReveal 1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
@keyframes smReveal { to { transform: translateY(-100%); } }

.skip-link {
  position: fixed; top: 14px; left: 14px; z-index: 80;
  transform: translateY(-160%);
  padding: 10px 16px; background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: var(--r-pill); font-family: var(--mono); font-size: 12px;
}
.skip-link:focus { transform: none; }

/* ---------- Header ---------- */
.sm-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: var(--s-lg);
  padding: 18px clamp(18px, 4vw, 40px);
  color: #fff;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.sm-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 247, 240, 0.86);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom-color: var(--hairline);
  padding-top: 12px; padding-bottom: 12px;
}
.sm-brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; }
.sm-brand-symbol {
  width: 26px; height: 21px; background: currentColor;
  -webkit-mask: url("/assets/symbol-ink.svg") center / contain no-repeat;
  mask: url("/assets/symbol-ink.svg") center / contain no-repeat;
}
.sm-brand-word { font-family: var(--serif); font-size: 1.34rem; font-weight: 600; line-height: 1; }

.sm-nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 28px); }
.sm-nav a {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: inherit; opacity: 0.85; transition: opacity .2s ease;
}
.sm-nav a:hover { opacity: 1; }

.sm-header-actions { display: inline-flex; align-items: center; gap: var(--s-md); }
.sm-lang { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12px; color: inherit; }
.sm-lang span { opacity: 0.4; }
.sm-lang-btn { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; opacity: 0.55; letter-spacing: 0.06em; transition: opacity .2s ease; }
.sm-lang-btn.is-active { opacity: 1; }
.sm-header-cta { height: 40px; padding: 0 18px; font-size: 12px; }

.sm-burger { display: none; width: 40px; height: 34px; border: 1px solid currentColor; border-radius: var(--r-pill); background: none; color: inherit; cursor: pointer; position: relative; }
.sm-burger span, .sm-burger span::before, .sm-burger span::after {
  content: ""; position: absolute; left: 50%; width: 16px; height: 1.5px; margin-left: -8px; background: currentColor;
  transition: transform .28s cubic-bezier(0.16,1,0.3,1), opacity .2s ease;
}
.sm-burger span { top: 50%; } .sm-burger span::before { top: -5px; } .sm-burger span::after { top: 5px; }
.sm-header.nav-open .sm-burger span { background: transparent; }
.sm-header.nav-open .sm-burger span::before { transform: translateY(5px) rotate(45deg); }
.sm-header.nav-open .sm-burger span::after { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Buttons (page additions) ---------- */
.sm .btn.ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.sm .btn.ghost-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

/* ---------- Hero ---------- */
.sm-hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 132px var(--s-lg) var(--s-4xl); color: #fff; background: var(--warm-black);
}
.sm-hero-bg { position: absolute; inset: 0; z-index: 0; }
.sm-hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center 42%;
  opacity: 0; transform: scale(1.06); transition: opacity 1.6s ease;
}
.sm-hero-slide.is-active { opacity: 1; transform: scale(1.14); transition: opacity 1.6s ease, transform 9s ease; }
.sm-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,16,11,0.46) 0%, rgba(20,16,11,0.28) 42%, rgba(20,16,11,0.82) 100%),
    radial-gradient(78% 72% at 50% 44%, rgba(20,16,11,0.06) 0%, rgba(20,16,11,0.5) 100%);
}
.sm-hero-inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.sm-hero .eyebrow { color: rgba(255,255,255,0.82); margin-bottom: var(--s-md); }
.sm-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 6.4vw, 82px); line-height: 1.04; letter-spacing: -0.015em;
  margin: 0 auto var(--s-lg); max-width: 17ch; color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.34);
}
.sm-hero-lead { max-width: 56ch; margin: 0 auto var(--s-xl); color: rgba(255,255,255,0.9); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.6; }
.sm-hero-actions { display: flex; gap: var(--s-sm); justify-content: center; flex-wrap: wrap; }
.sm-hero-scroll { position: absolute; left: 50%; bottom: 26px; z-index: 2; width: 24px; height: 38px; margin-left: -12px; border: 1px solid rgba(255,255,255,0.5); border-radius: 13px; }
.sm-hero-scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: rgba(255,255,255,0.85); animation: smScroll 1.8s ease-in-out infinite; }
@keyframes smScroll { 0% { opacity: 0; transform: translateY(-3px);} 40%{opacity:1;} 100%{ opacity:0; transform: translateY(12px);} }
@media (prefers-reduced-motion: reduce) { .sm-hero-slide, .sm-hero-slide.is-active { transform: none; transition: opacity .5s ease; } .sm-hero-scroll { display: none; } }

/* ---------- Soft panels + section heads ---------- */
.sm-soft { background: var(--sm-paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.sm-head { max-width: var(--page); margin: 0 auto; padding: 0 var(--s-lg); }
.sm-head.center { text-align: center; }
.sm-h2 {
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(30px, 4.4vw, 50px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 0 var(--s-md);
}
.sm-head.center .sm-h2 { margin-left: auto; margin-right: auto; max-width: 18ch; }
.sm-sub { max-width: 60ch; margin: 0; color: var(--body); font-size: 17px; line-height: 1.6; }
.sm-head.center .sm-sub { margin-left: auto; margin-right: auto; }

/* ---------- About (personal split) ---------- */
.sm-about { max-width: var(--page); margin: 0 auto; padding: 0 var(--s-lg); display: grid; grid-template-columns: 1.18fr 0.82fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.sm-about-media { margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 34px 80px -46px rgba(70,52,32,0.55); }
.sm-about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.sm-about-media:hover img { transform: scale(1.04); }
.sm-about-copy .sm-h2 { max-width: 18ch; margin-bottom: var(--s-sm); font-size: clamp(23px, 2.7vw, 34px); }
.sm-about-copy .sm-sub { margin-bottom: var(--s-md); font-size: 15px; line-height: 1.6; }
.sm-about-exp { color: var(--ink); font-size: 14.5px; line-height: 1.62; margin: 0 0 var(--s-md); }
.sm-about-sign { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe); margin: 0; }
@media (max-width: 820px) { .sm-about { grid-template-columns: 1fr; } .sm-about-media { order: -1; } }

/* ---------- Moments carousel ---------- */
.sm-carousel { --per: 3; --gap: 22px; position: relative; max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); }
.sm-carousel-vp { overflow: hidden; }
.sm-carousel-track { display: flex; gap: var(--gap); transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.sm-ccard {
  position: relative; flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
  aspect-ratio: 3 / 4; border-radius: var(--r-xl); overflow: hidden; background: #16110c;
  box-shadow: 0 24px 60px -38px rgba(40,28,16,0.6);
}
.sm-ccard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.sm-ccard:hover img { transform: scale(1.05); }
.sm-ccard-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,12,9,0) 40%, rgba(16,12,9,0.72) 100%); }
.sm-ccard-text { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(18px,2vw,28px); }
.sm-ccard-text h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px,1.7vw,27px); line-height: 1.1; color: #fff; margin: 0; }
.sm-arrow { position: absolute; top: calc(50% - var(--s-md)); transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--hairline); background: rgba(255,253,247,0.94); color: var(--ink); font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px -14px rgba(40,28,16,0.5); transition: background .2s ease, border-color .2s ease, opacity .2s ease; }
.sm-arrow:hover { background: #fff; border-color: var(--taupe); }
.sm-arrow[disabled] { opacity: 0; pointer-events: none; }
.sm-arrow.prev { left: calc(var(--s-lg) - 24px); }
.sm-arrow.next { right: calc(var(--s-lg) - 24px); }
.sm-dots { display: flex; gap: 9px; justify-content: center; margin-top: var(--s-lg); }
.sm-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--hairline-strong); cursor: pointer; transition: width .25s ease, background .25s ease, border-radius .25s ease; }
.sm-dots button.is-active { width: 26px; border-radius: 5px; background: var(--ink); }
@media (max-width: 980px) { .sm-carousel { --per: 2; } }
@media (max-width: 620px) { .sm-carousel { --per: 1.15; } .sm-arrow { display: none; } }

/* ---------- Value row ---------- */
.sm-values { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline-strong); }
.sm-value { padding: var(--s-xl) var(--s-md) 0; border-right: 1px solid var(--hairline); }
.sm-value:last-child { border-right: 0; padding-right: 0; }
.sm-value-no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--taupe); }
.sm-value h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; letter-spacing: -0.2px; margin: 12px 0 8px; color: var(--ink); }
.sm-value p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }
@media (max-width: 860px) { .sm-values { grid-template-columns: 1fr 1fr; } .sm-value { border-right: 0; border-bottom: 1px solid var(--hairline); padding: var(--s-lg) 0; } }
@media (max-width: 520px) { .sm-values { grid-template-columns: 1fr; } }

/* ---------- Portfolio bento ---------- */
.sm-bento { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-md); }
.sm-bento-item { position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden; background: #16110c; box-shadow: 0 26px 60px -44px rgba(40,28,16,0.6); cursor: zoom-in; }
.sm-bento-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.sm-bento-item:hover img { transform: scale(1.04); }
.sm-bento-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(16,12,9,0.5) 100%); pointer-events: none; }
.sm-bento-item.wide { grid-column: span 3; aspect-ratio: 3 / 2; }
.sm-bento-item.med { grid-column: span 2; aspect-ratio: 3 / 2; }
.sm-bento-item figcaption { position: absolute; left: 14px; bottom: 13px; z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(16,12,9,0.5); -webkit-backdrop-filter: blur(5px); backdrop-filter: blur(5px); padding: 5px 11px; border-radius: var(--r-full); }
@media (max-width: 760px) { .sm-bento { grid-template-columns: repeat(2, 1fr); } .sm-bento-item.wide, .sm-bento-item.med { grid-column: span 1; } }

/* ---------- Split showcase ---------- */
.sm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.sm-split figure { position: relative; margin: 0; min-height: clamp(440px, 78vh, 820px); overflow: hidden; background: #16110c; }
.sm-split img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.sm-split figure:hover img { transform: scale(1.05); }
.sm-split figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,12,9,0.18) 0%, rgba(16,12,9,0) 30%, rgba(16,12,9,0) 58%, rgba(16,12,9,0.72) 100%); pointer-events: none; }
.sm-split-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(24px,3vw,52px); color: #fff; }
.sm-split-cap .e { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.84); margin-bottom: 9px; }
.sm-split-cap .k { font-family: var(--serif); font-weight: 500; font-size: clamp(24px,2.8vw,42px); line-height: 1.06; color: #fff; max-width: 18ch; display: block; }
@media (max-width: 640px) { .sm-split { grid-template-columns: 1fr; } .sm-split figure { min-height: 68vh; } }

/* ---------- Films — full-bleed cinematic chapters ---------- */
.sm-filmstrip { padding: var(--s-5xl) 0; }
.sm-filmstrip-head { max-width: var(--page); margin: 0 auto var(--s-2xl); padding: 0 var(--s-lg); }
.sm-filmstrip-head.center { text-align: center; }
.sm-filmstrip-title { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 4vw, 48px); line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); margin: var(--s-sm) auto 0; max-width: 22ch; }
.sm-filmstrip-stage { position: relative; margin: 0; width: 100%; overflow: hidden; background: #0e0b08; line-height: 0; }
.sm-filmstrip-video { display: block; width: 100%; height: clamp(440px, 86vh, 940px); object-fit: cover; background: #0e0b08; transform: scale(1.37); transform-origin: center; }
.sm-filmstrip-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(16,12,9,0) 46%, rgba(16,12,9,0.16) 70%, rgba(16,12,9,0.62) 100%); }
.sm-filmstrip-cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: clamp(24px, 3.4vw, 54px); color: #fff; line-height: normal; }
.sm-filmstrip-cap .e { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.84); margin-bottom: 9px; }
.sm-filmstrip-cap .k { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.6vw, 40px); line-height: 1.06; color: #fff; max-width: 22ch; display: block; }
.sm-filmstrip-watch {
  position: absolute; right: clamp(20px, 3vw, 48px); bottom: clamp(24px, 3.4vw, 54px); z-index: 3;
  display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 20px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.55); background: rgba(20,16,11,0.34); color: #fff;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sm-filmstrip-watch:hover { background: rgba(20,16,11,0.54); border-color: #fff; transform: translateY(-1px); }
.sm-fw-icon { width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 10px; border-color: transparent transparent transparent #fff; }
@media (max-width: 600px) {
  .sm-filmstrip-cap { padding: 20px; }
  .sm-filmstrip-watch { right: 16px; bottom: 16px; height: 42px; padding: 0 15px; }
}

/* full-film modal (watch with sound) */
.sm-film-modal { position: fixed; inset: 0; z-index: 130; display: grid; place-items: center; padding: clamp(16px, 4vw, 56px); background: rgba(10,8,6,0.95); opacity: 0; transition: opacity .3s ease; }
.sm-film-modal:not([hidden]) { opacity: 1; }
.sm-film-modal[hidden] { display: none; }
.sm-film-modal-stage { width: min(100%, 1200px); }
.sm-film-modal-stage video { width: 100%; max-height: 86vh; display: block; border-radius: var(--r-lg); background: #000; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.sm-film-modal-x { position: absolute; top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.26); background: rgba(255,255,255,0.08); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.sm-film-modal-x:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }

/* wedding vlog modal (YouTube embed) */
.sm-vlog-modal { position: fixed; inset: 0; z-index: 135; display: grid; place-items: center; padding: clamp(16px, 4vw, 56px); background: rgba(10,8,6,0.95); opacity: 0; transition: opacity .3s ease; }
.sm-vlog-modal:not([hidden]) { opacity: 1; }
.sm-vlog-modal[hidden] { display: none; }
.sm-vlog-frame { position: relative; width: min(100%, 1100px); aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; background: #000; box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.sm-vlog-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sm-vlog-modal-x { position: absolute; top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.26); background: rgba(255,255,255,0.08); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.sm-vlog-modal-x:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }

/* ---------- Photography grid (flush, editorial) ---------- */
.sm-masonry { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); }
.sm-masonry figure { margin: 0; aspect-ratio: 1 / 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 16px 34px -24px rgba(40,28,16,0.55); cursor: zoom-in; }
.sm-masonry img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.sm-masonry figure:hover img { transform: scale(1.04); }
@media (max-width: 760px) { .sm-masonry { grid-template-columns: repeat(2, 1fr); gap: var(--s-sm); } }

/* ---------- Process ---------- */
.sm-process { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-lg); }
.sm-step { border-top: 1px solid var(--hairline-strong); padding-top: var(--s-md); }
.sm-step-no { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; color: var(--taupe); }
.sm-step h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; margin: 10px 0 8px; color: var(--ink); }
.sm-step p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }
@media (max-width: 900px) { .sm-process { grid-template-columns: 1fr 1fr; gap: var(--s-md); } }
@media (max-width: 520px) { .sm-process { grid-template-columns: 1fr; } }

/* ---------- Editorial band ---------- */
.sm-band { position: relative; max-width: var(--page); margin: 0 auto; border-radius: var(--r-xl); overflow: hidden; min-height: clamp(360px, 52vw, 540px); display: flex; align-items: flex-end; }
.sm-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sm-band-scrim { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(16,12,9,0.78) 0%, rgba(16,12,9,0.4) 46%, rgba(16,12,9,0.06) 78%); }
.sm-band-text { position: relative; z-index: 2; padding: clamp(26px,4vw,56px); color: #fff; max-width: 620px; }
.sm-band-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.84); }
.sm-band h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(26px,3.4vw,42px); line-height: 1.08; margin: 10px 0 12px; color: #fff; }
.sm-band-text p { font-size: 15.5px; line-height: 1.55; color: rgba(255,255,255,0.9); max-width: 48ch; margin: 0 0 var(--s-lg); }
.sm-band-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sm-band-tags span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.34); border-radius: var(--r-full); padding: 6px 12px; }

/* ---------- Packages cards ---------- */
.sm-cards { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); align-items: stretch; }
.sm-card { position: relative; display: flex; flex-direction: column; border-radius: var(--r-xl); padding: var(--s-xl); border: 1px solid rgba(120,95,62,0.12); box-shadow: 0 26px 60px -44px rgba(70,52,32,0.55); }
.sm-card-1 { background: #F8F3EB; }
.sm-card-2 { background: #211b15; color: #fff; }
.sm-card-3 { background: #E7DAC6; }
.sm-card-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.sm-card-2 .sm-card-label { color: #d8c2a4; }
.sm-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: -0.2px; line-height: 1.12; margin: 10px 0 9px; }
.sm-card-2 h3 { color: #fff; }
.sm-card-desc { font-size: 14px; line-height: 1.5; margin: 0 0 var(--s-md); color: var(--body); }
.sm-card-2 .sm-card-desc { color: rgba(255,255,255,0.74); }
.sm-card-list { list-style: none; margin: 0 0 var(--s-lg); padding: 0; display: grid; gap: 9px; }
.sm-card-list li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.4; color: var(--ink); }
.sm-card-2 .sm-card-list li { color: rgba(255,255,255,0.86); }
.sm-card-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--taupe); }
.sm-card-2 .sm-card-list li::before { background: #c7ad84; }
.sm-card-cta { margin-top: auto; align-self: flex-start; }
.sm .sm-card-2 .btn.solid { background: #fff; color: var(--ink); }
.sm .sm-card-2 .btn.solid:hover { background: #f1e9da; }
.sm-card-badge { position: absolute; top: 15px; right: 15px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: #d8c2a4; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.24); padding: 4px 9px; border-radius: var(--r-full); }
@media (max-width: 860px) { .sm-cards { grid-template-columns: 1fr; max-width: 520px; } }

/* pricing */
.sm-price { display: flex; align-items: baseline; gap: 7px; margin: 4px 0 3px; }
.sm-price-num { font-family: var(--serif); font-size: 34px; font-weight: 600; letter-spacing: -0.5px; color: var(--ink); line-height: 1; }
.sm-price-cur { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--taupe); }
.sm-card-2 .sm-price-num { color: #fff; }
.sm-card-2 .sm-price-cur { color: #c7ad84; }
.sm-card-cover { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--taupe); margin: 0 0 var(--s-lg); }
.sm-card-2 .sm-card-cover { color: #c7ad84; }
.sm-card-list.sm-check li { padding-left: 24px; }
.sm-card-list.sm-check li::before { content: ""; left: 0; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: rgba(155,123,95,0.16); }
.sm-card-list.sm-check li::after { content: ""; position: absolute; left: 4px; top: 7px; width: 6px; height: 3px; border-left: 1.5px solid var(--taupe-deep); border-bottom: 1.5px solid var(--taupe-deep); transform: rotate(-45deg); }
.sm-card-2 .sm-card-list.sm-check li::before { background: rgba(255,255,255,0.14); }
.sm-card-2 .sm-card-list.sm-check li::after { border-color: #e7d6bd; }

/* collection notes (destination + bespoke) */
.sm-collections-extra { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-lg); }
.sm-collection-note { display: flex; flex-direction: column; align-items: flex-start; padding: var(--s-xl); border: 1px solid var(--hairline); border-radius: var(--r-xl); background: var(--canvas); box-shadow: 0 22px 54px -46px rgba(70,52,32,0.45); }
.sm-collection-note h3 { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 27px); font-weight: 600; margin: 8px 0 10px; color: var(--ink); }
.sm-collection-note p { font-size: 15px; line-height: 1.62; color: var(--body); margin: 0 0 var(--s-lg); max-width: 46ch; }
.sm-collection-note .btn { margin-top: auto; }
@media (max-width: 760px) { .sm-collections-extra { grid-template-columns: 1fr; } }

/* ---------- People behind the camera ---------- */
.sm-people-grid { max-width: var(--page); margin: 0 auto; padding: 0 var(--s-lg); display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 84px); align-items: center; }
.sm-people-portrait { position: relative; margin: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 44px 96px -52px rgba(70,52,32,0.62); }
.sm-people-portrait img { width: 100%; height: auto; display: block; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.sm-people-portrait:hover img { transform: scale(1.03); }
.sm-people-portrait figcaption { position: absolute; left: 16px; bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; background: rgba(16,12,9,0.42); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: var(--r-full); }
.sm-people-copy .sm-h2 { max-width: 15ch; margin-bottom: var(--s-md); }
.sm-people-copy .sm-sub { margin-bottom: var(--s-md); }
.sm-people-lead { color: var(--ink); font-size: 16.5px; line-height: 1.7; margin: 0 0 var(--s-xl); max-width: 56ch; }
.sm-people-team { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); border-top: 1px solid var(--hairline-strong); padding-top: var(--s-lg); }
.sm-people-member h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.sm-people-member h3 span { color: var(--taupe); font-weight: 500; }
.sm-people-member p { font-size: 14px; line-height: 1.55; color: var(--body); margin: 0; }
@media (max-width: 860px) { .sm-people-grid { grid-template-columns: 1fr; gap: var(--s-xl); } .sm-people-portrait { max-width: 480px; margin-inline: auto; } }
@media (max-width: 480px) { .sm-people-team { grid-template-columns: 1fr; gap: var(--s-md); } }

/* optional wedding vlog card */
.sm-vlog { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 44px); align-items: center; max-width: var(--page); margin: clamp(40px, 6vw, 78px) auto 0; padding: var(--s-lg); border: 1px solid var(--hairline); border-radius: var(--r-xl); background: var(--canvas); box-shadow: 0 26px 60px -48px rgba(70,52,32,0.5); transition: transform .3s ease, box-shadow .3s ease; color: inherit; }
.sm-vlog:hover { transform: translateY(-3px); box-shadow: 0 34px 72px -46px rgba(70,52,32,0.55); }
.sm-vlog-media { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 10; }
.sm-vlog-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.sm-vlog:hover .sm-vlog-media img { transform: scale(1.04); }
.sm-vlog-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,12,9,0.05), rgba(16,12,9,0.3)); }
.sm-vlog-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 2; width: 66px; height: 66px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.75); background: rgba(20,16,11,0.32); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: grid; place-content: center; transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease; }
.sm-vlog:hover .sm-vlog-play { transform: translate(-50%, -50%) scale(1.08); background: rgba(20,16,11,0.5); }
.sm-vlog-play::after { content: ""; width: 0; height: 0; margin-left: 4px; border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent #fff; }
.sm-vlog-text .eyebrow { margin-bottom: var(--s-xs); }
.sm-vlog-text h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; color: var(--ink); margin: 0 0 var(--s-sm); }
.sm-vlog-text p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0 0 var(--s-md); max-width: 50ch; }
.sm-vlog-cta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: var(--taupe-deep); transition: color .2s ease; }
.sm-vlog:hover .sm-vlog-cta { color: var(--ink); }
@media (max-width: 760px) { .sm-vlog { grid-template-columns: 1fr; } .sm-vlog-media { aspect-ratio: 16 / 9; } }

/* ---------- Cinematic quote ---------- */
.sm-quote { position: relative; display: grid; place-items: center; min-height: 70svh; padding: clamp(70px,12vw,140px) var(--s-lg); text-align: center; color: #fff; overflow: hidden; }
.sm-quote-bg { position: absolute; inset: 0; background: url("/assets/stay-married/gallery/re-couple-garden.jpg") center / cover; transform: scale(1.06); }
.sm-quote-scrim { position: absolute; inset: 0; background: rgba(20,16,11,0.62); }
.sm-quote figure { position: relative; z-index: 2; max-width: 920px; margin: 0; }
.sm-quote blockquote { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(28px,4.4vw,56px); line-height: 1.1; }
.sm-quote figcaption { margin-top: var(--s-lg); font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.78); }

/* ---------- Reviews ---------- */
.sm-reviews { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.sm-review { display: flex; flex-direction: column; padding: var(--s-lg); border-radius: var(--r-xl); border: 1px solid var(--hairline); background: var(--canvas); box-shadow: 0 20px 50px -40px rgba(70,52,32,0.5); }
.sm-review-media { aspect-ratio: 5 / 4; margin-bottom: var(--s-lg); border-radius: var(--r-lg); overflow: hidden; }
.sm-review-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.sm-review:hover .sm-review-media img { transform: scale(1.05); }
.sm-review blockquote { flex: 1; margin: 0 0 var(--s-md); font-family: var(--serif); font-size: clamp(18px,1.6vw,22px); line-height: 1.3; color: var(--ink); }
.sm-review figcaption { display: grid; gap: 3px; }
.sm-review figcaption strong { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.sm-review figcaption span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); }
@media (max-width: 820px) { .sm-reviews { grid-template-columns: 1fr; max-width: 480px; } }

/* ---------- FAQ ---------- */
.sm-faq { max-width: 820px; margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg); }
.sm-acc { border-bottom: 1px solid var(--hairline); }
.sm-acc summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--s-md); padding: var(--s-lg) 0; font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--ink); }
.sm-acc summary::-webkit-details-marker { display: none; }
.sm-acc summary::after { content: "+"; font-family: var(--sans); font-weight: 300; font-size: 26px; line-height: 1; color: var(--taupe); transition: transform .3s ease; flex: 0 0 auto; }
.sm-acc[open] summary::after { transform: rotate(45deg); }
.sm-acc p { margin: 0; padding: 0 0 var(--s-lg); color: var(--body); font-size: 16px; line-height: 1.6; max-width: 64ch; }

/* ---------- Final CTA + contact ---------- */
.sm-cta { padding: var(--s-5xl) 0 0; }
.sm-cta-inner { max-width: var(--page); margin: 0 auto; padding: 0 var(--s-lg); text-align: center; }
.sm-cta-title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px,4.4vw,52px); line-height: 1.06; letter-spacing: -0.01em; margin: var(--s-sm) 0 var(--s-md); color: var(--ink); }
.sm-contact { max-width: var(--page); margin: var(--s-2xl) auto 0; padding: 0 var(--s-lg) var(--s-5xl); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px,4vw,56px); align-items: stretch; }
.sm-contact-media { position: relative; border-radius: var(--r-xl); overflow: hidden; }
.sm-contact-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.sm-form { display: flex; flex-direction: column; gap: var(--s-md); align-self: center; width: 100%; }
.sm-form[hidden] { display: none; }
.sm-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe-deep); }
.sm-form input, .sm-form textarea { font-family: var(--sans); font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--hairline-strong); border-radius: var(--r-md); background: var(--canvas); text-transform: none; letter-spacing: normal; width: 100%; }
.sm-form textarea { resize: vertical; }
.sm-form input:focus, .sm-form textarea:focus { outline: none; border-color: var(--taupe); box-shadow: 0 0 0 3px rgba(155,123,95,0.16); }
.sm-form .btn { margin-top: 4px; }
.sm-form-alt { font-size: 13px; color: var(--body); margin: 2px 0 0; text-align: center; }
.sm-form-alt a { color: var(--taupe-deep); text-decoration: underline; text-underline-offset: 2px; }
.sm-form-done { align-self: center; text-align: center; padding: var(--s-xl) 0; }
.sm-form-done-icon { display: inline-grid; place-content: center; width: 52px; height: 52px; margin: 0 auto var(--s-md); border-radius: 50%; background: rgba(155,123,95,0.14); color: var(--taupe-deep); font-size: 22px; }
.sm-form-done h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 2.4vw, 30px); color: var(--ink); margin: 0 0 10px; }
.sm-form-done p { color: var(--body); font-size: 15px; line-height: 1.6; margin: 0 auto; max-width: 38ch; }
@media (max-width: 820px) { .sm-contact { grid-template-columns: 1fr; } .sm-contact-media { min-height: 340px; } }

/* ---------- Footer ---------- */
.sm-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-md); padding: var(--s-xl) clamp(18px,4vw,40px); background: var(--warm-black); color: rgba(255,255,255,0.74); }
.sm-footer p { margin: 0; font-size: 14px; }
.sm-footer-brand { font-family: var(--serif); font-size: 1.2rem; color: #fff; }
.sm-footer-link { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.sm-footer-link:hover { color: #fff; }
.sm-footer-seo { flex-basis: 100%; margin: 6px 0 0; max-width: 90ch; color: rgba(255,255,255,0.5); font-size: 12px; line-height: 1.6; }

/* ---------- Lightbox ---------- */
.sm-lightbox { position: fixed; inset: 0; z-index: 120; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(8px,2vw,24px); padding: clamp(16px,4vw,56px); background: rgba(16,12,9,0.95); opacity: 0; transition: opacity .3s ease; }
.sm-lightbox:not([hidden]) { opacity: 1; }
.sm-lightbox[hidden] { display: none; }
.sm-lb-stage { margin: 0; display: grid; justify-items: center; gap: 12px; max-height: 100%; }
.sm-lb-stage img { max-width: min(92vw, 1180px); max-height: 82vh; object-fit: contain; border-radius: var(--r-md); box-shadow: 0 40px 120px rgba(0,0,0,0.6); animation: smLbIn .4s cubic-bezier(.16,1,.3,1); }
@keyframes smLbIn { from { opacity: 0; transform: scale(.97);} to { opacity: 1; transform: none; } }
.sm-lb-stage figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.74); }
.sm-lb-close, .sm-lb-nav { display: grid; place-content: center; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.26); cursor: pointer; transition: background .2s ease, transform .2s ease; border-radius: 50%; }
.sm-lb-nav { width: clamp(44px,5vw,56px); height: clamp(44px,5vw,56px); font-size: 1.7rem; }
.sm-lb-close { position: absolute; top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px); width: 46px; height: 46px; font-size: 1.5rem; }
.sm-lb-close:hover, .sm-lb-nav:hover { background: rgba(255,255,255,0.2); transform: scale(1.05); }
body.lightbox-open { overflow: hidden; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } body.sm::before { display: none; } }

/* ---------- Mobile nav ---------- */
@media (max-width: 1040px) {
  .sm-header { grid-template-columns: 1fr auto; }
  .sm-nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100vw; height: 100dvh;
    z-index: 65; flex-direction: column; justify-content: center; gap: clamp(18px,4.5vh,36px);
    padding: 90px 30px; background: rgba(20,16,11,0.97); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    color: #fff; opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
  }
  .sm-header.nav-open .sm-nav { opacity: 1; transform: none; pointer-events: auto; }
  .sm-nav a { font-size: 1.1rem; opacity: 0.92; }
  .sm-burger { display: block; }
  .sm-header-cta { display: none; }
}
@media (max-width: 600px) {
  .sm-hero { padding-top: 112px; }
  .sm-brand-word { font-size: 1.15rem; }
}
