/* ============================================================
   AURELIA — patient advocacy demo site
   Design study by DalkTek. Fictional brand; portfolio use only.
   Type: Fraunces (display) / Lato (body) / Source Serif 4 (accents)
   ============================================================ */

:root {
  --cream: #faf5e9;
  --cream-2: #fcfaf2;
  --paper: #f4f8f7;
  --sage: #afc8bf;
  --sage-soft: #dbe7e2;
  --green: #285e50;
  --green-deep: #1d4339;
  --green-ink: #122b23;
  --night: #0f1d18;
  --night-2: #101010;
  --gold: #dcad54;
  --gold-light: #e9cc95;
  --gold-pale: #f6e8cb;
  --ink: #101010;
  --ink-soft: #3c4a45;
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Lato", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;

  --radius-card: 16px;
  --radius-big: 40px;
  --shadow-card: 0 12px 40px rgba(16, 32, 26, 0.12);
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--night);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.container-wide { width: min(1360px, 100% - 40px); margin-inline: auto; }

/* ---------- type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 340;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 60;
}
.h1 { font-size: clamp(38px, 4.6vw, 60px); }
.h2 { font-size: clamp(30px, 3.4vw, 44px); }
.h3 { font-size: clamp(22px, 2.2vw, 28px); }
.accent-gold { color: var(--gold-light); font-style: italic; font-weight: 300; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold);
}
.lede { font-size: 17px; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 10px; border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: var(--night-2); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 10px 26px rgba(220, 173, 84, .35); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #2f6f5f; box-shadow: 0 10px 26px rgba(29, 67, 57, .35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream-2);
  border-bottom: 1px solid rgba(16,16,16,.06);
}
.nav-bar {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 28px;
}
.logo {
  font-family: var(--font-display); font-weight: 420; font-size: 30px;
  color: var(--green-deep); letter-spacing: .01em; line-height: 1;
  font-variation-settings: "SOFT" 80;
}
.logo:hover { color: var(--green); }
.nav-menu { display: flex; align-items: center; gap: 6px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  padding: 10px 12px; border-radius: 8px;
}
.nav-link:hover { background: rgba(40, 94, 80, .07); color: var(--green-deep); }
.nav-link .chev { transition: transform .2s ease; width: 10px; height: 10px; }
.nav-item.open .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 300px; background: var(--white);
  border-radius: 14px; box-shadow: 0 24px 60px rgba(16, 32, 26, .18);
  border: 1px solid rgba(16,16,16,.05);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 12px 14px; border-radius: 10px;
}
.dropdown a:hover { background: var(--paper); }
.dropdown a b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 700; }
.dropdown a span { font-size: 13px; color: var(--ink-soft); }

.nav-right { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav-hours { text-align: right; line-height: 1.35; }
.nav-hours small { display: block; font-size: 11.5px; color: var(--ink-soft); }
.nav-hours a { font-size: 14px; font-weight: 700; color: var(--green-deep); display: inline-flex; align-items: center; gap: 6px; }
.nav-hours a:hover { color: var(--green); }
.nav-divider { width: 1px; height: 26px; background: rgba(16,16,16,.15); }
.nav-signin { font-size: 14.5px; font-weight: 700; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; }
.nav-signin:hover { color: var(--green-deep); }
.btn-nav { padding: 12px 22px; border-radius: 10px; font-size: 14.5px; }

.hamburger { display: none; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-ink); margin: 5px 0; transition: .25s ease; }
.mobile-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--cream-2); padding: 28px 24px; overflow-y: auto;
}
.mobile-open .mobile-menu { display: block; }
.mobile-menu a { display: block; padding: 14px 4px; font-size: 18px; font-weight: 600; border-bottom: 1px solid rgba(16,16,16,.07); }
.mobile-menu .mm-sub { font-size: 15px; font-weight: 400; padding-left: 18px; color: var(--ink-soft); }
.mobile-menu .btn { margin-top: 22px; width: 100%; justify-content: center; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% 108%, rgba(40, 94, 80, .55), transparent 60%),
    radial-gradient(900px 420px at -6% -30%, rgba(40, 94, 80, .32), transparent 60%),
    linear-gradient(175deg, #14261f 0%, #10221b 55%, #163229 100%);
  color: var(--white);
  padding: 96px 0 210px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.86 0 0 0 0 0.8 0 0 0 0 0.58 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero h1 { margin-bottom: 22px; }
.hero .sub { font-size: 16.5px; color: rgba(255,255,255,.82); max-width: 460px; }
.hero .sub b { color: var(--white); display: block; margin-top: 4px; }
.hero .btn { margin-top: 30px; }
.hero-proof { display: flex; align-items: center; gap: 18px; margin-top: 34px; flex-wrap: wrap; }
.avatar-stack { display: flex; align-items: center; }
.avatar-stack .av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #14261f; margin-left: -9px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 12px; color: var(--green-ink);
}
.avatar-stack .av:first-child { margin-left: 0; }
.hero-proof .stat { font-size: 13.5px; color: rgba(255,255,255,.85); }
.hero-proof .stat b { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--white); }
.proof-divider { width: 1px; height: 26px; background: rgba(255,255,255,.25); }
.rating { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.9); }
.rating b { font-size: 14px; }
.rating .star { color: var(--gold); font-size: 15px; }

.hero-art { position: absolute; right: 0; bottom: 40px; width: 46%; max-width: 660px; opacity: .95; pointer-events: none; }
.hero-sparkle { position: absolute; top: 90px; right: 8%; width: 26px; opacity: .9; animation: twinkle 4s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity:.45; transform: scale(.9);} 50% { opacity:1; transform: scale(1.05);} }

.hero-wave { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 1; }
.hero-wave svg { width: 100%; height: 150px; display: block; }

/* ---------- video section ---------- */
.section-video {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 480px at 50% 0%, rgba(40,94,80,.25), transparent 60%), #0c1310;
  color: var(--white); padding: 110px 0 130px;
}
.watermark {
  position: absolute; top: 34%; left: 8%;
  font-family: var(--font-display); font-size: 220px; font-weight: 400;
  color: rgba(233, 204, 149, .05); filter: blur(6px);
  pointer-events: none; user-select: none; line-height: 1;
}
.video-grid { display: grid; grid-template-columns: 1fr 480px; gap: 70px; align-items: center; position: relative; z-index: 2; }
.video-copy h2 span.gold { color: var(--gold-light); }
.video-copy p { margin: 18px 0 30px; color: rgba(255,255,255,.8); max-width: 380px; }

.video-card {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(233,204,149,.25);
  background: linear-gradient(160deg, #23433a 0%, #16302a 55%, #0e211c 100%);
  aspect-ratio: 480/560; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.video-card .vc-face { position: absolute; inset: 0; display: grid; place-items: center; }
.play-ring {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  display: grid; place-items: center; transition: transform .2s ease, background .2s ease;
}
.video-card:hover .play-ring { transform: scale(1.08); background: rgba(220,173,84,.35); }
.play-ring::after {
  content: ""; border-style: solid; border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff; margin-left: 4px;
}
.vc-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 24px;
  background: linear-gradient(transparent, rgba(5, 10, 8, .88) 55%);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
}
.vc-bottom .eyebrow { color: var(--gold-light); }
.vc-bottom h3 { font-family: var(--font-body); font-weight: 800; font-size: 20px; margin: 6px 0 4px; }
.vc-bottom p { font-size: 13.5px; color: rgba(255,255,255,.75); }
.vc-pill {
  flex-shrink: 0; font-size: 12.5px; font-weight: 700; color: var(--gold-light);
  border: 1px solid rgba(233,204,149,.5); border-radius: 999px; padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,.25);
}

/* ---------- stories (testimonials) ---------- */
.section-stories {
  background: var(--cream); border-radius: var(--radius-big);
  margin: 0 12px; padding: 90px 0 80px; position: relative; z-index: 3;
}
.section-stories h2 { text-align: center; margin-bottom: 54px; }
.carousel { position: relative; overflow: hidden; }
.car-track { display: flex; gap: 24px; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.story-card {
  flex: 0 0 min(720px, 92%);
  background: #eef2ec; border-radius: 18px; padding: 26px;
  display: grid; grid-template-columns: 220px 1fr; gap: 26px; align-items: center;
}
.story-photo {
  width: 100%; aspect-ratio: 1/1.05; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 64px; color: var(--cream);
}
.story-quote { font-size: 17.5px; line-height: 1.55; color: #21302b; }
.story-stars { color: var(--gold); letter-spacing: 3px; margin: 14px 0 6px; font-size: 15px; }
.story-name { font-weight: 800; font-size: 15.5px; }
.story-tag { font-size: 12.5px; color: var(--ink-soft); }

.car-controls { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.car-count { font-family: var(--font-display); font-size: 22px; color: var(--green-deep); min-width: 56px; }
.car-count sup { font-size: 13px; color: var(--ink-soft); }
.car-progress { flex: 1; height: 1px; background: rgba(16,16,16,.15); position: relative; }
.car-progress .bar { position: absolute; top: -1px; left: 0; height: 3px; background: var(--green); transition: width .4s ease, left .4s ease; }
.car-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--green-deep); color: var(--white); font-size: 17px;
  display: grid; place-items: center; transition: background .2s, transform .2s;
}
.car-btn:hover { background: var(--green); transform: scale(1.06); }
.car-btn:disabled { opacity: .35; pointer-events: none; }
.stories-cta { text-align: center; margin-top: 44px; }

/* ---------- how it works ---------- */
.section-how { background: var(--night); color: var(--white); padding: 130px 0 110px; margin-top: -60px; position: relative; }
.section-how h2 { text-align: center; margin-bottom: 70px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.how-circle {
  aspect-ratio: 1; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 30% 22%, #35695b 0%, #1f4a3e 45%, #12271f 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 13%;
  transition: transform .3s ease;
}
.how-circle:hover { transform: translateY(-8px); }
.how-circle::before {
  content: ""; position: absolute; inset: 10px; border-radius: 50%;
  border: 1px solid rgba(233, 204, 149, .35);
}
.how-num {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
  color: var(--night-2); font-weight: 800; font-size: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.how-circle h3 { font-family: var(--font-display); font-weight: 380; font-size: clamp(21px, 1.9vw, 26px); margin-bottom: 12px; }
.how-circle p { font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.55; max-width: 240px; }
.how-cta { text-align: center; margin-top: 64px; }

/* ---------- your care ---------- */
.section-care { background: var(--cream); border-radius: var(--radius-big); margin: 0 12px; padding: 110px 0; position: relative; z-index: 3; }
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.care-copy h2 { color: var(--ink); margin-bottom: 16px; }
.care-copy p { color: var(--ink-soft); max-width: 400px; margin-bottom: 28px; }

.phone-stage { position: relative; display: flex; justify-content: center; padding: 30px 0; }
.phone {
  width: 300px; border-radius: 44px; background: #0d0d0f;
  padding: 12px; box-shadow: 0 40px 90px rgba(16, 32, 26, .35);
  position: relative; z-index: 2;
}
.phone::before {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; border-radius: 16px; background: #0d0d0f; z-index: 5;
}
.phone-screen { border-radius: 34px; overflow: hidden; background: #f6f4ee; }
.ps-head { text-align: center; padding: 34px 0 8px; font-size: 11px; color: #666; }
.ps-head b { display: block; font-size: 12px; color: #222; }
.ps-tile { margin: 8px 10px; border-radius: 16px; aspect-ratio: 16/11.5; position: relative; overflow: hidden; display: grid; place-items: center; }
.ps-tile .face { font-family: var(--font-display); font-size: 44px; color: rgba(255,255,255,.9); }
.ps-tile .tag {
  position: absolute; left: 10px; bottom: 10px; font-size: 9.5px; font-weight: 700;
  color: #fff; background: rgba(0,0,0,.45); border-radius: 6px; padding: 3px 7px;
  display: flex; align-items: center; gap: 4px;
}
.ps-tile .tag i { width: 6px; height: 6px; border-radius: 50%; background: #61d095; }
.ps-bar { display: flex; justify-content: center; gap: 26px; padding: 12px 0 18px; color: #333; font-size: 15px; }
.ps-bar .end { color: #d33; }

.float-card {
  position: absolute; background: var(--white); border-radius: 14px;
  box-shadow: 0 18px 50px rgba(16, 32, 26, .18); padding: 14px 16px;
  width: 220px; z-index: 3; animation: floaty 5s ease-in-out infinite;
}
.float-card b { font-size: 13px; display: flex; align-items: center; gap: 7px; }
.float-card p { font-size: 12px; color: var(--ink-soft); line-height: 1.45; margin-top: 4px; }
.fc-1 { top: 6%; right: 0; }
.fc-2 { bottom: 12%; left: 0; animation-delay: 2.2s; }
.fc-ico { width: 26px; height: 26px; border-radius: 8px; background: var(--gold-pale); display: grid; place-items: center; font-size: 13px; }
.fc-dot { display: inline-grid; place-items: center; min-width: 16px; height: 16px; border-radius: 50%; background: var(--green); color: #fff; font-size: 10px; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-9px);} }
.heart-doodle { position: absolute; right: -30px; top: 24%; width: 150px; opacity: .6; z-index: 1; }

/* ---------- loved ones bento ---------- */
.section-loved { background: var(--cream); margin: 0 12px; padding: 30px 0 100px; position: relative; z-index: 3; }
.section-loved .head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-loved .head p { color: var(--ink-soft); margin-top: 12px; }
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 18px; }
.tile { border-radius: var(--radius-card); overflow: hidden; position: relative; }
.tile-chips { grid-row: span 1; background: var(--sage-soft); padding: 24px; }
.tile-chips h3 { font-size: 17px; font-weight: 800; color: var(--green-ink); margin-bottom: 14px; }
.chip {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--green-deep);
  background: var(--white); border: 1px solid rgba(40,94,80,.25);
  border-radius: 999px; padding: 6px 14px; margin: 0 6px 8px 0;
  transition: all .18s ease; cursor: default;
}
.chip:hover { background: var(--green-deep); color: var(--white); }
.tile-compass { position: absolute; right: -18px; bottom: -18px; width: 110px; opacity: .35; }
.tile-photo { display: grid; place-items: center; }
.tile-photo .mono { font-family: var(--font-display); font-size: 56px; color: rgba(255,255,255,.85); }
.tile-tall { grid-row: span 2; }
.tile-stat { background: linear-gradient(150deg, #f9edd3, #f3e0b6); padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.tile-stat .big { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--ink); }
.tile-stat .big sup { font-size: 26px; color: var(--gold); }
.tile-stat p { font-size: 13.5px; font-weight: 700; margin-top: 10px; }
.tile-stat small { font-size: 10.5px; color: var(--ink-soft); margin-top: 6px; }
.tile-quote {
  grid-column: span 2; background: linear-gradient(120deg, #2f685a, #1d4339);
  color: var(--white); padding: 30px 34px; display: flex; flex-direction: column; justify-content: center;
}
.tile-quote blockquote { font-family: var(--font-serif); font-style: italic; font-size: 19px; line-height: 1.5; }
.tile-quote .who { margin-top: 14px; font-weight: 800; font-size: 14px; }
.tile-quote .who small { display: block; font-weight: 400; font-size: 12px; color: rgba(255,255,255,.7); }
.loved-cta { text-align: center; margin-top: 44px; }

/* ---------- CTA banner ---------- */
.section-cta { background: var(--night); padding: 110px 0; }
.cta-box {
  position: relative; border: 1px solid rgba(220,173,84,.6); border-radius: 22px;
  background: radial-gradient(600px 260px at 50% 0%, rgba(40,94,80,.5), transparent 70%), #16302a;
  text-align: center; color: var(--white); padding: 74px 40px 64px;
}
.cta-star { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); width: 30px; background: var(--night); padding: 0 4px; }
.cta-box h2 { margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 30px; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(160deg, #9dbfb2 0%, #7ba393 30%, #3f7261 72%, #285e50 100%);
  border-radius: var(--radius-big) var(--radius-big) 0 0;
  margin: 0 12px; color: var(--green-ink); padding: 70px 0 36px;
}
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.footer-brand .logo { font-size: 34px; color: var(--green-ink); }
.footer-brand p { max-width: 340px; font-size: 14px; margin: 16px 0 22px; color: #17332a; }
.badge-partner { display: flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #17332a; }
.badge-partner .ring { width: 40px; height: 40px; border: 1.6px solid #17332a; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 17px; }
.footer-fine { font-size: 11.5px; font-style: italic; color: rgba(23,51,42,.75); margin-top: 18px; max-width: 360px; }
.footer-social { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.soc {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.55);
  display: grid; place-items: center; transition: all .2s ease; font-size: 15px; color: var(--green-ink);
}
.soc:hover { background: var(--white); transform: translateY(-3px); }

.footer-links {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  border-top: 1px solid rgba(23,51,42,.25); margin-top: 44px; padding-top: 40px;
}
.fcol h4 { font-size: 15px; margin-bottom: 16px; color: var(--green-ink); }
.fcol li { margin-bottom: 10px; font-size: 14px; }
.fcol a:hover { text-decoration: underline; }
.fcol .hiring {
  font-size: 11px; font-weight: 800; color: #8a6a1f; border: 1px solid #b08c3d;
  border-radius: 4px; padding: 2px 7px; margin-left: 8px; background: rgba(233,204,149,.4);
}
.fcol .em { font-style: italic; font-size: 12.5px; color: rgba(23,51,42,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid rgba(23,51,42,.25); margin-top: 40px; padding-top: 22px;
  font-size: 12px; color: rgba(23,51,42,.85);
}
.footer-bottom a { margin-left: 22px; font-style: italic; }
.footer-bottom a:hover { text-decoration: underline; }
.demo-note {
  background: var(--night); color: rgba(255,255,255,.55); text-align: center;
  font-size: 12px; padding: 18px 24px 26px;
}
.demo-note a { color: var(--gold-light); font-weight: 700; }

/* ---------- inner pages ---------- */
.page-hero { background: linear-gradient(175deg, #14261f, #163229); color: var(--white); padding: 90px 0 110px; position: relative; overflow: hidden; }
.page-hero h1 { max-width: 760px; margin-top: 14px; }
.page-hero p.lede { color: rgba(255,255,255,.8); max-width: 560px; margin-top: 18px; }
.page-body { background: var(--cream); border-radius: var(--radius-big); margin: -50px 12px 0; padding: 80px 0; position: relative; z-index: 2; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: var(--white); border-radius: var(--radius-card); padding: 30px 26px; box-shadow: 0 6px 24px rgba(16,32,26,.06); transition: transform .2s ease, box-shadow .2s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.info-card .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-pale); display: grid; place-items: center; font-size: 21px; margin-bottom: 18px; }
.info-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.info-card p { font-size: 14.5px; color: var(--ink-soft); }

.faq-item { background: var(--white); border-radius: 14px; margin-bottom: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(16,32,26,.05); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 22px 26px; font-size: 16.5px; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .plus { font-family: var(--font-display); font-size: 24px; color: var(--green); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 24px; color: var(--ink-soft); font-size: 15px; max-width: 700px; }

/* get started form */
.gs-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow-card); max-width: 560px; margin: 0 auto; padding: 44px; }
.gs-steps { display: flex; gap: 8px; margin-bottom: 30px; }
.gs-steps i { flex: 1; height: 4px; border-radius: 4px; background: rgba(16,16,16,.1); }
.gs-steps i.on { background: var(--gold); }
.gs-card h2 { font-size: 26px; margin-bottom: 8px; }
.gs-card .hint { font-size: 14px; color: var(--ink-soft); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 800; margin-bottom: 7px; }
.field input, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid rgba(16,16,16,.15);
  border-radius: 10px; font-size: 15px; font-family: inherit; background: var(--white);
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--green); }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt {
  border: 1.5px solid rgba(16,16,16,.15); border-radius: 12px; padding: 16px;
  font-size: 14.5px; font-weight: 700; text-align: left; background: var(--white);
  transition: all .15s ease;
}
.opt:hover { border-color: var(--green); }
.opt.sel { border-color: var(--green); background: #eef4f1; }
.gs-nav { display: flex; justify-content: space-between; margin-top: 28px; }
.gs-back { background: none; border: none; font-weight: 700; color: var(--ink-soft); font-size: 14.5px; }
.gs-back:hover { color: var(--ink); }
.gs-done { text-align: center; padding: 30px 0 10px; }
.gs-done .big-check { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; font-size: 28px; display: grid; place-items: center; margin: 0 auto 20px; }

/* video modal */
.modal { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; background: rgba(8, 14, 11, .82); backdrop-filter: blur(4px); padding: 24px; }
.modal.open { display: grid; }
.modal-box { background: var(--night); border: 1px solid rgba(233,204,149,.3); border-radius: 18px; max-width: 720px; width: 100%; aspect-ratio: 16/9; display: grid; place-items: center; color: var(--white); text-align: center; padding: 40px; position: relative; }
.modal-box .eyebrow { color: var(--gold-light); }
.modal-box h3 { font-family: var(--font-display); font-size: 28px; font-weight: 380; margin: 12px 0 8px; }
.modal-box p { color: rgba(255,255,255,.7); font-size: 14.5px; max-width: 420px; }
.modal-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: rgba(255,255,255,.7); font-size: 26px; }
.modal-close:hover { color: #fff; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* gradient placeholder fills */
.g-moss { background: linear-gradient(140deg, #7ba393, #3f7261); }
.g-fern { background: linear-gradient(140deg, #9dbfb2, #285e50); }
.g-clay { background: linear-gradient(140deg, #d9b98a, #a9805a); }
.g-dusk { background: linear-gradient(140deg, #57746b, #1d4339); }
.g-sand { background: linear-gradient(140deg, #e9cc95, #c9a05f); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-hours { display: none; }
  .video-grid { grid-template-columns: 1fr; gap: 44px; }
  .watermark { font-size: 140px; }
  .video-card { max-width: 480px; }
  .how-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 26px; }
  .care-grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tile-quote { grid-column: span 2; }
  .cards-3 { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-menu, .nav-signin, .nav-divider, .btn-nav { display: none; }
  .hamburger { display: block; margin-left: auto; }
  .hero { padding: 64px 0 150px; }
  .hero-art { width: 90%; opacity: .55; bottom: 90px; }
  .story-card { grid-template-columns: 1fr; }
  .story-photo { aspect-ratio: 16/8; font-size: 44px; }
  .footer-top { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .tile { min-height: 170px; }
  .tile-quote { grid-column: span 1; }
  .fc-1 { right: -6px; } .fc-2 { left: -6px; }
  .section-stories, .section-care, .section-loved, .site-footer, .page-body { margin-left: 8px; margin-right: 8px; }
}
