/* ==========================================================================
   Cozy and Glow — design system
   Palette sampled directly from CG_logo.jpeg (bg #F7EAE2, copper, rose gold)
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --cream:        #F7EAE2;   /* exact logo background */
  --cream-lift:   #FDF5F0;
  --cream-deep:   #F0DCD1;
  --sand:         #E7CFC1;
  --cocoa:        #3A2620;
  --cocoa-2:      #4E362D;
  --ink:          #57403A;
  --ink-soft:     #7A5F56;
  --copper:       #8A5A3B;
  --rose:         #C5876C;
  --rose-lift:    #E3B9A4;
  --sage:         #7F8F73;
  --white:        #FFFDFC;

  --gold: linear-gradient(104deg, #8A5A3B 0%, #C5876C 32%, #F0CDB6 52%, #B87B58 74%, #8A5A3B 100%);
  --hair: 1px solid rgba(138, 90, 59, .18);
  --hair-strong: 1px solid rgba(138, 90, 59, .32);

  --shadow-sm: 0 2px 10px rgba(58, 38, 32, .05);
  --shadow-md: 0 18px 44px -22px rgba(58, 38, 32, .34);
  --shadow-lg: 0 40px 90px -40px rgba(58, 38, 32, .45);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Avenir Next", "Segoe UI", sans-serif;
  --script:"Parisienne", "Snell Roundhand", cursive;

  --page: min(1220px, 100% - 3rem);
  --radius: 4px;
  --arch: 999px 999px 6px 6px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* grain — sits over everything, ignores pointer */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: .32; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

::selection { background: var(--rose-lift); color: var(--cocoa); }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--cocoa);
  line-height: 1.06;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(3rem, 7.6vw, 6.1rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); line-height: 1.2; }
h4 { font-size: 1.2rem; line-height: 1.3; }
p  { max-width: 62ch; }

.script { font-family: var(--script); font-weight: 400; text-transform: none; letter-spacing: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: .688rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex; align-items: center; gap: .85rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; flex: none;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after {
  content: ""; width: 34px; height: 1px; flex: none;
  background: linear-gradient(270deg, transparent, var(--rose));
}

.lead { font-size: clamp(1.02rem, 1.35vw, 1.16rem); color: var(--ink); }
.muted { color: var(--ink-soft); }
.small { font-size: .85rem; line-height: 1.62; }
.fine { font-size: .78rem; line-height: 1.6; color: var(--ink-soft); }

/* ---------- layout ---------- */
.wrap { width: var(--page); margin-inline: auto; }
section { position: relative; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.stack > * + * { margin-top: 1.15rem; }
.center { text-align: center; }
/* p carries max-width: 62ch, so a centred <p> needs auto side margins too —
   without them the 62ch box stays flush left and its contents centre inside it. */
.center p, p.center { margin-inline: auto; }

/* hairline arc divider echoing the logo's broken circle */
.arc-rule {
  height: 62px; width: min(560px, 82%); margin: 0 auto;
  border-top: 1px solid rgba(138, 90, 59, .3);
  border-radius: 50% / 100% 100% 0 0;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.9rem;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  text-decoration: none; border-radius: 2px; position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .4s, color .4s, border-color .4s;
}
.btn svg { width: 14px; height: 14px; transition: transform .45s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--cocoa); color: var(--cream); box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: #2C1D18; }

.btn-gold { color: var(--white); background: var(--gold); background-size: 220% 100%; box-shadow: var(--shadow-md); }
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost { border: var(--hair-strong); color: var(--copper); }
.btn-ghost:hover { background: rgba(197, 135, 108, .1); transform: translateY(-2px); }

.btn-light { border: 1px solid rgba(247, 234, 226, .38); color: var(--cream); }
.btn-light:hover { background: rgba(247, 234, 226, .1); transform: translateY(-2px); }

.link-u {
  text-decoration: none; color: var(--copper);
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .55rem;
  padding-bottom: 4px; background-image: linear-gradient(var(--rose), var(--rose));
  background-size: 0% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .5s var(--ease);
}
.link-u:hover { background-size: 100% 1px; }

/* ---------- header ---------- */
.topbar {
  background: var(--cocoa); color: var(--cream);
  font-size: .69rem; letter-spacing: .22em; text-transform: uppercase;
  text-align: center; padding: .62rem 1rem;
}
.topbar b { font-weight: 400; color: var(--rose-lift); }

.nav-outer {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 234, 226, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background-color .4s, box-shadow .4s;
}
.nav-outer.stuck { border-bottom-color: rgba(138, 90, 59, .18); box-shadow: 0 10px 30px -26px rgba(58,38,32,.7); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: .95rem 0; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  object-position: center; transform: scale(1.42); /* crop the logo's whitespace */
}
.brand-mark { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex: none; border: 1px solid rgba(138,90,59,.22); }
.brand-txt { line-height: 1.15; }
.brand-txt .n { font-family: var(--serif); font-size: 1.12rem; color: var(--cocoa); letter-spacing: .06em; display: block; }
.brand-txt .t { font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--copper); }

.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; padding: 0; }
.nav-links a {
  text-decoration: none; font-size: .74rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--rose); transition: width .45s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--copper); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn { padding: .78rem 1.4rem; }

.burger { display: none; width: 42px; height: 42px; border: var(--hair); border-radius: 2px; place-items: center; }
.burger span { display: block; width: 17px; height: 1px; background: var(--cocoa); margin: 3.5px 0; transition: transform .4s var(--ease), opacity .3s; }
.nav-open .burger span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 6vw, 6rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin: 1.5rem 0 0; }
.hero h1 em { font-style: italic; color: var(--copper); }
.hero .lead { margin-top: 1.6rem; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }

.hero-figure { position: relative; display: grid; place-items: center; padding: 1.5rem; }
.hero-arch {
  position: relative; width: min(430px, 100%); aspect-ratio: 1 / 1.14;
  border-radius: var(--arch); overflow: hidden;
  border: 1px solid rgba(138, 90, 59, .26);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-arch::after {
  content: ""; position: absolute; inset: 10px; border-radius: var(--arch);
  border: 1px solid rgba(197, 135, 108, .3); pointer-events: none;
}
.ring {
  position: absolute; inset: -6%; border-radius: 50%;
  border: 1px solid rgba(197, 135, 108, .42);
  border-right-color: transparent; border-bottom-color: transparent;
  animation: spin 44s linear infinite;
}
.ring.b { inset: -12%; border: 1px solid rgba(138, 90, 59, .2); border-left-color: transparent; border-top-color: transparent; animation-duration: 66s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.sprig { position: absolute; color: var(--rose); opacity: .55; pointer-events: none; }
.sprig-1 { left: -10px; bottom: 6%; width: 130px; }
.sprig-2 { right: -6px; top: 4%; width: 96px; transform: scaleX(-1) rotate(12deg); }

.float-card {
  position: absolute; background: var(--cream-lift); border: var(--hair);
  border-radius: 3px; padding: .8rem 1.1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem; backdrop-filter: blur(4px);
}
.float-card .k { font-family: var(--serif); font-size: 1.5rem; color: var(--cocoa); line-height: 1; }
.float-card .v { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.float-a { left: -2%; top: 16%; animation: bob 7s ease-in-out infinite; }
.float-b { right: -3%; bottom: 12%; animation: bob 8.5s ease-in-out infinite .8s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- marquee trust strip ---------- */
.strip { border-block: var(--hair); background: rgba(253, 245, 240, .55); }
.strip-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.strip-item { padding: 1.5rem 1rem; display: grid; gap: .35rem; justify-items: center; }
.strip-item + .strip-item { border-left: var(--hair); }
.strip-item svg { width: 20px; height: 20px; color: var(--copper); }
.strip-item .t { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cocoa); }
.strip-item .d { font-size: .76rem; color: var(--ink-soft); }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream-lift); border: var(--hair); border-radius: var(--radius);
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .5s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .6s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(138, 90, 59, .3); }
.card:hover::before { transform: scaleX(1); }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .93rem; }

.icon-arch {
  width: 54px; height: 62px; display: grid; place-items: center; margin-bottom: 1.25rem;
  border: 1px solid rgba(138, 90, 59, .28); border-radius: var(--arch);
  color: var(--copper); background: var(--cream);
}
.icon-arch svg { width: 24px; height: 24px; }

.tag-list { list-style: none; padding: 0; margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-list li {
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  border: var(--hair); border-radius: 100px; padding: .3rem .75rem; color: var(--ink-soft);
}

/* ---------- dark band ---------- */
.dark {
  background: var(--cocoa); color: rgba(247, 234, 226, .82);
  position: relative; overflow: hidden;
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--cream); }
.dark .eyebrow { color: var(--rose-lift); }
.dark .eyebrow::before { background: linear-gradient(90deg, transparent, var(--rose)); }
.dark .eyebrow.centered::after { background: linear-gradient(270deg, transparent, var(--rose)); }
.dark .lead { color: rgba(247, 234, 226, .84); }
.dark .muted, .dark .fine { color: rgba(247, 234, 226, .6); }
.dark strong { color: var(--cream); font-weight: 400; }
.dark::before {
  content: ""; position: absolute; width: 780px; height: 780px; border-radius: 50%;
  top: -34%; right: -14%; pointer-events: none;
  background: radial-gradient(circle, rgba(197, 135, 108, .3), transparent 66%);
}
.dark::after {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  bottom: -40%; left: -12%; pointer-events: none;
  background: radial-gradient(circle, rgba(127, 143, 115, .16), transparent 68%);
}
.dark .wrap { position: relative; z-index: 1; }

/* ---------- panels (bordered cards for use inside a dark band) ---------- */
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3.5rem; align-items: start; }
.panel {
  border: 1px solid rgba(247, 234, 226, .18); border-radius: var(--radius);
  background: rgba(247, 234, 226, .045); padding: 2rem 1.8rem;
  transition: transform .55s var(--ease), border-color .5s, background-color .5s;
}
.panel:hover { transform: translateY(-6px); border-color: rgba(227, 185, 164, .5); background: rgba(247, 234, 226, .075); }
.panel h3 { margin-bottom: .6rem; }
.panel p { font-size: .93rem; color: rgba(247, 234, 226, .8); }

/* ---------- comparison table ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: var(--hair); border-radius: var(--radius); background: var(--cream-lift); }
.cmp { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .9rem; }
.cmp th, .cmp td { padding: .95rem 1.15rem; text-align: left; border-bottom: var(--hair); }
.cmp thead th {
  font-family: var(--sans); font-weight: 400; font-size: .68rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--copper);
  border-bottom: var(--hair-strong); white-space: nowrap;
}
.cmp tbody th { font-family: var(--sans); font-weight: 400; color: var(--cocoa); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp tbody tr:hover { background: rgba(227, 185, 164, .16); }
.cmp .hl { background: rgba(227, 185, 164, .2); }
.cmp thead .hl { color: var(--cocoa); }
.cmp .yes { color: var(--copper); }
.cmp .no { color: rgba(122, 95, 86, .5); }

/* ---------- marker lists ---------- */
.tick, .cross { list-style: none; padding: 0; }
.tick li, .cross li { position: relative; padding-left: 1.6rem; font-size: .93rem; }
.tick li::before, .cross li::before {
  position: absolute; left: 0; top: -.02em; font-size: .95rem; line-height: inherit;
}
.tick li::before { content: "✓"; color: var(--copper); }
.cross li::before { content: "—"; color: rgba(122, 95, 86, .55); }

/* ---------- steps ---------- */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3.5rem; }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: s; content: "0" counter(s);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(138, 90, 59, .45);
}
.step::after {
  content: ""; position: absolute; top: 1.35rem; left: 3.6rem; right: -1.6rem; height: 1px;
  background: linear-gradient(90deg, rgba(138,90,59,.28), transparent);
}
.steps .step:last-child::after { display: none; }
.step h4 { margin-bottom: .5rem; }
.step p { font-size: .93rem; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split-media { position: relative; }
.frame-arch {
  border-radius: var(--arch); overflow: hidden; border: 1px solid rgba(138, 90, 59, .26);
  aspect-ratio: 4 / 4.6; background: var(--cream-deep); box-shadow: var(--shadow-md);
  display: grid; place-items: center; padding: 2rem;
}
.frame-arch img {
  width: 86%; border-radius: 2px;
  border: 1px solid rgba(138, 90, 59, .18);
  box-shadow: 0 22px 50px -28px rgba(58, 38, 32, .55);
}

/* ---------- quote ---------- */
.quote { text-align: center; }
.quote blockquote {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.28;
  color: var(--cocoa); max-width: 20ch; margin: 1.6rem auto 0; font-style: italic;
}

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 3rem auto 0; }
.faq details { border-top: var(--hair); }
.faq details:last-of-type { border-bottom: var(--hair); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem .5rem 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  font-family: var(--serif); font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: var(--cocoa);
  transition: color .35s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--copper); }
.faq summary .pm { position: relative; width: 14px; height: 14px; flex: none; }
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; background: var(--copper); transition: transform .45s var(--ease);
}
.faq summary .pm::before { top: 50%; left: 0; width: 14px; height: 1px; margin-top: -.5px; }
.faq summary .pm::after { left: 50%; top: 0; width: 1px; height: 14px; margin-left: -.5px; }
.faq details[open] summary .pm::after { transform: rotate(90deg); opacity: 0; }
.faq details > div { padding: 0 3rem 1.7rem 0; animation: fade .5s var(--ease); }
.faq details > div p { font-size: .95rem; }
@keyframes fade { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- contact / info table ---------- */
.info-card {
  background: var(--cream-lift); border: var(--hair); border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.6rem);
}
.info-rows { display: grid; gap: 0; margin-top: .5rem; }
.info-rows > div { display: grid; grid-template-columns: 170px 1fr; gap: 1rem; padding: .9rem 0; border-bottom: var(--hair); }
.info-rows > div:last-child { border-bottom: 0; }
.info-rows dt, .info-rows .k {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); padding-top: .25rem;
}
.info-rows dd, .info-rows .v { margin: 0; color: var(--cocoa); font-size: .96rem; }
.info-rows a { color: var(--copper); text-decoration: none; border-bottom: 1px solid rgba(197,135,108,.4); }
.info-rows a:hover { color: var(--cocoa); }

/* ---------- cta band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-top: 1.4rem; }
.cta-band .btn-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* ---------- footer ---------- */
.footer { background: var(--cocoa); color: rgba(247, 234, 226, .66); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.footer h4 { color: var(--cream); font-family: var(--sans); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 400; margin-bottom: 1.15rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer a { color: rgba(247, 234, 226, .66); text-decoration: none; font-size: .88rem; transition: color .35s; }
.footer a:hover { color: var(--rose-lift); }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer .brand-txt .n { color: var(--cream); }
.footer .brand-mark { border-color: rgba(247,234,226,.2); }
.footer-bot {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(247, 234, 226, .14);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between;
  font-size: .78rem;
}
.pay { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.pay span {
  border: 1px solid rgba(247, 234, 226, .22); border-radius: 3px; padding: .28rem .6rem;
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(247,234,226,.72);
}

/* ---------- legal / doc pages ---------- */
.doc-head { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 3vw, 3rem); border-bottom: var(--hair); }
.doc-head h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
.doc-head .updated { margin-top: 1.2rem; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.doc { display: grid; grid-template-columns: 230px 1fr; gap: clamp(2rem, 5vw, 4.5rem); padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem); }
.toc { position: sticky; top: 110px; align-self: start; }
.toc ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.toc a { text-decoration: none; font-size: .82rem; color: var(--ink-soft); transition: color .3s, padding-left .3s; display: block; }
.toc a:hover { color: var(--copper); padding-left: 5px; }
.doc-body h2 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-top: 2.8rem; scroll-margin-top: 110px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body h3 { font-size: 1.15rem; margin-top: 1.8rem; }
.doc-body p, .doc-body li { font-size: .96rem; max-width: 72ch; }
.doc-body p + p, .doc-body ul, .doc-body ol { margin-top: .9rem; }
.doc-body ul, .doc-body ol { padding-left: 1.2rem; display: grid; gap: .5rem; }
.doc-body li::marker { color: var(--rose); }
.doc-body strong { font-weight: 500; color: var(--cocoa); }
.doc-body a { color: var(--copper); }
.callout {
  border-left: 2px solid var(--rose); background: rgba(227, 185, 164, .18);
  padding: 1.1rem 1.4rem; margin-top: 1.5rem; border-radius: 0 3px 3px 0;
}
.callout p { font-size: .9rem; max-width: none; }

/* placeholder highlighter — remove the rule once real details are filled in */
.ph { background: rgba(197, 135, 108, .16); border-bottom: 1px dashed var(--rose); padding: 0 .18em; }

/* ---------- reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; } .rv-d4 { transition-delay: .32s; }
.rv-d5 { transition-delay: .4s; }  .rv-d6 { transition-delay: .48s; }

/* page-load stagger */
.pl { opacity: 0; transform: translateY(20px); animation: rise .95s var(--ease) forwards; }
.pl-1 { animation-delay: .1s; } .pl-2 { animation-delay: .22s; } .pl-3 { animation-delay: .34s; }
.pl-4 { animation-delay: .46s; } .pl-5 { animation-delay: .58s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- focus ---------- */
:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; border-radius: 2px; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  :root { --page: min(1220px, 100% - 2.4rem); }
  .nav-links {
    position: fixed; inset: 0 0 auto; top: var(--nav-h, 74px);
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: var(--hair);
    padding: 1rem 1.2rem 1.6rem; box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links li { width: 100%; border-bottom: var(--hair); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: .95rem 0; font-size: .82rem; }
  .burger { display: grid; }
  .nav-cta .btn { display: none; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .hero-arch { width: min(330px, 78%); }
  .float-a { left: 0; } .float-b { right: 0; }
  .strip-row { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: 0; }
  .strip-item:nth-child(n+3) { border-top: var(--hair); }
  .g-3, .panels, .steps, .split, .g-2 { grid-template-columns: 1fr; }
  .steps { gap: 2rem; }
  .step::after { display: none; }
  .doc { grid-template-columns: 1fr; }
  .toc { position: static; border: var(--hair); border-radius: var(--radius); padding: 1.2rem 1.4rem; background: var(--cream-lift); }
}
@media (max-width: 620px) {
  :root { --page: min(1220px, 100% - 2rem); }
  h1 { font-size: clamp(2.5rem, 12vw, 3.4rem); }
  .strip-row { grid-template-columns: 1fr; }
  .strip-item + .strip-item { border-left: 0; border-top: var(--hair); }
  .footer-grid { grid-template-columns: 1fr; }
  .info-rows > div { grid-template-columns: 1fr; gap: .2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: 100%; }
  .float-card { display: none; }
  .faq details > div { padding-right: 0; }
}

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

@media print {
  .nav-outer, .topbar, .footer, .burger { display: none; }
  body { background: #fff; }
  body::after { display: none; }
}
