/* ==========================================================================
   Creekside Haven — Design System & Styles
   New-construction apartment homes | Montgomery, Texas
   Static site: no build step, no dependencies.
   ========================================================================== */

/* ------------------------------- Tokens -------------------------------- */
:root {
  /* Brand palette — creekside / Piney Woods */
  --forest: #16362b;
  --forest-2: #1e4a3a;
  --moss: #2f6b4f;
  --moss-2: #3f8460;
  --sage: #8aa894;
  --creek: #2b7d92;
  --creek-2: #3f9bb0;
  --brass: #c08a3e;
  --brass-2: #dcab5f;
  --sand: #f6f1e7;
  --sand-2: #efe7d8;
  --cream: #fffdf9;
  --white: #ffffff;
  --line: #e5dccb;
  --ink: #1b2b25;
  --ink-soft: #55665e;

  /* Functional */
  --bg: var(--cream);
  --text: var(--ink);
  --muted: var(--ink-soft);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 10px rgba(22, 54, 43, .07);
  --shadow: 0 16px 44px rgba(22, 54, 43, .13);
  --shadow-lg: 0 34px 80px rgba(22, 54, 43, .2);
  --ring: 0 0 0 4px rgba(43, 125, 146, .25);

  --grad-hero:
    radial-gradient(1100px 620px at 88% -12%, rgba(220, 171, 95, .30), transparent 62%),
    radial-gradient(900px 520px at -5% 8%, rgba(63, 155, 176, .30), transparent 58%),
    linear-gradient(158deg, #102b22 0%, #1b4535 45%, #1f5a45 100%);
  --grad-brass: linear-gradient(135deg, var(--brass-2) 0%, var(--brass) 100%);
  --grad-moss: linear-gradient(135deg, var(--moss-2) 0%, var(--creek) 100%);
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--creek-2); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.015em;
  font-weight: 600;
}
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p + p { margin-top: .9rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--white); color: var(--forest); padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  padding: .85rem 1.6rem; font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--grad-brass); color: #2a1c06; }
.btn-moss { background: var(--grad-moss); color: #fff; }
.btn-ghost { background: transparent; color: inherit; border-color: currentColor; box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-light { background: #fff; color: var(--forest); }
.btn-sm { padding: .6rem 1.15rem; font-size: .93rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ------------------------------- Header -------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-text { display: grid; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.32rem;
  color: var(--forest); letter-spacing: -.02em;
}
.brand-sub {
  font-size: .68rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--moss); font-weight: 600;
}
.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  text-decoration: none; padding: .55rem .8rem; border-radius: 999px;
  font-weight: 500; font-size: .97rem; color: var(--ink-soft);
  transition: background .16s ease, color .16s ease;
}
.nav a:hover { background: var(--sand); color: var(--forest); }
.nav a.active { color: var(--forest); font-weight: 600; }
.nav .btn { margin-left: .4rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap;
  font-weight: 600; color: var(--forest); text-decoration: none; font-size: .97rem;
  padding: .55rem .7rem;
}
.nav-phone svg { width: 18px; height: 18px; flex: none; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--white); border-radius: 12px; cursor: pointer; position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--forest); border-radius: 2px; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle::before { top: 14px; }
.nav-toggle::after { top: 28px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .8rem 1.25rem 1.4rem; gap: .2rem; box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem .6rem; font-size: 1.05rem; }
  .nav .btn { margin: .6rem 0 0; }
}

/* -------------------------------- Hero --------------------------------- */
.hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  opacity: .18; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
  padding: clamp(3.2rem, 7vw, 6rem) 0 clamp(3.6rem, 7vw, 6rem);
}
.hero h1 { color: #fff; }
.hero p.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.86); max-width: 34rem; margin-top: 1.1rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  color: var(--brass-2); background: rgba(220, 171, 95, .14);
  border: 1px solid rgba(220, 171, 95, .38);
  padding: .42rem .9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.eyebrow.dark { color: var(--moss); background: rgba(47, 107, 79, .09); border-color: rgba(47, 107, 79, .25); }
.hero .btn-row { margin-top: 1.9rem; }
.hero-note { margin-top: 1.3rem; font-size: .92rem; color: rgba(255,255,255,.7); }
.hero-art {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.16);
  background: #0e2a21;
}
.hero-art svg, .hero-art img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-art { order: -1; }
}

/* ---------------------------- Fact strip -------------------------------- */
.facts { background: var(--forest-2); color: #fff; }
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,.14);
  border-radius: var(--radius); overflow: hidden;
  transform: translateY(-38px); box-shadow: var(--shadow);
}
.fact { background: var(--forest-2); padding: 1.4rem 1.3rem; }
.fact dt { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--brass-2); font-weight: 700; }
.fact dd { font-family: var(--font-display); font-size: 1.28rem; margin-top: .3rem; }
.fact dd small { display: block; font-family: var(--font-body); font-size: .86rem; color: rgba(255,255,255,.68); font-weight: 400; letter-spacing: 0; }
.facts.flat .facts-grid { transform: none; }
@media (max-width: 780px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .facts-grid { grid-template-columns: 1fr; } }

/* ------------------------------ Sections -------------------------------- */
.section { padding: clamp(3.4rem, 6.5vw, 5.6rem) 0; }
.section.tight { padding: clamp(2.4rem, 4vw, 3.4rem) 0; }
.section.sand { background: var(--sand); }
.section.forest { background: var(--forest); color: #fff; }
.section.forest h2, .section.forest h3 { color: #fff; }
.section.forest .muted { color: rgba(255,255,255,.72); }
.section-head { max-width: 46rem; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; }
.section-head p { color: var(--muted); margin-top: .85rem; font-size: 1.06rem; }
.section.forest .section-head p { color: rgba(255,255,255,.76); }

.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* -------------------------------- Cards --------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .99rem; }
.section.forest .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section.forest .card p { color: rgba(255,255,255,.74); }

.pillar-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-moss); color: #fff; margin-bottom: 1rem;
}
.pillar-icon svg { width: 26px; height: 26px; }
.card.brass .pillar-icon { background: var(--grad-brass); color: #2a1c06; }

/* ----------------------------- Floor plans ------------------------------ */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip {
  border: 1px solid var(--line); background: var(--white); color: var(--ink-soft);
  border-radius: 999px; padding: .55rem 1.15rem; font-weight: 600; font-size: .93rem; cursor: pointer;
  transition: all .16s ease;
}
.chip:hover { border-color: var(--moss); color: var(--forest); }
.chip[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: #fff; }

.plan-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-figure { background: var(--sand); border-bottom: 1px solid var(--line); padding: 1rem; }
.plan-figure svg { width: 100%; height: auto; }
.plan-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.plan-name { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; }
.plan-name h3 { margin: 0; }
.plan-type { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--moss); }
.plan-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin: .9rem 0 1rem; }
.tag {
  background: var(--sand); border: 1px solid var(--line); border-radius: 999px;
  padding: .3rem .75rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft);
}
.plan-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest); }
.plan-price small { font-family: var(--font-body); font-size: .85rem; color: var(--muted); font-weight: 400; }
.plan-body ul { margin: 0 0 1.2rem; padding-left: 1.1rem; color: var(--muted); font-size: .96rem; }
.plan-body ul li { margin-bottom: .3rem; }
.plan-body .btn-row { margin-top: auto; }

/* ------------------------------ Amenities ------------------------------- */
.amenity-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem 1.6rem; }
.amenity-list li {
  list-style: none; display: flex; gap: .65rem; align-items: flex-start;
  padding: .45rem 0; font-size: 1rem;
}
.amenity-list li svg { width: 20px; height: 20px; flex: none; margin-top: .25rem; color: var(--brass); }
.section.forest .amenity-list li svg { color: var(--brass-2); }
@media (max-width: 860px) { .amenity-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenity-list { grid-template-columns: 1fr; } }

/* ------------------------------- Gallery -------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.shot {
  position: relative; border: 0; padding: 0; cursor: zoom-in; display: block; width: 100%;
  border-radius: var(--radius); overflow: hidden; background: var(--sand);
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.shot svg { width: 100%; height: auto; }
.shot img { width: 100%; height: auto; display: block; aspect-ratio: 800 / 560; object-fit: cover; }
.shot figcaption {
  position: absolute; inset: auto 0 0 0; text-align: left;
  background: linear-gradient(to top, rgba(16, 43, 34, .88), transparent);
  color: #fff; padding: 2.2rem .95rem .8rem; font-size: .93rem; font-weight: 600;
}
.shot.tall { grid-row: span 2; }
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(11, 30, 24, .9); padding: 4vh 4vw; place-items: center;
}
.lightbox.open { display: grid; }
.lightbox figure { max-width: 1000px; width: 100%; }
.lightbox svg, .lightbox img { width: 100%; height: auto; display: block;
  border-radius: var(--radius); }
.lightbox figcaption { color: #fff; text-align: center; margin-top: 1rem; font-size: 1rem; }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.4rem; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1);
  color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
}

/* ---------------------------- Neighborhood ------------------------------ */
.drive-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.drive-table th, .drive-table td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); }
.drive-table thead th { background: var(--sand); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); }
.drive-table tbody tr:last-child td { border-bottom: 0; }
.drive-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.table-scroll { overflow-x: auto; }

.place-card { display: flex; gap: 1rem; align-items: flex-start; }
.place-card .dot {
  width: 40px; height: 40px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--sand); color: var(--moss); border: 1px solid var(--line);
}
.place-card .dot svg { width: 20px; height: 20px; }

/* -------------------------------- Steps --------------------------------- */
.steps, .grid { counter-reset: step; }
.steps { display: grid; gap: 1.2rem; }
.step {
  position: relative; padding-left: 4rem; min-height: 3rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-moss); color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--muted); }
.section.forest .step p { color: rgba(255,255,255,.74); }

/* -------------------------------- Forms --------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.field { display: grid; gap: .4rem; margin-bottom: 1.05rem; }
.field label { font-weight: 600; font-size: .94rem; }
.field .hint { font-size: .85rem; color: var(--muted); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: .8rem .95rem;
  background: var(--cream); width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--creek); box-shadow: var(--ring);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.checkline { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; color: var(--muted); }
.checkline input { width: auto; margin-top: .25rem; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .9rem; }
.form-success {
  display: none; background: rgba(47, 107, 79, .1); border: 1px solid var(--moss);
  color: var(--forest); border-radius: 12px; padding: 1rem 1.1rem; margin-bottom: 1.1rem; font-weight: 600;
}
.form-success.show { display: block; }

/* --------------------------------- FAQ ---------------------------------- */
.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.05rem 1.3rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.04rem; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--moss); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: .7rem; color: var(--muted); }

/* ------------------------------ Quote card ------------------------------ */
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--brass);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm);
}
.quote-card p { font-family: var(--font-display); font-size: 1.1rem; line-height: 1.5; }
.quote-card footer { margin-top: .9rem; font-size: .9rem; color: var(--muted); font-weight: 600; }

/* ------------------------------- CTA band -------------------------------- */
.cta-band { background: var(--grad-moss); color: #fff; }
.cta-band .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: clamp(2.2rem, 4vw, 3.2rem) 1.25rem;
}
.cta-band h2 { color: #fff; max-width: 30rem; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: .5rem; max-width: 34rem; }

/* -------------------------------- Footer --------------------------------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,.78); padding: 3.2rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff; font-family: var(--font-body); font-size: .78rem; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: .9rem; font-weight: 700;
}
.site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .5rem; font-size: .96rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--brass-2); }
.footer-brand p { font-size: .95rem; margin-top: .9rem; max-width: 24rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.4rem; padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .87rem;
}
.eho { display: flex; align-items: center; gap: .6rem; }
.eho svg { width: 26px; height: 26px; flex: none; color: #fff; }

/* ------------------------------- Reveal ---------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover, .card:hover, .plan-card:hover, .shot:hover { transform: none; }
}
