:root {
  --ivory: #fff9f2;
  --ivory-deep: #f8eee5;
  --paper: #fffdfa;
  --plum: #552656;
  --plum-dark: #321934;
  --magenta: #a83d77;
  --blush: #e7a0aa;
  --gold: #bd8430;
  --gold-light: #f0d39b;
  --fig: #2d2130;
  --muted: #6e6170;
  --line: rgba(85, 38, 86, 0.14);
  --shadow: 0 24px 70px rgba(66, 30, 61, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1160px, calc(100vw - 40px));
  --radius-sm: 14px;
  --radius: 26px;
  --radius-lg: 46px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--fig);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.2em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 4px; }
::selection { color: white; background: var(--plum); }

.skip-link {
  position: fixed; z-index: 9999; top: 12px; left: 12px; transform: translateY(-150%);
  padding: 10px 16px; color: white; background: var(--plum); border-radius: 999px;
}
.skip-link:focus { transform: none; }
.container { width: var(--container); margin-inline: auto; }
.narrow { width: min(760px, calc(100vw - 40px)); margin-inline: auto; }
.section { position: relative; padding: clamp(76px, 10vw, 140px) 0; }
.section-compact { padding: clamp(56px, 7vw, 92px) 0; }
.surface { background: var(--paper); }
.surface-soft { background: linear-gradient(135deg, #fbefe9, #fffaf4 52%, #f7e8f0); }
.surface-plum { color: white; background: var(--plum-dark); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 7vw, 90px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stack > * { margin-top: 0; margin-bottom: 0; }
.stack > * + * { margin-top: 1.25rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px;
  color: var(--gold); font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
h1, h2, h3 { margin: 0; color: var(--plum-dark); font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { max-width: 920px; font-size: clamp(3.6rem, 8vw, 7.3rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.7rem, 5.4vw, 5.2rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.75rem, 2.5vw, 2.35rem); line-height: 1.08; }
.surface-plum h1, .surface-plum h2, .surface-plum h3 { color: white; }
.lede { max-width: 700px; color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.75; }
.surface-plum .lede { color: rgba(255,255,255,.76); }
.gold { color: var(--gold); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; }
.center .button-row { justify-content: center; }
.btn {
  display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 22px; border: 1px solid transparent; border-radius: 999px; cursor: pointer;
  font-size: .88rem; font-weight: 700; line-height: 1; letter-spacing: .035em; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--plum); box-shadow: 0 12px 30px rgba(85,38,86,.22); }
.btn-primary:hover { background: var(--plum-dark); box-shadow: 0 16px 36px rgba(85,38,86,.28); }
.btn-secondary { color: var(--plum); background: transparent; border-color: rgba(85,38,86,.35); }
.btn-secondary:hover { background: white; border-color: var(--gold); }
.btn-gold { color: var(--plum-dark); background: var(--gold-light); }
.text-link { color: var(--plum); font-weight: 700; text-decoration-color: var(--gold); }

.site-header {
  position: sticky; z-index: 1000; top: 0; background: rgba(255,249,242,.91);
  border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(50,25,52,.06); }
.nav-shell { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--plum-dark); text-decoration: none; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-copy { font-family: var(--serif); font-size: 1.28rem; line-height: .92; }
.brand-copy small { display: block; margin-top: 4px; color: var(--gold); font-family: var(--sans); font-size: .54rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: clamp(15px, 2vw, 27px); margin: 0; padding: 0; list-style: none; }
.nav-list a:not(.btn) { position: relative; font-size: .82rem; font-weight: 700; text-decoration: none; }
.nav-list a:not(.btn)::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; content: ""; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--plum); background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 1.5px; margin: 4px auto; content: ""; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-open .menu-toggle span { opacity: 0; }
.nav-open .menu-toggle::before { transform: translateY(5.5px) rotate(45deg); }
.nav-open .menu-toggle::after { transform: translateY(-5.5px) rotate(-45deg); }

.hero { min-height: calc(100svh - 82px); overflow: hidden; display: grid; grid-template-rows: minmax(0, 1fr) auto; align-items: stretch; padding: clamp(24px, 3vw, 44px) 0 0; }
.hero::before { position: absolute; width: 620px; height: 620px; top: -190px; right: -120px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(240,211,155,.48), rgba(231,160,170,.14) 48%, transparent 72%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(28px, 4vw, 58px); align-items: center; align-self: center; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { max-width: 720px; font-size: clamp(3.35rem, 5.35vw, 5.75rem); }
.hero-copy h1 em { color: var(--magenta); font-weight: 400; }
.hero-copy .lede { max-width: 610px; margin-top: 18px; }
.hero-copy .button-row { margin-top: 22px; }
.hero-art { position: relative; width: 100%; min-width: 0; display: grid; place-items: center; justify-self: end; padding: clamp(8px, 1vw, 12px); border: 1px solid rgba(189,132,48,.24); border-radius: clamp(24px, 2.4vw, 36px); background: linear-gradient(145deg, rgba(255,255,255,.74), rgba(248,238,229,.84)); box-shadow: 0 22px 58px rgba(66,30,61,.11); }
.hero-art::before, .hero-art::after { position: absolute; content: ""; border: 1px solid rgba(189,132,48,.33); border-radius: 50%; }
.hero-art::before { inset: 2% 5%; animation: drift 12s ease-in-out infinite; }
.hero-art::after { inset: 12% 15%; border-color: rgba(168,61,119,.24); animation: drift 14s ease-in-out infinite reverse; }
.hero-art img, .hero-art video { position: relative; z-index: 2; object-fit: cover; }
.hero-art video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; overflow: hidden; border-radius: clamp(18px, 1.8vw, 27px); background: var(--paper); box-shadow: 0 12px 30px rgba(66,30,61,.09); }
.hero-art video img { width: 100%; height: 100%; object-fit: cover; }
.hero-words { position: absolute; z-index: 3; inset: clamp(20px, 2.4vw, 34px); pointer-events: none; }
.hero-word { position: absolute; display: inline-flex; min-width: clamp(74px, 7vw, 104px); align-items: center; justify-content: center; padding: clamp(7px, .75vw, 10px) clamp(12px, 1.2vw, 18px); border: 1px solid rgba(189,132,48,.38); border-radius: 999px; background: rgba(255,253,250,.9); box-shadow: 0 10px 28px rgba(66,30,61,.12); color: var(--plum); font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.45rem); line-height: 1; letter-spacing: .02em; opacity: 0; transform: translateY(10px) scale(.96); backdrop-filter: blur(9px); transition: opacity .7s ease, transform .7s ease; }
.hero-word.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.hero-word-mind { top: 0; left: 0; }
.hero-word-body { top: 0; right: 0; }
.hero-word-spirit { bottom: 0; left: 0; }
.hero-word-faith { right: 0; bottom: 0; }
.hero-trust { align-self: end; margin-top: clamp(18px, 2.5vw, 34px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.28); }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.4); }
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 19px 0; list-style: none; }
.trust-list li { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--plum); font-size: .82rem; font-weight: 700; letter-spacing: .04em; }
.trust-list li + li { border-left: 1px solid var(--line); }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(189,132,48,.12); }

.card { position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,250,.88); box-shadow: 0 12px 36px rgba(66,30,61,.05); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(189,132,48,.45); box-shadow: var(--shadow); }
.card-number { display: grid; width: 46px; height: 46px; margin-bottom: 34px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: 1.4rem; }
.card p { color: var(--muted); }
.service-card { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card .text-link { align-self: flex-start; }
.service-card::after { position: absolute; width: 150px; height: 150px; right: -75px; bottom: -75px; content: ""; border: 1px solid rgba(168,61,119,.2); border-radius: 50%; }

.journey { counter-reset: journey; }
.journey-step { padding: 24px; text-align: center; }
.journey-step::before { counter-increment: journey; content: "0" counter(journey); color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.journey-step h3 { margin-top: 14px; font-size: 2rem; text-transform: uppercase; letter-spacing: .08em; }
.journey-step p { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.brand-panel { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.brand-panel img { width: 100%; min-height: 450px; object-fit: cover; }
.lotus-panel { position: relative; display: grid; min-height: 540px; place-items: center; overflow: hidden; border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 43%, #fff 0, #fdf4ee 42%, #f3dfe9 100%); }
.lotus-panel::before { position: absolute; width: 70%; aspect-ratio: 1; content: ""; border: 1px solid rgba(189,132,48,.3); border-radius: 50%; }
.lotus-panel img { position: relative; z-index: 1; width: min(450px, 88%); }

.review-card blockquote { margin: 0; color: var(--plum-dark); font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.25; }
.review-card cite { display: block; margin-top: 26px; color: var(--muted); font-size: .82rem; font-style: normal; font-weight: 700; }
.stars { color: var(--gold); letter-spacing: .2em; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.google-g { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: white; background: conic-gradient(#4285f4 0 25%,#34a853 0 45%,#fbbc05 0 68%,#ea4335 0); font-weight: 800; }

.page-hero { overflow: hidden; padding: clamp(80px, 11vw, 150px) 0 clamp(72px, 9vw, 120px); background: linear-gradient(145deg, #fff9f2 0%, #f9e9e9 58%, #f6e8f2 100%); }
.page-hero::after { position: absolute; width: 480px; height: 480px; right: -100px; bottom: -300px; content: ""; border: 1px solid rgba(189,132,48,.3); border-radius: 50%; box-shadow: 0 0 0 45px rgba(189,132,48,.04), 0 0 0 90px rgba(168,61,119,.025); }
.page-hero h1 { max-width: 980px; }
.page-hero .lede { margin-top: 24px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { text-decoration: none; }

.prose { color: var(--fig); }
.prose h2 { margin-top: 2.2em; font-size: clamp(2.3rem, 4vw, 3.5rem); }
.prose h3 { margin-top: 1.8em; font-size: 1.8rem; }
.prose p, .prose ul { color: var(--muted); }
.prose li + li { margin-top: .55em; }
.feature-list { margin: 26px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding: 15px 0 15px 32px; border-bottom: 1px solid var(--line); }
.feature-list li::before { position: absolute; left: 4px; content: "✦"; color: var(--gold); }
.detail-aside { position: sticky; top: 115px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.detail-aside h2 { font-size: 2.4rem; }
.detail-aside .btn { width: 100%; margin-top: 16px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: clamp(42px, 8vw, 100px); align-items: start; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; border: 0; color: var(--plum-dark); background: transparent; cursor: pointer; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.75rem); text-align: left; }
.faq-question::after { content: "+"; color: var(--gold); font-family: var(--sans); font-weight: 300; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 0 24px; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 90px); align-items: start; }
.contact-list { margin: 30px 0 0; padding: 0; list-style: none; }
.contact-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-list a, .contact-list span { display: inline-block; margin-top: 5px; color: var(--plum-dark); font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }
.form-card { padding: clamp(28px, 5vw, 54px); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; color: var(--plum-dark); font-size: .78rem; font-weight: 800; letter-spacing: .04em; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--fig); background: var(--ivory); transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(189,132,48,.1); }
.field-error { display: none; margin-top: 5px; color: #9b253f; font-size: .76rem; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid textarea { border-color: #9b253f; }
.form-status { display: none; margin-top: 18px; padding: 14px; border-radius: 12px; font-size: .88rem; }
.form-status.success { display: block; color: #245a38; background: #e5f3e9; }
.form-status.error { display: block; color: #7e2037; background: #f8e4e8; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.article-grid, .stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.media-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: dense; gap: 22px; margin-top: 48px; }
.media-card { position: relative; min-height: 360px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--plum-dark); box-shadow: var(--shadow); }
.media-card-featured { grid-row: span 2; min-height: 742px; }
.media-card img, .media-card video { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.media-card video { background: var(--plum-dark); }
.media-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 70px 26px 24px; color: white; pointer-events: none; background: linear-gradient(transparent, rgba(45,33,48,.88)); }
.media-card figcaption strong, .media-card figcaption span { display: block; }
.media-card figcaption strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; line-height: 1.05; }
.media-card figcaption span { margin-top: 5px; color: rgba(255,255,255,.76); font-size: .78rem; }
.article-card { display: flex; min-height: 100%; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.article-card .meta { margin-bottom: 14px; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.article-card h2, .article-card h3 { font-size: 2rem; line-height: 1.04; }
.article-card p { color: var(--muted); }
.article-card .text-link { margin-top: auto; padding-top: 12px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.tag-list li { padding: 6px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .7rem; }
.empty-state { grid-column: 1 / -1; padding: 50px; border: 1px dashed rgba(85,38,86,.25); border-radius: var(--radius); text-align: center; }

.cta-band { overflow: hidden; border-radius: var(--radius-lg); padding: clamp(50px, 8vw, 90px); text-align: center; background: radial-gradient(circle at top, #7c3a74, var(--plum-dark) 72%); box-shadow: var(--shadow); }
.cta-band h2 { max-width: 780px; margin-inline: auto; }
.cta-band p { max-width: 600px; margin: 20px auto 0; color: rgba(255,255,255,.72); }
.cta-band .button-row { justify-content: center; }

.site-footer { color: rgba(255,255,255,.72); background: #28162b; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 60px; padding: 76px 0 50px; }
.footer-brand img { width: 120px; margin-bottom: 20px; }
.footer-brand p { max-width: 410px; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 22px; }
.social-link { display: inline-grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(240,211,155,.55); border-radius: 50%; color: var(--gold-light); text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.social-link:hover { color: var(--plum-dark); background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.social-icon-facebook { font-family: Arial, Helvetica, sans-serif; font-size: 1.65rem; font-weight: 700; line-height: 1; transform: translateY(2px); }
.footer-title { margin: 0 0 16px; color: var(--gold-light); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 9px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

.mobile-actions { position: fixed; z-index: 900; right: 12px; bottom: 12px; left: 12px; display: none; grid-template-columns: 1fr 1.35fr; gap: 8px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,249,242,.95); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.mobile-actions .btn { min-height: 46px; padding: 11px 15px; font-size: .78rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes drift { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(2deg); } }

@media (min-width: 981px) and (max-height: 760px) {
  .hero { min-height: calc(100svh - 82px); padding: 16px 0 0; }
  .hero-copy h1 { max-width: 650px; font-size: clamp(3.3rem, 5.25vw, 4.75rem); }
  .hero-copy .lede { margin-top: 14px; font-size: 1rem; }
  .hero-copy .button-row { margin-top: 16px; }
  .hero-art { max-width: 500px; }
  .hero-words { inset: 18px; }
  .hero-word { min-width: 78px; padding: 7px 12px; font-size: 1.05rem; }
  .trust-list { padding: 14px 0; }
}

@media (min-width: 1440px) {
  .hero > .container { width: min(1320px, calc(100vw - 80px)); }
  .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr); }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .hero-grid { grid-template-columns: minmax(0, 1.04fr) minmax(340px, .96fr); gap: 28px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 5.5vw, 4.65rem); }
  .hero-copy .lede { font-size: 1.02rem; }
  .hero-art { border-radius: 28px; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-panel { position: fixed; inset: 82px 0 auto; height: calc(100dvh - 82px); padding: 14px 20px 24px; background: rgba(255,249,242,.99); opacity: 0; visibility: hidden; pointer-events: none; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; transition: opacity .24s ease, visibility .24s ease; }
  .nav-open .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-list { width: min(100%, 620px); align-items: stretch; flex-direction: column; gap: 0; margin-inline: auto; padding-bottom: max(12px, env(safe-area-inset-bottom)); }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a:not(.btn) { display: block; padding: 10px 4px; font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.2; }
  .nav-list .btn { width: 100%; min-height: 48px; margin-top: 14px; }
  .nav-open .mobile-actions { display: none; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: clamp(38px, 6vw, 64px) 0 0; }
  .hero-grid { gap: 34px; }
  .hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .hero-copy h1, .hero-copy .lede { margin-inline: auto; }
  .hero-copy .button-row { justify-content: center; }
  .hero-art { width: min(680px, 100%); margin: 0 auto; }
  .grid-3, .article-grid, .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 660px) {
  :root { --container: min(100% - 28px, 1160px); }
  body { padding-bottom: 78px; }
  .brand-copy { font-size: 1.08rem; }
  .brand img { width: 47px; height: 47px; }
  .nav-shell { min-height: 72px; }
  .nav-panel { inset-block-start: 72px; height: calc(100dvh - 72px); padding: 10px 14px 18px; }
  .nav-list a:not(.btn) { padding: 9px 4px; font-size: 1.12rem; }
  .nav-list .btn { min-height: 46px; margin-top: 10px; }
  .hero { min-height: calc(100svh - 72px); padding: 34px 0 0; }
  .hero-grid { gap: 24px; }
  .hero-copy { text-align: left; }
  .hero-copy h1 { margin-inline: 0; font-size: clamp(2.8rem, 14vw, 3.7rem); }
  .hero-copy .lede { margin: 16px 0 0; font-size: 1rem; }
  .hero-copy .button-row { justify-content: flex-start; margin-top: 20px; }
  .hero-art { padding: 7px; border-radius: 24px; }
  .hero-art video { border-radius: 18px; }
  .hero-words { inset: 12px; }
  .hero-word { min-width: 62px; padding: 6px 9px; font-size: clamp(.88rem, 4vw, 1.05rem); box-shadow: 0 6px 18px rgba(66,30,61,.1); }
  .trust-list { grid-template-columns: 1fr; padding: 14px 0; }
  .hero-trust { margin-top: 26px; }
  .trust-list li { justify-content: center; padding: 9px 12px; text-align: center; }
  .trust-list li + li { border-left: 0; }
  .grid-3, .grid-4, .article-grid, .stories-grid, .field-grid { grid-template-columns: 1fr; }
  .media-gallery { grid-template-columns: 1fr; }
  .media-card, .media-card-featured { grid-row: auto; min-height: 380px; }
  .card { padding: 25px; }
  .service-card { min-height: 280px; }
  .brand-panel img { min-height: 310px; }
  .lotus-panel { min-height: 400px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { display: grid; }
  .cta-band { border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .mobile-actions, .button-row { display: none !important; }
  body { color: black; background: white; }
  .section { padding: 30px 0; }
}
