/* ============================================================
   Buổi Sáng Tĩnh Lặng — styles.css
   LAYOUT SCHEME: single-column centered flow, max-width 1120px
   container ("wrap"), section rhythm 96px desktop / 56px mobile.
   Modifier: raised (elevated cards + soft offset shadows).
   Theme: LIGHT dawn pastel. Accents: peach + lavender (max 2).
   Fonts: Cormorant Garamond (headings) / Mulish (body).
   Breakpoints: 480 / 768 / 1024 / 1200.
   ============================================================ */

:root {
  /* palette — light dawn pastel */
  --bg:        #fbf6f1;
  --bg-2:      #fff9f4;
  --panel:     #fdeee4;
  --panel-2:   #f7ece6;
  --ink:       #3a3340;
  --muted:     #726879;
  --line:      #e7d8cd;
  --peach:     #e8895f;   /* darkened from #f2b391 for AA contrast on light */
  --peach-soft:#f2b391;
  --lav:       #7a6bb0;   /* darkened accent-2 for contrast */
  --lav-soft:  #b3a3d6;
  --white:     #ffffff;

  /* spacing scale 8/16/24/40/64/96 */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px; --s6: 96px;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px -12px rgba(58, 51, 64, .18);
  --shadow-raise: 0 18px 44px -18px rgba(122, 107, 176, .30);
  --maxw: 1120px;

  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; margin: 0 0 var(--s2); letter-spacing: .2px; }
h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { margin: 0 0 var(--s2); }
a  { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s3); }
.wrap--narrow { max-width: 760px; }

.section { padding: var(--s6) 0; }
.section__head { max-width: 720px; margin: 0 auto var(--s5); text-align: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; }

/* underline heading axis */
.uline { position: relative; display: inline-block; padding-bottom: 14px; }
.uline::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--peach-soft), var(--lav-soft));
}

/* ---------- buttons: pill ---------- */
.btn-primary, .btn-ghost {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 1rem; padding: 14px 28px; border-radius: 999px;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--peach) 0%, #d97a55 100%);
  color: #fff; box-shadow: 0 10px 22px -10px rgba(232, 137, 95, .8);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(232, 137, 95, .9); }
.btn-ghost { background: transparent; border-color: var(--lav); color: var(--lav); }
.btn-ghost:hover { background: var(--lav); color: #fff; transform: translateY(-2px); }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- NAV: hamburger-first ---------- */
.nav--minimal {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(251, 246, 241, .82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.nav__toggle {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; cursor: pointer; color: var(--ink);
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
}
.nav__toggle:hover { border-color: var(--lav); color: var(--lav); }
.nav__toggle-bar { width: 20px; height: 2px; background: currentColor; position: relative; }
.nav__toggle-bar::before, .nav__toggle-bar::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor;
}
.nav__toggle-bar::before { top: -6px; } .nav__toggle-bar::after { top: 6px; }

.nav__overlay {
  position: fixed; inset: 0; z-index: 60;
  background: linear-gradient(160deg, var(--bg-2), var(--panel));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(1.04); transition: opacity .3s ease, transform .3s ease;
}
.nav__overlay[hidden] { display: none; }
.nav__overlay.open { opacity: 1; transform: scale(1); }
.nav__close { position: absolute; top: 24px; right: 30px; background: none; border: none; font-size: 2.6rem; line-height: 1; color: var(--ink); cursor: pointer; }
.nav__menu { display: flex; flex-direction: column; align-items: center; gap: var(--s3); text-align: center; }
.nav__menu a { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.3rem); text-decoration: none; color: var(--ink); transition: color .2s ease; }
.nav__menu a:hover { color: var(--peach); }
.nav__menu-cta { font-family: var(--font-body) !important; font-size: 1rem !important; padding: 12px 30px; border-radius: 999px; background: var(--lav); color: #fff !important; margin-top: var(--s2); }
.nav__menu-cta:hover { background: var(--peach) !important; }

/* ---------- HERO: collage trio ---------- */
.hero {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--s5); align-items: center;
  min-height: 70vh; padding: var(--s6) clamp(20px, 4vw, 48px);
  max-width: 1280px; margin: 0 auto;
  background: radial-gradient(120% 120% at 15% 10%, var(--bg-2) 0%, var(--panel) 100%);
}
.hero__eyebrow { text-transform: uppercase; letter-spacing: 2.5px; font-size: .78rem; font-weight: 700; color: var(--lav); margin-bottom: var(--s2); }
.hero__text { position: relative; z-index: 3; }
.hero__sub { color: var(--muted); font-size: 1.15rem; max-width: 30rem; margin-bottom: var(--s4); }
.hero__actions { display: flex; gap: var(--s2); flex-wrap: wrap; }

.hero__collage {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, 1fr);
  min-height: 480px;
}
.hero__collage img { border-radius: var(--radius-lg); box-shadow: var(--shadow-raise); border: 5px solid #fff; }
.hero__collage .c1 { grid-column: 1 / 6; grid-row: 1 / 5; z-index: 1; transform: rotate(-2deg); aspect-ratio: 3/2; object-fit: cover; height: 100%; }
.hero__collage .c2 { grid-column: 4 / 7; grid-row: 4 / 7; z-index: 3; transform: rotate(3deg); aspect-ratio: 1/1; object-fit: cover; height: 100%; }
.hero__collage .c3 { grid-column: 1 / 3; grid-row: 4 / 7; z-index: 2; transform: rotate(-4deg); aspect-ratio: 2/3; object-fit: cover; height: 100%; }

/* steam / breath animation (#126 reinterpret) */
.hero__steam { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__steam span {
  position: absolute; bottom: -10%; width: 3px; height: 44%;
  background: linear-gradient(to top, rgba(179,163,214,0), rgba(179,163,214,.35), rgba(242,179,145,0));
  border-radius: 3px; filter: blur(1.5px); opacity: 0;
  animation: steam 8s ease-in-out infinite;
}
.hero__steam span:nth-child(1) { left: 22%; animation-delay: 0s; }
.hero__steam span:nth-child(2) { left: 40%; animation-delay: 2.4s; height: 52%; }
.hero__steam span:nth-child(3) { left: 63%; animation-delay: 1.2s; }
.hero__steam span:nth-child(4) { left: 80%; animation-delay: 3.6s; height: 38%; }
@keyframes steam {
  0%   { opacity: 0; transform: translateY(20px) scaleY(.6); }
  30%  { opacity: .8; }
  70%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-60px) scaleY(1.15) translateX(10px); }
}

/* ---------- DIVIDER: marquee tags ---------- */
.divider--tags { overflow: hidden; background: var(--panel-2); border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); padding: 14px 0; }
.divider--tags .track { display: flex; gap: var(--s4); width: max-content; animation: marquee 26s linear infinite; }
.divider--tags span { font-family: var(--font-head); font-size: 1.25rem; font-style: italic; color: var(--muted); white-space: nowrap; }
.divider--tags span::before { content: "·"; margin-right: var(--s4); color: var(--peach-soft); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- ARTICLES ---------- */
.articles__lead { margin-bottom: var(--s4); }
.post--lead {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-raise);
}
.post--lead .post__media img { height: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post--lead .post__body { padding: var(--s4); align-self: center; text-align: left; }

.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.post {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s4); box-shadow: var(--shadow); text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.articles__grid .post:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); }
.post__tag {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--lav); background: rgba(179,163,214,.16);
  padding: 5px 12px; border-radius: 999px; margin-bottom: var(--s2);
}
.post h3 { margin-bottom: 10px; }
.post p { color: var(--muted); font-size: .98rem; }
.post__meta { font-size: .82rem; color: var(--lav); font-weight: 600; margin-bottom: 0; }

/* ---------- FEATURE TABS ---------- */
.fgrid--tabs .tabs { max-width: 860px; margin: 0 auto; }
.tabs__list { position: relative; display: flex; justify-content: center; gap: var(--s1); flex-wrap: wrap; margin-bottom: var(--s4); }
.tab {
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 12px 26px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--bg-2); color: var(--muted); cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.tab[aria-selected="true"] { color: #fff; background: var(--lav); border-color: var(--lav); }
.tab:hover { color: var(--lav); border-color: var(--lav); }
.tab[aria-selected="true"]:hover { color: #fff; }
.tab-panel {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s5); box-shadow: var(--shadow); text-align: left;
  animation: fadein .35s ease;
}
.tab-panel h3 { text-align: center; }
.tab-panel > p { text-align: center; color: var(--muted); max-width: 44rem; margin: 0 auto var(--s3); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.ticks { list-style: none; padding: 0; margin: var(--s3) auto 0; max-width: 30rem; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--peach-soft);
  box-shadow: inset 0 0 0 4px var(--bg-2);
}

/* ---------- ZIGZAG ---------- */
.zz { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); align-items: center; margin-bottom: var(--s5); }
.zz--rev .zz__text { order: 2; } /* default photo right; reversed row photo left */
.zz--rev figure { order: 1; }
.zz__text { text-align: left; }
.zz__num { font-family: var(--font-head); font-size: 3rem; color: var(--peach-soft); display: block; line-height: 1; margin-bottom: 8px; }
.zz__text p { color: var(--muted); }
.zz__hint { font-weight: 600; color: var(--lav); font-size: .95rem; }
.zz figure { margin: 0; }
.zz figure img { border-radius: var(--radius-lg); box-shadow: var(--shadow-raise); aspect-ratio: 3/4; object-fit: cover; width: 100%; max-height: 520px; }
.zz figcaption { font-style: italic; color: var(--muted); font-size: .92rem; text-align: center; margin-top: 12px; }

/* ---------- STATS: badge cloud ---------- */
.stats--cloud { background: var(--panel); }
.stats__title { display: block; text-align: center; margin-bottom: var(--s4); }
.stats--cloud .wrap { text-align: center; }
.stats__cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s2); }
.badge {
  font-weight: 600; font-size: 1rem; padding: 12px 22px; border-radius: 999px;
  background: var(--bg-2); border: 1px solid var(--line); color: var(--ink);
}
.badge--accent { background: var(--lav); color: #fff; border-color: var(--lav); }

/* ---------- GALLERY 2-up ---------- */
.gallery--2large { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.gallery--2large figure { margin: 0; }
.gallery--2large img { aspect-ratio: 3/2; object-fit: cover; width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.gallery--2large figcaption { text-align: center; font-style: italic; color: var(--muted); margin-top: 12px; font-size: .95rem; }

/* ---------- TIMELINE zigzag ---------- */
.timeline--zigzag { position: relative; max-width: 900px; margin: 0 auto; padding: var(--s3) 0; }
.timeline--zigzag::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--peach-soft), var(--lav-soft)); transform: translateX(-50%); }
.timeline__step { position: relative; width: calc(50% - 40px); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--s4); box-shadow: var(--shadow); margin-bottom: var(--s4); text-align: left; }
.timeline__step--left { margin-right: auto; }
.timeline__step--right { margin-left: auto; }
.timeline__step::after { content: ""; position: absolute; top: 34px; width: 16px; height: 16px; border-radius: 50%; background: var(--peach); border: 3px solid var(--bg); }
.timeline__step--left::after { right: -49px; }
.timeline__step--right::after { left: -49px; }
.timeline__badge { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--lav); background: rgba(179,163,214,.16); padding: 5px 14px; border-radius: 999px; margin-bottom: var(--s2); }
.timeline__step p { color: var(--muted); margin-bottom: 0; }

/* ---------- TESTIMONIALS chat ---------- */
.testi { background: var(--panel); }
.testimonials-chat { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s3); }
.chat-bubble { background: var(--bg-2); border: 1px solid var(--line); padding: var(--s3) var(--s4); max-width: 78%; box-shadow: var(--shadow); text-align: left; }
.chat-bubble strong { display: block; font-size: .9rem; color: var(--lav); margin-bottom: 6px; }
.chat-bubble p { margin: 0; color: var(--ink); }
.chat-bubble--l { align-self: flex-start; border-radius: 18px 18px 18px 4px; }
.chat-bubble--r { align-self: flex-end; border-radius: 18px 18px 4px 18px; background: #fff; }

/* ---------- PRICING group tiers ---------- */
.ptiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); align-items: stretch; }
.gtier {
  position: relative; display: flex; flex-direction: column; text-align: center;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s5) var(--s4); box-shadow: var(--shadow);
}
.gtier--pop { border: 2px solid var(--lav); box-shadow: var(--shadow-raise); }
.gtier__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--lav); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .6px; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.gtier__who { font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: .8rem; color: var(--lav); }
.gtier b { font-family: var(--font-head); font-size: 3.4rem; line-height: 1; color: var(--ink); display: block; margin: 6px 0 2px; }
.gtier__seats { color: var(--muted); font-size: .95rem; }
.gtier__price { font-family: var(--font-head); font-size: 2rem; color: var(--peach); margin: var(--s2) 0 var(--s3); font-weight: 600; }
.gtier .ticks { text-align: left; margin: 0 0 var(--s4); max-width: none; }
.gtier .ticks li { font-size: .95rem; color: var(--muted); }
.gtier .btn-primary, .gtier .btn-ghost { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq details { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: var(--s2); padding: 4px var(--s3); box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.08rem; padding: var(--s2) 0; list-style: none; position: relative; padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--lav); transition: transform .25s ease; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); margin: 0 0 var(--s2); }

/* ---------- CTA FORM floating ---------- */
.cta-form--floating { background: linear-gradient(160deg, var(--panel) 0%, var(--bg-2) 100%); }
.cta-form__card {
  max-width: 720px; margin: 0 auto; background: #fff;
  border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px);
  box-shadow: 14px 14px 0 -2px var(--lav-soft), var(--shadow-raise);
  border: 1px solid var(--line);
}
.cta-form__intro { text-align: center; margin-bottom: var(--s4); }
.cta-form__intro p { color: var(--muted); }
.field { margin-bottom: var(--s3); text-align: left; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 13px 16px; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line); border-radius: 12px; background: var(--bg-2); color: var(--ink);
}
.field input:focus, .field select:focus { outline: 2px solid var(--lav); border-color: var(--lav); background: #fff; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#formStatus { text-align: center; font-weight: 600; margin: var(--s2) 0 0; min-height: 1.2em; }
#formStatus.error { color: #b3402f; }
.cta-form__fine { text-align: center; font-size: .82rem; color: var(--muted); margin: var(--s2) 0 0; }
.cta-form__fine a { color: var(--lav); }

/* ---------- FOOTER ---------- */
.footer--contact { background: var(--ink); color: #f3ebe6; padding-top: var(--s6); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s4); padding-bottom: var(--s5); }
.footer__logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: #fff; text-decoration: none; display: inline-block; margin-bottom: var(--s2); }
.footer--contact p, .footer--contact address { color: #cabfc4; font-style: normal; font-size: .95rem; line-height: 1.75; }
.footer--contact h3 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--lav-soft); margin-bottom: var(--s2); }
.footer__mapbox img { border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); width: 100%; height: auto; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer--contact a { color: #e8ddd6; text-decoration: none; }
.footer__links a:hover, .footer--contact a:hover { color: var(--peach-soft); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: var(--s3) 0; }
.footer__bar p { text-align: center; color: #a99ba4; font-size: .85rem; margin: 0; }

/* ---------- reveal on scroll: scale ---------- */
.reveal { opacity: 0; transform: scale(.96); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ LEGAL pages ============ */
.legal { max-width: 760px; margin: 0 auto; padding: var(--s6) var(--s3); }
.legal h1 { margin-bottom: var(--s2); }
.legal h2 { font-size: 1.5rem; margin-top: var(--s4); }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--lav); }
.legal__back { display: inline-block; margin-bottom: var(--s4); font-weight: 600; color: var(--lav); text-decoration: none; }

/* ============ THANK YOU ============ */
.thanks { min-height: 76vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--s6) var(--s3); }
.thanks h1 { margin-bottom: var(--s2); }
.thanks p { color: var(--muted); max-width: 30rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: var(--s4); text-align: center; min-height: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__collage { max-width: 520px; margin: 0 auto; min-height: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: var(--s5) 0; }
  .section__head { margin-bottom: var(--s4); }
  .articles__grid { grid-template-columns: 1fr; }
  .post--lead { grid-template-columns: 1fr; }
  .post--lead .post__media img { aspect-ratio: 16/9; }
  .ptiers { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery--2large { grid-template-columns: 1fr; }
  .zz, .zz--rev { grid-template-columns: 1fr; gap: var(--s3); }
  .zz--rev .zz__text, .zz--rev figure { order: 0; }
  .zz figure img { aspect-ratio: 4/3; max-height: 400px; }
  .timeline--zigzag::before { left: 18px; }
  .timeline__step { width: 100%; margin: 0 0 var(--s3); }
  .timeline__step--left::after, .timeline__step--right::after { left: 11px; right: auto; }
  .chat-bubble { max-width: 90%; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .cta-form__card { box-shadow: 8px 8px 0 -2px var(--lav-soft), var(--shadow); }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__steam { display: none; }
  .divider--tags .track { animation: none; }
}
