/* =========================================================
   Mack Mountain Properties — Refined Rustic Design System
   ========================================================= */

:root {
  /* Palette — cozy cabin warmth + upscale polish */
  --cream:        #FBF8F2;   /* page background */
  --cream-2:      #F4EEE3;   /* alt sections */
  --surface:      #FFFFFF;   /* cards */
  --ink:          #292420;   /* primary text (warm espresso-black) */
  --ink-soft:     #574E45;   /* secondary text */
  --muted:        #857A6C;   /* tertiary text */
  --pine:         #2F3E34;   /* primary brand green (deep pine) */
  --pine-2:       #46594B;   /* lighter pine */
  --moss:         #6E7F63;   /* soft moss accent */
  --amber:        #B9743E;   /* warm terracotta/amber accent */
  --amber-soft:   #D9A066;   /* light amber */
  --stone:        #E6DCCB;   /* borders */
  --stone-2:      #D8CBB4;
  --espresso:     #211C17;   /* dark header/footer */
  --star:         #C79A3B;   /* gold for ratings */

  /* Typography */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing & shape */
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(41, 36, 32, 0.06);
  --shadow-md: 0 14px 40px rgba(41, 36, 32, 0.12);
  --shadow-lg: 0 30px 70px rgba(33, 28, 23, 0.22);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-soft); line-height: 1.6; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--amber);
  display: inline-block;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-pine { background: var(--pine); color: #EFEAE0; }
.bg-pine h1, .bg-pine h2, .bg-pine h3 { color: #FBF8F2; }
.bg-pine p { color: #CFD6C9; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 620px; }
.measure-wide { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              box-shadow 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--amber); color: #fff; box-shadow: 0 8px 22px rgba(185, 116, 62, 0.32); }
.btn--primary:hover { background: #a9662f; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(185, 116, 62, 0.4); }
.btn--pine { background: var(--pine); color: #F6F2E9; }
.btn--pine:hover { background: var(--pine-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--stone-2); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(41,36,32,0.04); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.35); }
.btn--light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { border-color: var(--stone); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.7rem; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; letter-spacing: 0.02em; color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px; flex: none;
  background: var(--pine); display: grid; place-items: center;
}
.brand .mark svg { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); font-weight: 600; line-height: 1; margin-top: 3px; }
.brand .brand-name { line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.55rem 0.9rem; border-radius: 100px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(41,36,32,0.05); }
.nav-links a.active { color: var(--pine); font-weight: 600; }
.nav-cta { margin-left: 0.6rem; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: 0.3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,26,20,0.28) 0%, rgba(20,26,20,0.12) 40%, rgba(18,22,17,0.82) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vw, 96px); padding-top: 120px; width: 100%; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero .lead { color: rgba(255,255,255,0.9); max-width: 52ch; margin-top: 1.4rem; }
.hero .location-tag { color: rgba(255,255,255,0.85); }
.hero .btn-row { margin-top: 2.2rem; }

.location-tag { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.5rem; }

/* feature strip under hero */
.feature-strip {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem;
}
.feature-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 0.5rem 1rem; border-radius: 100px; font-size: 0.86rem; font-weight: 500; color: #fff;
}
.feature-pill svg { width: 16px; height: 16px; opacity: 0.9; }

/* ---------- Image placeholders (swap for real photos) ---------- */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255,255,255,0.5), rgba(255,255,255,0) 60%),
    linear-gradient(150deg, #6E7F63 0%, #46594B 45%, #2F3E34 100%);
  color: #fff; display: grid; place-items: center; min-height: 260px; isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 26px);
}
.ph__mtn { position: absolute; inset: 0; z-index: 0; opacity: 0.35; }
.ph__label {
  position: relative; z-index: 1; text-align: center; padding: 1rem 1.4rem;
  font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em; font-weight: 500;
  color: rgba(255,255,255,0.92);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.ph__label svg { width: 26px; height: 26px; opacity: 0.85; }
.ph__label span { max-width: 22ch; }
.ph--tall { min-height: 420px; }
.ph--hero { min-height: 100%; border-radius: 0; }
.ph--wide { min-height: 340px; }
.ratio-4-3 { aspect-ratio: 4 / 3; min-height: 0; }
.ratio-3-2 { aspect-ratio: 3 / 2; min-height: 0; }
.ratio-1-1 { aspect-ratio: 1 / 1; min-height: 0; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--media-right .split__media { order: 2; }

.card {
  background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__body { padding: 1.5rem 1.6rem 1.7rem; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { font-size: 0.98rem; }
.card .ph { border-radius: 0; }

/* feature tiles (icon + text) */
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon {
  flex: none; width: 50px; height: 50px; border-radius: 13px;
  background: var(--cream-2); border: 1px solid var(--stone);
  display: grid; place-items: center; color: var(--pine);
}
.bg-pine .feature__icon { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: var(--amber-soft); }
.feature__icon svg { width: 24px; height: 24px; }
.feature h4 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature p { font-size: 0.94rem; }

/* stat / rating */
.rating { display: inline-flex; align-items: center; gap: 0.6rem; }
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 18px; height: 18px; }
.rating strong { font-family: var(--serif); font-size: 1.15rem; }

.stat-row { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 56px); }
.stat { }
.stat .num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--pine); line-height: 1; }
.bg-pine .stat .num { color: var(--amber-soft); }
.stat .lbl { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; font-weight: 600; }
.bg-pine .stat .lbl { color: #B7BFAE; }

/* section heading block */
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 1rem; }
.sec-head p { margin-top: 1rem; }

/* badge */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--cream-2); border: 1px solid var(--stone-2); color: var(--ink-soft);
  padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.badge--amber { background: rgba(185,116,62,0.12); border-color: rgba(185,116,62,0.3); color: #97572a; }
.badge--soon { background: rgba(110,127,99,0.14); border-color: rgba(110,127,99,0.35); color: #4c5a44; }

/* amenities list */
.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem 1.6rem; }
.amenities li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.98rem; color: var(--ink-soft); }
.amenities svg { width: 20px; height: 20px; color: var(--moss); flex: none; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery .ph { border-radius: var(--radius); min-height: 0; }
.g-span-2c { grid-column: span 2; }
.g-span-2r { grid-row: span 2; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; }

/* ---------- Contact / form ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--stone-2); border-radius: 12px;
  padding: 0.8rem 1rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pine); box-shadow: 0 0 0 3px rgba(47,62,52,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }

.contact-card { background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-lg); padding: clamp(24px,4vw,40px); box-shadow: var(--shadow-sm); }
.contact-list { display: grid; gap: 1.3rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .feature__icon { width: 46px; height: 46px; }
.contact-item h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.15rem; }
.contact-item a, .contact-item p { font-size: 0.98rem; color: var(--ink-soft); }
.contact-item a:hover { color: var(--pine); }

/* social */
.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--cream-2); border: 1px solid var(--stone); color: var(--ink-soft); transition: 0.25s var(--ease);
}
.socials a:hover { background: var(--pine); color: #fff; border-color: var(--pine); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: #CFC7BC; padding: clamp(56px, 7vw, 88px) 0 32px; }
.site-footer h4 { color: #F6F2E9; font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 700; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer a { color: #CFC7BC; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-brand .brand { color: #F6F2E9; margin-bottom: 1rem; }
.footer-brand .brand small { color: #9A9184; }
.footer-brand p { color: #A79F93; font-size: 0.95rem; max-width: 34ch; }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.86rem; color: #948B7E;
}
.footer-bottom .socials a { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #CFC7BC; }
.footer-bottom .socials a:hover { background: var(--amber); border-color: var(--amber); color: #fff; }

/* ---------- Misc ---------- */
.divider-mtn { display: block; width: 100%; height: auto; color: var(--cream); }
.pill-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.pill-list li { background: var(--surface); border: 1px solid var(--stone); border-radius: 100px; padding: 0.45rem 1rem; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }

.note {
  background: rgba(185,116,62,0.09); border: 1px dashed rgba(185,116,62,0.45);
  border-radius: 12px; padding: 0.75rem 1rem; font-size: 0.85rem; color: #8a5227;
}

/* reviews / testimonials */
.reviews-head { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.stars-lg { display: inline-flex; gap: 4px; color: var(--star); }
.stars-lg svg { width: 24px; height: 24px; }
.stars5::before { content: "\2605\2605\2605\2605\2605"; letter-spacing: 3px; color: var(--star); font-size: 1rem; }
.stars-lg2::before { content: "\2605\2605\2605\2605\2605"; letter-spacing: 5px; color: var(--star); font-size: 1.45rem; }
.hosts-note { font-size: 0.92rem; color: var(--muted); }
.hosts-note strong { color: var(--ink-soft); }
.rating-line { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 1.05rem; color: var(--ink-soft); }
.rating-line strong { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.quote-card {
  background: var(--surface); border: 1px solid var(--stone); border-radius: var(--radius-lg);
  padding: 1.8rem 1.9rem 1.7rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quote-card .review-stars { display: inline-flex; gap: 2px; color: var(--star); }
.quote-card .review-stars svg { width: 17px; height: 17px; }
.quote-card blockquote { font-size: 1.06rem; line-height: 1.55; color: var(--ink); }
.quote-card .who { margin-top: auto; padding-top: 0.4rem; font-size: 0.86rem; color: var(--muted); }
.quote-card .who strong { display: block; font-family: var(--sans); font-weight: 700; font-size: 0.98rem; color: var(--ink); margin-bottom: 1px; }

/* gallery (masonry) */
.masonry { column-count: 3; column-gap: 16px; }
.masonry .g-item {
  break-inside: avoid; margin: 0 0 16px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: zoom-in; display: block; position: relative;
}
.masonry .g-item img { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.masonry .g-item:hover img { transform: scale(1.05); }
@media (max-width: 900px) { .masonry { column-count: 2; } }
@media (max-width: 560px) { .masonry { column-count: 2; column-gap: 10px; } .masonry .g-item { margin-bottom: 10px; } }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(20, 17, 14, 0.92); padding: 4vmin; cursor: zoom-out;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; animation: lbfade 0.25s var(--ease); }
.lightbox img { max-width: 100%; max-height: 92vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }

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

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--stone); padding: 1rem 24px 1.5rem;
    gap: 0.2rem; transform: translateY(-120%); transition: transform 0.4s var(--ease); box-shadow: var(--shadow-md);
  }
  body.menu-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 0.9rem 0.6rem; font-size: 1.05rem; border-radius: 10px; }
  .nav-links .nav-cta { margin: 0.6rem 0 0; }
  .nav-links .btn { width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split--media-right .split__media { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .g-span-2c { grid-column: span 1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; }
  .hero { min-height: 88vh; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
