/* ==========================================================================
   Birchwood Village Apartments
   Palette derived from the property logo: deep brown, warm gold, cream.
   ========================================================================== */

:root {
  --ink:        #2E1C12;
  --brown:      #4A2C17;
  --brown-mid:  #6B4426;
  --body:       #6B5849;
  --body-soft:  #7A6758;   /* 4.98:1 on cream, 4.57:1 on cream-deep — WCAG AA */

  --gold:       #A9813F;
  --gold-deep:  #8C6A31;
  --gold-soft:  #E9DCC1;

  --cream:      #FAF6EE;
  --cream-deep: #F3ECDF;
  --card:       #FFFFFF;

  --line:       rgba(74, 44, 23, .14);
  --line-soft:  rgba(74, 44, 23, .08);

  --shadow-sm:  0 1px 2px rgba(46, 28, 18, .05), 0 2px 8px rgba(46, 28, 18, .04);
  --shadow-md:  0 4px 12px rgba(46, 28, 18, .07), 0 12px 32px rgba(46, 28, 18, .07);
  --shadow-lg:  0 8px 24px rgba(46, 28, 18, .10), 0 24px 64px rgba(46, 28, 18, .12);

  --serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --header-h: 76px;
  --radius: 14px;
  --radius-lg: 22px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { color: var(--ink); font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }
a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
address { font-style: normal; }
button { font: inherit; color: inherit; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brown); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 10px; text-decoration: none; transition: top .18s ease;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--sans); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease,
              transform .2s ease, box-shadow .2s ease;
}
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn .ico { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn .ico-end { width: 17px; height: 17px; }

.btn-primary { background: var(--brown); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--brown); border-color: var(--line); }
.btn-ghost:hover { background: rgba(74, 44, 23, .05); border-color: var(--brown); transform: translateY(-2px); }

.btn-cream { background: var(--cream); color: var(--brown); box-shadow: var(--shadow-sm); }
.btn-cream:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-light { background: transparent; color: var(--gold-soft); border-color: rgba(233, 220, 193, .38); }
.btn-outline-light:hover { background: rgba(233, 220, 193, .12); border-color: var(--gold-soft); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 238, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line-soft); box-shadow: 0 2px 20px rgba(46, 28, 18, .06); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; object-fit: contain; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--serif); font-size: 1.22rem; font-weight: 600; color: var(--brown); letter-spacing: -.01em; }
.brand-sub { font-size: .625rem; letter-spacing: .19em; text-transform: uppercase; color: var(--body-soft); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; align-items: center; gap: 27px; }
.nav-list a {
  position: relative; color: var(--body); text-decoration: none;
  font-size: .93rem; font-weight: 500; padding: 6px 0;
  transition: color .18s ease;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-list a:hover { color: var(--brown); }
.nav-list a:hover::after,
.nav-list a.is-current::after { transform: scaleX(1); }
.nav-list a.is-current { color: var(--brown); font-weight: 600; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 11px; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle .bar { width: 19px; height: 1.8px; background: var(--brown); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 15px;
}
.eyebrow-light { color: var(--gold-soft); }

.section { padding: clamp(64px, 8vw, 108px) 0; }
.section-alt { background: var(--cream-deep); }

.section-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 58px); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.section-lede { margin-top: 16px; font-size: 1.06rem; color: var(--body); }

/* ---------- Hero ---------- */
.hero { padding: clamp(52px, 7vw, 92px) 0 clamp(58px, 7vw, 96px); }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.12fr;
  gap: clamp(32px, 4vw, 56px); align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.35rem, 5vw, 3.9rem);
  line-height: 1.06; letter-spacing: -.022em;
}
.lede { margin-top: 22px; font-size: 1.13rem; line-height: 1.6; max-width: 46ch; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 44px);
  margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-facts li { display: flex; flex-direction: column; gap: 2px; }
.hero-facts strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--brown); line-height: 1.1; }
.hero-facts span { font-size: .8rem; color: var(--body-soft); letter-spacing: .02em; }

.hero-media { position: relative; }
.hero-figure {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--cream-deep);
}
.hero-figure img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }

.hero-badge {
  position: absolute; left: -18px; bottom: -26px;
  display: flex; align-items: center; gap: 13px;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 15px 20px;
  box-shadow: var(--shadow-md); max-width: 300px;
}
.hero-badge svg { width: 25px; height: 25px; fill: var(--gold); flex: none; }
.hero-badge span { display: flex; flex-direction: column; font-size: .78rem; color: var(--body-soft); line-height: 1.4; }
.hero-badge strong { font-size: .92rem; color: var(--ink); font-weight: 600; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.feature-ico {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 12px; background: var(--gold-soft); color: var(--brown); margin-bottom: 18px;
}
.feature-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.14rem; margin-bottom: 9px; }
.feature p { font-size: .93rem; color: var(--body-soft); line-height: 1.6; }

/* ---------- Amenities ---------- */
.amen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.amen-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.amen-card h3 { display: flex; align-items: center; gap: 14px; font-size: 1.4rem; margin-bottom: 24px; }
.amen-rule { width: 30px; height: 2px; background: var(--gold); flex: none; border-radius: 2px; }

.check-list { display: grid; gap: 13px; }
.check-list li {
  position: relative; padding-left: 31px; font-size: .97rem; color: var(--body);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--gold-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.6l4.4 4.4L19 7.4' fill='none' stroke='%234A2C17' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px 11px no-repeat;
}
.check-list em { font-style: normal; color: var(--body-soft); font-size: .89em; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  padding: 9px 19px; border-radius: 999px; border: 1.5px solid var(--line);
  background: transparent; color: var(--body); font-size: .88rem; font-weight: 500;
  cursor: pointer; transition: all .2s ease;
}
.chip:hover { border-color: var(--brown); color: var(--brown); }
.chip.is-active { background: var(--brown); border-color: var(--brown); color: #fff; }

.gallery { columns: 4; column-gap: 16px; }
.shot {
  display: block; width: 100%; padding: 0; margin: 0 0 16px; border: 0;
  background: var(--cream-deep); border-radius: var(--radius); overflow: hidden;
  cursor: zoom-in; break-inside: avoid; position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
}
.shot img { width: 100%; transition: transform .5s ease, filter .3s ease; }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(46, 28, 18, .28), transparent 55%);
  opacity: 0; transition: opacity .28s ease;
}
.shot:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.shot:hover img { transform: scale(1.045); }
.shot:hover::after { opacity: 1; }
.shot[hidden] { display: none; }

.gallery-empty { text-align: center; color: var(--body-soft); padding: 40px 0; }

/* ---------- Policies ---------- */
.policy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.policy-card {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.policy-head { display: flex; align-items: center; gap: 15px; margin-bottom: 16px; }
.policy-ico {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 13px; background: var(--gold-soft); color: var(--brown); flex: none;
}
.policy-ico svg { width: 26px; height: 26px; fill: currentColor; }
.policy-card h3 { font-size: 1.35rem; }
.policy-note { font-size: .97rem; color: var(--body); margin-bottom: 24px; }
.policy-note strong { color: var(--ink); }

.spec { display: grid; gap: 0; }
.spec > div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 13px 0; border-top: 1px solid var(--line-soft);
}
.spec dt { font-size: .92rem; color: var(--body-soft); }
.spec dd { font-size: .97rem; font-weight: 600; color: var(--ink); text-align: right; }

/* ---------- Location ---------- */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line-soft);
  background: var(--cream-deep);
}
.map-wrap iframe { width: 100%; height: clamp(300px, 42vw, 460px); border: 0; }
.map-link { margin-top: 20px; font-size: .96rem; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 880px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 19px clamp(20px, 2.4vw, 28px); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.09rem; line-height: 1.4; }
.faq-item summary:hover h3 { color: var(--brown-mid); }
.faq-chevron {
  width: 11px; height: 11px; flex: none; margin-right: 3px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-3px) rotate(45deg); transition: transform .22s ease;
}
.faq-item[open] .faq-chevron { transform: translateY(2px) rotate(-135deg); }
.faq-answer { padding: 0 clamp(20px, 2.4vw, 28px) 22px; }
.faq-answer p { color: var(--body); font-size: .97rem; max-width: 70ch; }
.faq-answer a { color: var(--gold-deep); font-weight: 600; }

/* ---------- Contact ---------- */
.section-contact {
  background:
    linear-gradient(rgba(46, 28, 18, .90), rgba(46, 28, 18, .94)),
    url("../img/gallery/courtyard-water-feature.jpg") center 35% / cover no-repeat;
  color: var(--gold-soft);
}
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(38px, 5vw, 70px); align-items: start; }
.section-contact h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.lede-light { margin-top: 20px; font-size: 1.06rem; color: rgba(233, 220, 193, .82); max-width: 48ch; }

.contact-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.contact-fine { margin-top: 26px; font-size: .92rem; color: rgba(233, 220, 193, .68); }
.contact-fine a { color: var(--gold-soft); font-weight: 600; }

.contact-cards { display: grid; gap: 18px; }
.info-card {
  background: rgba(250, 246, 238, .07);
  border: 1px solid rgba(233, 220, 193, .17);
  border-radius: var(--radius); padding: 28px 30px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.info-card h3 { color: #fff; font-size: 1.16rem; margin-bottom: 18px; }

.hours > div, .contact-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 11px 0; border-top: 1px solid rgba(233, 220, 193, .13);
  font-size: .93rem;
}
.hours dt { color: rgba(233, 220, 193, .70); }
.hours dd { color: #fff; font-weight: 500; text-align: right; }

.contact-list .cl-label { color: rgba(233, 220, 193, .70); flex: none; }
.contact-list a, .contact-list address, .contact-list span:not(.cl-label) { color: #fff; text-align: right; }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list address { line-height: 1.55; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-deep); padding: clamp(48px, 6vw, 72px) 0 30px; border-top: 1px solid var(--line-soft); }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { width: 200px; height: auto; }
.site-footer h4 { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--body-soft); margin-bottom: 16px; }
.footer-nav ul { display: grid; gap: 10px; }
.footer-nav a, .footer-contact a { color: var(--body); text-decoration: none; font-size: .94rem; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--brown); text-decoration: underline; }
.footer-contact address { font-size: .94rem; line-height: 1.7; color: var(--body); }
.footer-contact p { margin-top: 10px; font-weight: 600; }

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: clamp(36px, 5vw, 56px); padding-top: 24px; border-top: 1px solid var(--line-soft);
}
.footer-bottom p { font-size: .8rem; color: var(--body-soft); }
.eho { display: flex; align-items: center; gap: 9px; }
.eho-ico { width: 19px; height: 19px; fill: var(--body-soft); flex: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(28, 17, 10, .93);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 5vh 20px; opacity: 0; transition: opacity .25s ease;
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }

.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: min(1000px, 92vw); }
.lb-figure img {
  max-width: 100%; max-height: 78vh; width: auto; object-fit: contain;
  border-radius: 10px; box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}
.lb-figure figcaption { color: var(--gold-soft); font-size: .93rem; text-align: center; max-width: 60ch; }

.lb-close {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(233, 220, 193, .25);
  background: rgba(255, 255, 255, .07); color: var(--gold-soft);
  font-size: 1.9rem; line-height: 1; cursor: pointer; transition: all .2s ease;
}
.lb-nav {
  width: 50px; height: 50px; border-radius: 50%; flex: none;
  border: 1px solid rgba(233, 220, 193, .25); background: rgba(255, 255, 255, .07);
  color: var(--gold-soft); font-size: 2rem; line-height: 1; cursor: pointer;
  transition: all .2s ease;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255, 255, 255, .16); color: #fff; border-color: rgba(233, 220, 193, .5); }

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .gallery { columns: 3; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 14px 24px 26px; box-shadow: var(--shadow-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: 15px 2px; border-bottom: 1px solid var(--line-soft); font-size: 1.02rem; }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 20px; width: 100%; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-figure img { aspect-ratio: 4 / 3; }  /* stacked: full width already, don't add height */
  .hero-badge { left: auto; right: 8px; bottom: -22px; max-width: 270px; }
  .lede { max-width: none; }

  .amen-grid, .policy-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 20px; }
  .gallery { columns: 2; column-gap: 12px; }
  .shot { margin-bottom: 12px; }
  .hero-facts { gap: 22px 30px; }
  .hero-facts strong { font-size: 1.35rem; }
  .brand-name { font-size: 1.08rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .lb-nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox { padding: 4vh 12px; gap: 6px; }
  .spec > div, .hours > div, .contact-list li { flex-direction: column; gap: 3px; align-items: flex-start; }
  .spec dd, .hours dd, .contact-list a, .contact-list address, .contact-list span:not(.cl-label) { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 359px) {
  .gallery { columns: 1; }
}

/* ---------- Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .nav, .filters, .lightbox, .map-wrap, .hero-actions, .contact-actions { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  .section { padding: 18px 0; }
  .reveal { opacity: 1; transform: none; }
  .faq-item > *:not(summary) { display: block !important; }
  .faq-chevron { display: none; }
}