/* =============================================================
   Burnt Mill Cottage — stylesheet
   Palette lives in :root. Change the tokens, the whole site follows.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  --forest:      #2f4636;
  --forest-deep: #22331f;
  --moss:        #5c7a5e;
  --bark:        #8a6a4f;
  --bark-soft:   #b08d6a;
  --cream:       #faf7f1;
  --cream-warm:  #f2ece1;
  --ink:         #232320;
  --ink-soft:    #55534c;
  --ink-faint:   #8a877d;
  --line:        #e0d9cb;
  --white:       #ffffff;

  --bg:          var(--cream);
  --bg-alt:      var(--cream-warm);
  --bg-card:     var(--white);
  --fg:          var(--ink);
  --fg-soft:     var(--ink-soft);
  --fg-faint:    var(--ink-faint);
  --accent:      var(--forest);
  --accent-fg:   #ffffff;
  --border:      var(--line);

  --radius:      14px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 2px rgba(35,35,32,.05), 0 2px 8px rgba(35,35,32,.05);
  --shadow-md:   0 2px 4px rgba(35,35,32,.05), 0 12px 32px rgba(35,35,32,.09);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:        1180px;
  --wrap-narrow: 760px;
  --pad:         clamp(1.15rem, 4vw, 2.5rem);
  --gap:         clamp(1rem, 2.4vw, 1.75rem);
  --section-y:   clamp(3.5rem, 9vw, 7rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg:       #15180f;
    --bg-alt:   #1b1f15;
    --bg-card:  #212518;
    --fg:       #f0ece1;
    --fg-soft:  #bdb9ab;
    --fg-faint: #8d8a7d;
    --accent:   #8fae8c;
    --accent-fg:#131610;
    --border:   #333827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.25);
    --shadow-md: 0 2px 4px rgba(0,0,0,.3), 0 12px 32px rgba(0,0,0,.4);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* Always honor the hidden attribute, even where a display rule is set. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-fg);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
  text-decoration: none; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
.section--alt { background: var(--bg-alt); }
.section--cta { background: var(--forest); color: #f3efe6; }
@media (prefers-color-scheme: dark) { .section--cta { background: #1d2716; } }

.section__head { max-width: 62ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section--cta .section__head { margin-inline: auto; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--fg-faint); margin-bottom: .6rem;
}
.section--cta .eyebrow { color: rgba(243,239,230,.6); }

.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 500; line-height: 1.15; letter-spacing: -.015em;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 500; line-height: 1.25; margin-bottom: .85rem;
}
.lead {
  font-size: clamp(1.03rem, 1.7vw, 1.16rem);
  color: var(--fg-soft); margin-top: .85rem; text-wrap: pretty;
}
.section--cta .lead { color: rgba(243,239,230,.82); }

.prose { margin-top: 1.6rem; }
.prose p { margin-bottom: 1.15rem; color: var(--fg-soft); text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }

.fineprint { font-size: .82rem; color: var(--fg-faint); margin-top: 1.15rem; line-height: 1.6; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  font-size: .93rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .55rem 1.1rem; font-size: .85rem; }

.btn--primary { background: var(--accent); color: var(--accent-fg); }
.btn--primary:hover { background: var(--forest-deep); }
@media (prefers-color-scheme: dark) { .btn--primary:hover { background: #a6c2a3; } }

.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }

.btn--onlight { background: var(--white); color: var(--forest); }
.btn--onlight:hover { background: #efe9dc; }

.btn svg { width: 1.05em; height: 1.05em; flex: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--border); }

.nav__inner {
  width: 100%; max-width: var(--wrap); margin-inline: auto;
  padding: .7rem var(--pad);
  display: flex; align-items: center; gap: 1rem;
}

.nav__brand {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none; font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600; letter-spacing: -.01em;
  margin-right: auto;
}
.nav__mark { color: var(--accent); }
.nav__mark svg { width: 1.4rem; height: 1.4rem; }

.nav__links { display: none; gap: 1.5rem; }
.nav__links a {
  text-decoration: none; font-size: .88rem; font-weight: 500;
  color: var(--fg-soft); padding-block: .35rem;
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.nav__links a:hover { color: var(--fg); }
.nav__links a.is-active { color: var(--fg); border-bottom-color: var(--accent); }

.nav__cta { display: none; }

.nav__toggle {
  display: grid; gap: 5px; padding: .5rem; margin-right: -.5rem;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--fg); transition: transform .22s ease, opacity .18s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: grid; gap: .25rem;
  padding: .5rem var(--pad) 1.25rem;
  border-top: 1px solid var(--border);
}
.nav__drawer a {
  text-decoration: none; padding: .7rem .25rem;
  font-size: 1rem; font-weight: 500; color: var(--fg-soft);
  border-bottom: 1px solid var(--border);
}
.nav__drawer a:last-child { border-bottom: 0; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__drawer { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(92svh, 820px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--section-y) * .8) 0 clamp(3rem, 7vw, 5rem);
  color: #fff;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(14,20,12,.92) 0%, rgba(14,20,12,.72) 30%, rgba(14,20,12,.34) 62%, rgba(14,20,12,.20) 80%, rgba(14,20,12,.45) 100%);
}
.hero__body { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

.hero__eyebrow {
  font-size: .76rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.82); margin-bottom: .9rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8.5vw, 5rem);
  font-weight: 500; line-height: 1.02; letter-spacing: -.025em;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__tagline {
  font-size: clamp(1.02rem, 2.1vw, 1.24rem);
  color: rgba(255,255,255,.9); margin-top: 1rem; max-width: 46ch; text-wrap: pretty;
}

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 5vw, 3rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid rgba(255,255,255,.25);
}
.hero__stat dt {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.05rem); font-weight: 500; line-height: 1;
}
.hero__stat dd {
  font-size: .76rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: .4rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: clamp(1.75rem, 4vw, 2.25rem); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.25rem; translate: -50% 0;
  color: rgba(255,255,255,.6); padding: .5rem;
  animation: nudge 2.6s ease-in-out infinite;
}
.hero__scroll svg { width: 1.5rem; height: 1.5rem; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 560px) { .hero__scroll { display: none; } }

/* ---------- At a glance ---------- */
.glance {
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
/* Outlines overlap into shared hairlines, so partly filled rows leave
   no coloured gap where a cell would have been. */
.glance__cell {
  background: var(--bg-card);
  padding: 1.25rem 1.35rem;
  outline: 0.5px solid var(--border);
}
.glance__label {
  font-size: .73rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fg-faint); margin-bottom: .4rem;
}
.glance__value { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; line-height: 1.3; }
.glance__note { font-size: .82rem; color: var(--fg-faint); margin-top: .3rem; }

/* ---------- Filters ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}
.filter {
  padding: .48rem 1rem; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--bg-card);
  font-size: .85rem; font-weight: 500; color: var(--fg-soft);
  transition: border-color .16s ease, color .16s ease, background-color .16s ease;
}
.filter:hover { border-color: var(--accent); color: var(--fg); }
.filter[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-fg); }

/* ---------- Gallery ---------- */
.grid {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}
.tile {
  position: relative; display: block; padding: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg-alt); box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: box-shadow .25s ease, transform .25s ease;
}
/* Every seventh photo runs double width to break up the grid rhythm. */
@media (min-width: 720px) {
  .tile--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.tile:hover { box-shadow: var(--shadow-md); }
.tile:hover img { transform: scale(1.04); }
.tile__zoom {
  position: absolute; right: .7rem; bottom: .7rem;
  width: 2rem; height: 2rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(20,24,18,.55); color: #fff;
  opacity: 0; transition: opacity .2s ease;
  backdrop-filter: blur(4px);
}
.tile__zoom svg { width: 1rem; height: 1rem; }
.tile:hover .tile__zoom, .tile:focus-visible .tile__zoom { opacity: 1; }

.gallery-empty { color: var(--fg-faint); padding: 2rem 0; }

/* ---------- Cards (sleeping) ---------- */
.cards {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .5rem;
}
.card__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: .6rem;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
}
.card__icon svg { width: 1.3rem; height: 1.3rem; }
.card__name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; }
.card__beds { font-weight: 600; font-size: .93rem; color: var(--accent); }
@media (prefers-color-scheme: dark) { .card__beds { color: #a6c2a3; } }
.card__note { font-size: .89rem; color: var(--fg-soft); }

/* ---------- Amenities ---------- */
.amenities {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.amenity__head { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.amenity__icon { color: var(--accent); }
.amenity__icon svg { width: 1.3rem; height: 1.3rem; }
.amenity__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.amenity__list { display: grid; gap: .55rem; }
.amenity__list li {
  position: relative; padding-left: 1.35rem;
  font-size: .92rem; color: var(--fg-soft);
}
.amenity__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .55;
}

/* ---------- Area ---------- */
.area {
  display: grid; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 860px) { .area { grid-template-columns: 1.1fr 1fr; } }

.area__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.area__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.area__caption {
  font-size: .82rem; color: var(--fg-faint);
  padding: .8rem 1rem; background: var(--bg-card);
}

.area__list { display: grid; gap: 1.1rem; }
.area__list li { border-left: 2px solid var(--border); padding-left: 1.1rem; }
.area__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: .15rem; }
.area__detail { font-size: .9rem; color: var(--fg-soft); }

.schools { margin-top: clamp(2.5rem, 6vw, 4rem); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table {
  width: 100%; border-collapse: collapse; min-width: 420px;
  font-size: .92rem;
}
.table th, .table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--border); }
.table th {
  font-size: .73rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--fg-faint);
}
.table td:nth-child(2), .table td:nth-child(3) { color: var(--fg-soft); white-space: nowrap; }

/* ---------- Rates ---------- */
.rates {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.rate {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.5vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.rate__badge {
  align-self: flex-start; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: 1rem;
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  color: var(--accent);
}
@media (prefers-color-scheme: dark) { .rate__badge { color: #a6c2a3; } }
.rate__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.rate__price {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 2.75rem); font-weight: 500;
  line-height: 1.1; margin-top: .5rem; letter-spacing: -.02em;
}
.rate__unit { font-size: .88rem; color: var(--fg-faint); margin-top: .15rem; }
.rate__lines { margin-top: 1.5rem; display: grid; gap: 0; }
.rate__line {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .72rem 0; border-top: 1px solid var(--border);
  font-size: .9rem;
}
.rate__line dt { color: var(--fg-faint); }
.rate__line dd { text-align: right; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.25rem; padding: 1.2rem .25rem; text-align: left;
  font-size: 1.02rem; font-weight: 500; line-height: 1.45;
}
.faq__q:hover { color: var(--accent); }
.faq__sign { flex: none; width: 1.15rem; height: 1.15rem; margin-top: .22rem; color: var(--fg-faint); transition: transform .25s ease; }
.faq__item.is-open .faq__sign { transform: rotate(45deg); }
.faq__a { padding: 0 .25rem 1.35rem; color: var(--fg-soft); font-size: .95rem; max-width: 68ch; }

/* ---------- Contact ---------- */
.cta-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center;
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
}
.section--cta .fineprint { color: rgba(243,239,230,.55); }

/* ---------- Footer ---------- */
.footer {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  background: var(--bg-alt); border-top: 1px solid var(--border);
  font-size: .84rem; color: var(--fg-faint);
}
.footer__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--fg); }
.footer__loc { margin-bottom: 1.5rem; }
.footer__legal { max-width: 72ch; margin-bottom: .8rem; line-height: 1.6; }
.footer__eho { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-weight: 500; }
.eho svg { width: 1.15rem; height: 1.15rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(12,15,10,.95);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: clamp(.75rem, 3vw, 2rem);
  color: #fff;
  animation: lbIn .2s ease;
}
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__figure {
  grid-column: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  min-width: 0; height: 100%;
}
.lightbox__figure img {
  max-width: 100%; max-height: calc(100svh - 9rem);
  width: auto; object-fit: contain;
  border-radius: 8px;
}
.lightbox__caption {
  display: flex; flex-wrap: wrap; gap: .35rem 1rem;
  justify-content: center; align-items: baseline;
  font-size: .87rem; color: rgba(255,255,255,.75);
  text-align: center; max-width: 60ch;
}
.lightbox__count { color: rgba(255,255,255,.45); font-variant-numeric: tabular-nums; }

.lightbox__close {
  position: absolute; top: clamp(.75rem, 3vw, 1.5rem); right: clamp(.75rem, 3vw, 1.5rem);
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.1); color: #fff;
}
.lightbox__close:hover { background: rgba(255,255,255,.2); }
.lightbox__close svg { width: 1.25rem; height: 1.25rem; }

.lightbox__nav {
  width: 2.8rem; height: 2.8rem; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.1); color: #fff;
  transition: background-color .16s ease;
}
.lightbox__nav:hover { background: rgba(255,255,255,.22); }
.lightbox__nav svg { width: 1.4rem; height: 1.4rem; }
.lightbox__nav--prev { grid-column: 1; }
.lightbox__nav--next { grid-column: 3; }

@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lightbox__figure { grid-column: 1; grid-row: 1; }
  .lightbox__nav { grid-row: 2; }
  .lightbox__nav--prev { grid-column: 1; justify-self: start; }
  .lightbox__nav--next { grid-column: 1; grid-row: 2; justify-self: end; }
  .lightbox__figure img { max-height: calc(100svh - 11rem); }
}

body.is-locked { overflow: hidden; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Print ---------- */
@media print {
  .nav, .hero__scroll, .filters, .lightbox, .section--cta .cta-actions { display: none !important; }
  .hero { min-height: auto; color: #000; }
  .hero__scrim, .hero__media { display: none; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
