:root {
  --forest: #173f3a;
  --forest-deep: #102f2b;
  --forest-soft: #2f5d56;
  --terracotta: #c86f5b;
  --terracotta-dark: #a95443;
  --sage: #aebfb8;
  --cream: #f4efe7;
  --paper: #fbf8f2;
  --ink: #1f2927;
  --muted: #697672;
  --line: rgba(31, 41, 39, 0.14);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(16, 47, 43, 0.18);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-shell { position: relative; overflow: hidden; }
.section-soft { background: var(--cream); }
.section-paper { background: var(--paper); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  padding: 11px 0;
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(17,41,37,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 265px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: .02em;
  background: rgba(255,255,255,.06);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { color: var(--white); font-size: 14px; font-weight: 600; }
.brand-copy small { color: rgba(255,255,255,.66); font-size: 11px; margin-top: 4px; letter-spacing: .04em; }
.scrolled .brand-mark { color: var(--forest); border-color: rgba(23,63,58,.25); background: var(--white); }
.scrolled .brand-copy strong { color: var(--forest-deep); }
.scrolled .brand-copy small { color: var(--muted); }

.main-nav { display: flex; align-items: center; gap: 25px; }
.main-nav > a:not(.header-cta) { color: rgba(255,255,255,.78); font-size: 13px; font-weight: 500; }
.main-nav > a:not(.header-cta):hover { color: var(--white); }
.scrolled .main-nav > a:not(.header-cta) { color: var(--forest-deep); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(200,111,91,.28);
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--terracotta-dark); }
.menu-toggle { display: none; }

.hero {
  min-height: 860px;
  padding: 158px 0 90px;
  background:
    radial-gradient(circle at 70% 22%, rgba(196,220,209,.18), transparent 28%),
    linear-gradient(125deg, #11342f 0%, #173f3a 55%, #1e4d46 100%);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.15);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 440px; height: 440px; right: -170px; top: 50px; border: 1px solid rgba(255,255,255,.09); }
.hero-orb-two { width: 260px; height: 260px; left: -100px; bottom: 40px; background: rgba(200,111,91,.08); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 74px; position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 1px; background: var(--terracotta); }
.eyebrow-dark { color: var(--forest-soft); }
.hero h1 {
  max-width: 670px;
  margin: 24px 0 24px;
  font-family: var(--serif);
  font-size: clamp(58px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}
.hero-lead { max-width: 615px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 35px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--terracotta); box-shadow: 0 17px 35px rgba(200,111,91,.28); }
.button-primary:hover { background: var(--terracotta-dark); }
.button-outline { color: var(--forest-deep); border: 1px solid rgba(23,63,58,.25); background: transparent; }
.button-outline:hover { background: var(--forest); color: var(--white); }
.button-light { color: var(--forest-deep); background: var(--paper); box-shadow: 0 18px 38px rgba(9,29,26,.18); }
.availability { color: rgba(255,255,255,.55); font-size: 12px; max-width: 145px; line-height: 1.45; }
.hero-credentials { display: flex; gap: 48px; margin-top: 52px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.13); }
.hero-credentials div { display: flex; flex-direction: column; gap: 4px; }
.hero-credentials strong { font-size: 13px; font-weight: 600; }
.hero-credentials span { color: rgba(255,255,255,.48); font-size: 11px; }
.hero-visual { position: relative; width: 100%; max-width: 520px; justify-self: end; }
.hero-image-frame {
  position: relative;
  height: 625px;
  border-radius: 280px 280px 28px 28px;
  overflow: hidden;
  background: #d8d3c8;
  box-shadow: var(--shadow);
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 34%; }
.hero-image-wash { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 68%, rgba(14,44,40,.28)); pointer-events: none; }
.floating-note {
  position: absolute;
  left: -58px;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 18px;
  background: rgba(249,247,241,.92);
  color: var(--forest-deep);
  box-shadow: 0 20px 48px rgba(8,29,26,.22);
  backdrop-filter: blur(12px);
}
.note-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(200,111,91,.13); color: var(--terracotta-dark); }
.note-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.floating-note div { display: flex; flex-direction: column; line-height: 1.3; }
.floating-note strong { font-size: 12px; }
.floating-note small { color: var(--muted); font-size: 10px; margin-top: 3px; }
.hero-caption { position: absolute; right: -42px; top: 170px; transform: rotate(90deg); color: rgba(255,255,255,.48); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }

.intro-strip { padding: 42px 0; background: var(--forest-deep); color: var(--white); }
.intro-strip-inner { display: grid; grid-template-columns: auto minmax(0,600px) 1fr; align-items: center; gap: 28px; }
.intro-number { color: var(--terracotta); font-family: var(--serif); font-size: 28px; }
.intro-strip p { margin: 0; font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); line-height: 1.1; }
.intro-line { height: 1px; background: rgba(255,255,255,.2); }

.two-column { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.section-heading h2, .approach-content h2, .about-copy h2, .space-copy h2 {
  margin: 20px 0 22px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -.025em;
  line-height: 1.02;
}
.section-heading > p, .space-copy > p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-heading.centered { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.concerns-list { border-top: 1px solid var(--line); }
.concerns-list article { display: grid; grid-template-columns: 46px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.concerns-list article > span { color: var(--terracotta-dark); font-family: var(--serif); font-size: 23px; }
.concerns-list h3 { margin: 0 0 7px; color: var(--forest-deep); font-size: 17px; }
.concerns-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.approach-section { background: var(--forest); color: var(--white); }
.approach-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.approach-quote { position: relative; padding: 58px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.04); }
.quote-mark { position: absolute; top: 22px; left: 33px; color: var(--terracotta); font-family: var(--serif); font-size: 75px; line-height: 1; }
.approach-quote blockquote { margin: 35px 0 24px; font-family: var(--serif); font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; }
.approach-quote p { margin: 0; color: rgba(255,255,255,.53); font-size: 12px; }
.approach-content h2 { color: var(--white); }
.approach-content > p { color: rgba(255,255,255,.65); line-height: 1.8; }
.check-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.8); font-size: 14px; }
.check-list span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: rgba(200,111,91,.14); color: #f2a08e; font-size: 12px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; align-items: center; }
.about-image { position: relative; max-width: 480px; }
.about-image::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(23,63,58,.17); border-radius: var(--radius-lg); }
.about-image img { position: relative; width: 100%; aspect-ratio: .82; object-fit: cover; object-position: center 27%; border-radius: var(--radius-lg); }
.about-badge { position: absolute; right: -46px; bottom: 44px; display: grid; place-items: center; width: 105px; height: 105px; border-radius: 50%; color: var(--white); background: var(--terracotta); text-align: center; font-size: 10px; line-height: 1.45; box-shadow: 0 17px 38px rgba(200,111,91,.28); }
.about-badge strong { font-size: 12px; }
.about-copy h2 { margin-bottom: 8px; }
.about-role { margin: 0 0 30px; color: var(--terracotta-dark); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.about-copy > p:not(.about-role) { color: var(--muted); line-height: 1.8; }
.text-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: var(--forest-deep); font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(23,63,58,.35); padding-bottom: 4px; }

.modalities-section { background: var(--forest-deep); color: var(--white); }
.modalities-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-lg); overflow: hidden; }
.modality-card { position: relative; min-height: 360px; padding: 42px; background: rgba(255,255,255,.025); }
.modality-card + .modality-card { border-left: 1px solid rgba(255,255,255,.13); }
.modality-index { position: absolute; top: 25px; right: 27px; color: rgba(255,255,255,.25); font-family: var(--serif); font-size: 24px; }
.modality-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(200,111,91,.13); color: #e99a86; margin-bottom: 65px; }
.modality-icon svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.modality-card h3 { margin: 0 0 15px; font-family: var(--serif); font-weight: 400; font-size: 34px; }
.modality-card p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.75; }

.space-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 80px; }
.space-copy address { margin: 26px 0 30px; padding-left: 18px; border-left: 2px solid var(--terracotta); color: var(--forest-deep); font-size: 14px; line-height: 1.8; }
.gallery { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 260px 260px; gap: 15px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius-md); background: #ddd8cf; }
.gallery-main { grid-row: 1 / span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery-main img { object-position: center 60%; }
.gallery figure:nth-child(2) img { object-position: center 55%; }
.gallery figure:nth-child(3) img { object-position: center; }

.steps-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.step { padding: 34px 31px; border-top: 1px solid var(--line); background: rgba(255,255,255,.35); }
.step span { display: inline-block; margin-bottom: 52px; color: var(--terracotta-dark); font-family: var(--serif); font-size: 25px; }
.step h3 { margin: 0 0 12px; color: var(--forest-deep); font-size: 17px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.faq-section { background: var(--forest); color: var(--white); }
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.faq-section .section-heading > p { color: rgba(255,255,255,.58); }
.faq-list { border-top: 1px solid rgba(255,255,255,.15); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.15); }
.faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; background: transparent; color: var(--white); cursor: pointer; text-align: left; font-size: 15px; font-weight: 600; }
.faq-item button i { position: relative; flex: 0 0 26px; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 1px; background: var(--white); transform: translate(-50%,-50%); transition: transform .2s ease; }
.faq-item button i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: translate(-50%,-50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { overflow: hidden; margin: 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding: 0 42px 24px 0; }

.final-cta { padding: 130px 0; background: var(--terracotta); color: var(--white); text-align: center; }
.final-cta-inner { max-width: 880px; }
.final-kicker { display: block; margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.final-cta h2 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(52px, 6vw, 80px); line-height: 1; letter-spacing: -.025em; }
.final-cta p { max-width: 600px; margin: 25px auto 33px; color: rgba(255,255,255,.76); }

.site-footer { padding: 70px 0 25px; background: #0a2521; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 70px; }
.brand-footer .brand-mark { color: var(--white); }
.footer-grid > div:first-child > p { max-width: 420px; color: rgba(255,255,255,.48); font-size: 13px; margin-top: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 13px; }
.footer-links strong { margin-bottom: 9px; color: rgba(255,255,255,.92); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.5); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.34); font-size: 11px; }
.mobile-sticky-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-small { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

:focus-visible { outline: 3px solid rgba(237,155,134,.9); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-header { background: rgba(16,47,43,.88); backdrop-filter: blur(14px); }
  .site-header.scrolled { background: rgba(251,248,242,.95); }
  .menu-toggle { display: grid; place-items: center; gap: 5px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; background: transparent; }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: var(--white); transition: transform .2s ease; }
  .scrolled .menu-toggle { border-color: rgba(23,63,58,.22); }
  .scrolled .menu-toggle span { background: var(--forest); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .main-nav { position: fixed; left: 20px; right: 20px; top: 78px; display: grid; gap: 0; padding: 14px; border-radius: 22px; background: var(--paper); box-shadow: 0 25px 60px rgba(10,37,33,.2); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav > a:not(.header-cta), .scrolled .main-nav > a:not(.header-cta) { color: var(--forest-deep); padding: 13px 10px; border-bottom: 1px solid var(--line); }
  .header-cta { margin-top: 12px; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid, .two-column, .approach-grid, .about-grid, .space-grid, .faq-grid { grid-template-columns: 1fr; gap: 65px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { justify-self: center; max-width: 580px; }
  .hero-image-frame { height: 650px; }
  .about-image { margin-inline: auto; }
  .modalities-grid { grid-template-columns: 1fr; }
  .modality-card + .modality-card { border-left: 0; border-top: 1px solid rgba(255,255,255,.13); }
  .modality-card { min-height: auto; }
  .modality-icon { margin-bottom: 35px; }
  .gallery { min-height: 570px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .site-header { padding: 11px 0; }
  .brand { min-width: 0; gap: 9px; }
  .brand-mark { width: 39px; height: 39px; font-size: 17px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 9px; }
  .hero { padding: 124px 0 75px; }
  .hero-grid { gap: 52px; }
  .hero h1 { margin-top: 18px; font-size: clamp(48px, 15vw, 64px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 13px; }
  .button { width: 100%; }
  .availability { max-width: none; text-align: center; }
  .hero-credentials { gap: 24px; justify-content: space-between; margin-top: 35px; }
  .hero-image-frame { height: 480px; border-radius: 220px 220px 24px 24px; }
  .hero-image-frame img { object-position: 50% 30%; }
  .floating-note { left: 12px; right: 12px; bottom: 15px; width: auto; }
  .hero-caption { display: none; }
  .intro-strip { padding: 30px 0; }
  .intro-strip-inner { grid-template-columns: auto 1fr; gap: 17px; }
  .intro-line { display: none; }
  .intro-strip p { font-size: 25px; }
  .two-column, .approach-grid, .about-grid, .space-grid, .faq-grid { gap: 48px; }
  .section-heading h2, .approach-content h2, .about-copy h2, .space-copy h2 { font-size: 47px; }
  .concerns-list article { grid-template-columns: 36px 1fr; gap: 12px; }
  .approach-quote { padding: 37px 27px; }
  .quote-mark { left: 20px; }
  .approach-quote blockquote { margin-top: 37px; font-size: 34px; }
  .about-image { width: calc(100% - 20px); }
  .about-image::before { inset: 14px -14px -14px 14px; }
  .about-badge { right: -13px; bottom: 30px; width: 88px; height: 88px; }
  .section-heading.centered { margin-bottom: 40px; text-align: left; }
  .section-heading.centered .eyebrow { justify-content: flex-start; }
  .modality-card { padding: 32px 26px; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 180px; min-height: 0; gap: 10px; }
  .gallery-main { grid-column: 1 / -1; grid-row: auto; }
  .gallery figure { border-radius: 17px; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step span { margin-bottom: 25px; }
  .faq-item.open .faq-answer > p { padding-right: 0; }
  .final-cta { padding: 90px 0 110px; }
  .final-cta h2 { font-size: 54px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-bottom: 92px; }
  .mobile-sticky-cta { display: flex; align-items: center; justify-content: center; position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; min-height: 54px; padding: 0 20px; border-radius: 999px; color: var(--white); background: var(--terracotta); box-shadow: 0 18px 45px rgba(15,43,39,.28); font-size: 14px; font-weight: 700; }
}

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