/* ============================================================
   PILLARS & CO — Landing page styles
   Two directions share this sheet, switched by [data-dir]:
     editorial     — serif-forward, generous, calm
     architectural — four-pillar grid, gold rules, numbered
   ============================================================ */

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--cream) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line-soft); }
.site-header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.site-header .pc-lockup { font-size: 22px; }
.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.nav a {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 18px; }

/* Mobile menu button (hamburger) — hidden on desktop, shown <=940px */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  margin-left: 2px;
  padding: 9px 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle__bar { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav { position: relative; }
  .nav .menu-toggle { display: flex; }
  /* Collapse the full link bar into a dropdown panel anchored under the header */
  .nav .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 210px;
    padding: 12px 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(26, 26, 26, .10);
    z-index: 60;
  }
  .nav .nav-links.open { display: flex; }
  .nav .nav-links a { width: 100%; padding: 9px 12px; font-size: 15px; }
  .nav .nav-links a::after { display: none; } /* drop the sliding underline in the stacked menu */
}

/* ---------------- Section scaffolding ---------------- */
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--alt { background: var(--cream-deep); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section__num {
  display: none;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section__eyebrow { margin-bottom: 18px; display: inline-block; white-space: nowrap; }
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.section__intro {
  margin-top: 22px;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 600px;
  text-wrap: pretty;
}

/* ---------------- Hero ---------------- */
.hero { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(56px, 8vw, 104px); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 26px; display: flex; align-items: flex-start; gap: 14px; }
.hero__eyebrow::before {
  content: "";
  flex: 0 0 30px;
  height: 1px;
  margin-top: 0.62em;
  background: var(--gold);
  display: inline-block;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__title em { font-family: var(--script); font-style: italic; letter-spacing: 0; }
.hero__lead { max-width: 33ch; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
}
.hero__media img { width: 100%; height: 100%; display: block; }
.hero__media-cap {
  position: absolute;
  left: 16px; bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(26,26,26,0.55);
  backdrop-filter: blur(4px);
  padding: 7px 12px;
  border-radius: 2px;
}
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { aspect-ratio: 9 / 16; order: -1; }
}

/* ---------------- Chuppah / product features ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 52px);
}
.feature__rule { width: 100%; height: 1px; background: var(--line); margin-bottom: 22px; }
.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.feature p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.feature__n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
@media (max-width: 760px) { .features { grid-template-columns: 1fr; gap: 30px; } }

.product__band {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product__band img { width: 100%; aspect-ratio: 3/4; display: block; }
.product__band img:nth-child(2) { aspect-ratio: 3/4; transform: translateY(clamp(0px, 3vw, 32px)); }
@media (max-width: 760px) {
  .product__band { grid-template-columns: 1fr 1fr; }
  .product__band img:nth-child(3) { display: none; }
  .product__band img:nth-child(2) { transform: none; }
}

/* ---------------- Packages ---------------- */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.pkg {
  background: var(--bone);
  border: 1px solid var(--line-soft);
  padding: clamp(26px, 2.6vw, 38px) clamp(24px, 2.4vw, 34px) clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 22px 50px -28px rgba(26,26,26,0.3); border-color: var(--line); }
.pkg--feature { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pkg--feature .pkg__hours, .pkg--feature .pkg__includes li { color: rgba(247,244,238,0.72); }
.pkg--feature .pkg__includes li::before { background: var(--gold); }
.pkg__tag {
  position: absolute;
  top: 0; right: 24px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  white-space: nowrap;
}
.pkg__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.1;
  margin: 0 0 6px;
}
.pkg__hours { font-size: 13.5px; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 24px; }
.pkg__price {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg__price small { font-size: 16px; color: var(--ink-faint); font-family: var(--sans); }
.pkg--feature .pkg__price small { color: rgba(247,244,238,0.6); }
.pkg__includes { list-style: none; padding: 0; margin: 26px 0 28px; flex: 1; }
.pkg__includes li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.45;
}
.pkg__includes li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
}
.pkg .btn { width: 100%; justify-content: center; }
.pkg--feature .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.pkg--feature .btn:hover { background: transparent; color: var(--cream); }
@media (max-width: 880px) { .packages { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.pkg-note {
  margin-top: clamp(26px, 3vw, 40px);
  display: flex;
  gap: 20px;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.pkg-note p { margin: 0; max-width: 60ch; color: var(--ink-soft); }
.pkg-note .serif-em { color: var(--ink); }

/* ---------------- How it works ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 40px); }
.step__num {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}
.step__bar { height: 1px; background: var(--line); margin-bottom: 18px; }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 19px; margin: 0 0 10px; }
.step p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.step--soft { opacity: 0.62; }
.step--soft .step__num { color: var(--ink-faint); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* ---------------- Story ---------------- */
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.story__media { position: relative; aspect-ratio: 4/5; }
.story__media img { width: 100%; height: 100%; display: block; }
.story__body p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1em;
  text-wrap: pretty;
}
.story__body p:last-of-type { font-size: clamp(17px, 1.9vw, 19px); font-family: var(--sans); color: var(--ink-soft); }
.story__sign {
  margin-top: 28px;
  font-family: var(--script);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}
@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__media { aspect-ratio: 3/2; }
}

/* ---------------- Gallery ---------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: clamp(120px, 14vw, 200px);
  gap: 12px;
}
.gallery img { width: 100%; height: 100%; display: block; }
.g-a { grid-column: span 3; grid-row: span 2; }
.g-b { grid-column: span 3; grid-row: span 1; }
.g-c { grid-column: span 3; grid-row: span 1; }
.g-d { grid-column: span 2; grid-row: span 1; }
.g-e { grid-column: span 2; grid-row: span 1; }
.g-f { grid-column: span 2; grid-row: span 1; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 1; grid-row: span 1; }
  .g-a { grid-column: span 2; grid-row: span 2; }
}

/* ---------------- FAQ ---------------- */
.faq__grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 24px 40px 24px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 21px);
  color: var(--ink);
  cursor: pointer;
  position: relative;
  display: block;
  line-height: 1.3;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 4px; top: 32px;
  width: 13px; height: 13px;
  background:
    linear-gradient(var(--gold-deep),var(--gold-deep)) center/13px 1.5px no-repeat,
    linear-gradient(var(--gold-deep),var(--gold-deep)) center/1.5px 13px no-repeat;
  transition: transform .3s;
}
.faq__item.open .faq__q::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a-in { padding: 0 40px 26px 0; color: var(--ink-soft); font-size: 16px; max-width: 60ch; }
@media (max-width: 760px) { .faq__grid { grid-template-columns: 1fr; gap: 8px; } }

/* ---------------- Inquiry ---------------- */
.inquiry { background: var(--ink); color: var(--cream); }
.inquiry .section__title { color: var(--cream); }
.inquiry .section__intro { color: rgba(247,244,238,0.7); }
.inquiry .section__eyebrow { color: var(--gold); }
.inquiry__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.inquiry__aside .pc-lockup { font-size: 30px; color: var(--cream); margin-bottom: 26px; }
.inquiry__aside .pc-word { color: var(--cream); }
.inquiry__detail { display: flex; gap: 12px; align-items: baseline; margin-bottom: 14px; color: rgba(247,244,238,0.78); font-size: 15px; }
.inquiry__detail b { color: var(--cream); font-weight: 500; min-width: 86px; display: inline-block; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(247,244,238,0.6); }
.field input, .field select, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(247,244,238,0.28);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  padding: 10px 0;
  transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 76px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(247,244,238,0.4); }
.field select option { color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field--error input, .field--error select { border-bottom-color: #e0795f; }
.form__actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; margin-top: 8px; flex-wrap: wrap; }
.form .btn { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.form .btn:hover { background: transparent; color: var(--cream); border-color: var(--gold); }
.form__hint { font-size: 13px; color: rgba(247,244,238,0.5); }
.inquiry__success { text-align: left; padding: 8px 0; }
.inquiry__success .tick {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}
.inquiry__success h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 0 0 14px; color: var(--cream); }
.inquiry__success p { color: rgba(247,244,238,0.72); max-width: 46ch; }
@media (max-width: 820px) { .inquiry__grid { grid-template-columns: 1fr; } .form { grid-template-columns: 1fr; } }

/* ---------------- Footer ---------------- */
.site-footer { padding-block: clamp(48px, 6vw, 80px) 40px; background: var(--cream-deep); }
.site-footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.site-footer .pc-lockup { font-size: 26px; margin-bottom: 16px; }
.footer__tag { color: var(--ink-soft); max-width: 34ch; font-size: 15px; }
.footer__cols { display: flex; gap: clamp(40px, 6vw, 88px); flex-wrap: wrap; }
.footer__col h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 16px; font-weight: 600; }
.footer__col a, .footer__col p { display: block; text-decoration: none; color: var(--ink-soft); font-size: 15px; margin-bottom: 10px; transition: color .2s; }
.footer__col a:hover { color: var(--ink); }
.site-footer__base {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ============================================================
   DIRECTION B — ARCHITECTURAL
   Four-pillar grid, gold rules, numbered sections, tighter type.
   ============================================================ */
.site[data-dir="architectural"] { --cream: #F8F6F1; }
.site[data-dir="architectural"] .section { border-top: 1px solid var(--line); }
.site[data-dir="architectural"] .section--first { border-top: 0; }
.site[data-dir="architectural"] .section__num { display: block; }
.site[data-dir="architectural"] .section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-left: 0;
  position: relative;
}
.site[data-dir="architectural"] .section__title { letter-spacing: -0.005em; }
.site[data-dir="architectural"] .section__eyebrow {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

/* Hero: structural — wordmark scaled huge, pillar rules */
.site[data-dir="architectural"] .hero__title { font-size: clamp(40px, 6.4vw, 78px); letter-spacing: -0.02em; }
.site[data-dir="architectural"] .hero__eyebrow::before { background: var(--gold); }
.site[data-dir="architectural"] .hero__media::before,
.site[data-dir="architectural"] .hero__media::after {
  content: "";
  position: absolute;
  top: -14px; bottom: -14px;
  width: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.site[data-dir="architectural"] .hero__media::before { left: -18px; }
.site[data-dir="architectural"] .hero__media::after { right: -18px; }

/* Features become four columns echoing the pillars */
.site[data-dir="architectural"] .feature__rule { background: var(--gold); height: 2px; width: 34px; }
.site[data-dir="architectural"] .feature h3 { letter-spacing: -0.005em; }

/* Packages get vertical pillar dividers */
.site[data-dir="architectural"] .packages { gap: 0; border: 1px solid var(--line); }
.site[data-dir="architectural"] .pkg { border: 0; border-right: 1px solid var(--line); background: transparent; }
.site[data-dir="architectural"] .pkg:last-child { border-right: 0; }
.site[data-dir="architectural"] .pkg:hover { transform: none; box-shadow: none; background: var(--bone); }
.site[data-dir="architectural"] .pkg--feature { background: var(--ink); }
.site[data-dir="architectural"] .pkg--feature:hover { background: var(--ink); }
@media (max-width: 880px) {
  .site[data-dir="architectural"] .packages { grid-template-columns: 1fr; }
  .site[data-dir="architectural"] .pkg { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* Steps get a connecting baseline */
.site[data-dir="architectural"] .step__bar { background: var(--gold); height: 2px; width: 30px; }

/* Section title scale a touch larger / tighter in architectural */
.site[data-dir="architectural"] .section__title { font-family: var(--serif); }

/* Editorial-only flourish: italic accents already present.
   Architectural prefers caps tracking on eyebrows */
.site[data-dir="architectural"] .eyebrow,
.site[data-dir="architectural"] .section__eyebrow { letter-spacing: 0.26em; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
@media print { .reveal { opacity: 1 !important; transform: none !important; } }

/* Production: real <img> replaces the prototype <image-slot> element */
.hero__media img, .story__media img, .product__band img, .gallery img { object-fit: cover; }

/* Inquiry aside — secondary link through to the full booking agreement */
.inquiry__aside-cta { margin-top: 26px; font-size: 14.5px; color: rgba(247,244,238,0.6); }
.inquiry__aside-cta a { color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; white-space: nowrap; }
.inquiry__aside-cta a:hover { border-bottom-color: var(--gold); }

/* Hero video — fills the media frame exactly like the photo it replaced */
.hero__media video { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 22%; }
.hero__media video img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Hero is a still (acrylic-angle): bias the crop up so the chuppah canopy stays in frame */
.hero__media img { object-position: center 30%; }

/* Desktop nav layout (replaces the prototype inline style so the mobile hide can win) */
@media (min-width: 941px) { .nav .nav-links { display: flex; gap: inherit; align-items: center; } }

/* Small-screen header: keep lockup + CTA on one line without clipping */
@media (max-width: 480px) {
  .site-header__in { gap: 12px; }
  .site-header .pc-lockup { font-size: 18px; }
  /* Phone header is mark + CTA + menu; hide the wordmark so all three fit (the
     pillar mark still links home, and the brand name returns on wider screens) */
  .site-header .pc-word { display: none; }
  .nav-cta .btn { padding: 11px 16px; font-size: 13.5px; }
}

/* Gallery feature loop occupies the big g-a tile */
.gallery video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------------- Two materials: copper & acrylic ---------------- */
.materials {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.material { display: flex; flex-direction: column; }
.material__media { width: 100%; aspect-ratio: 3 / 2; overflow: hidden; }
.material__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.material__text { padding-top: 20px; }
.material__tag { color: var(--gold-deep); margin-bottom: 12px; display: block; }
.material h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(21px, 2.4vw, 26px); margin: 0 0 10px; line-height: 1.15; }
.material p { margin: 0; color: var(--ink-soft); font-size: 16px; max-width: 46ch; }
@media (max-width: 760px) { .materials { grid-template-columns: 1fr; gap: 34px; } }

/* Product-band transformation loop (middle tile) */
.product__band video { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.product__band video:nth-child(2) { transform: translateY(clamp(0px, 3vw, 32px)); }
@media (max-width: 760px) { .product__band video:nth-child(2) { transform: none; } }

/* ---- Mobile: full-width, stacked CTAs (cleaner than uneven content-width buttons) ---- */
@media (max-width: 600px) {
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__actions .btn,
  .form__actions .btn,
  .pkg-note .btn { width: 100%; justify-content: center; }
  .form__actions { gap: 14px; }
  .pkg-note { gap: 16px; }
}
