/* Haven — real estate agency template by ZumaTools (MIT)
   Recolour by editing the custom properties below. */
:root {
  --brand: #1f4d45;          /* evergreen */
  --brand-ink: #ffffff;
  --accent: #c8a15a;         /* brass */
  --accent-ink: #1b1a14;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-2: #eeece5;
  --text: #17211e;
  --muted: #5a6561;
  --line: #e2dfd6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 50px -30px rgba(15, 35, 30, .35);
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 1rem/1.65 var(--font-body); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--brand); text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -.01em; margin: 0 0 .45em; }
h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
h1 em, h2 em { color: var(--brand); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip { position: absolute; left: 1rem; top: -4rem; background: var(--text); color: var(--bg); padding: .7rem 1rem; border-radius: 8px; z-index: 100; }
.skip:focus { top: 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.eyebrow { font: 700 .75rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--brand); margin-bottom: .9rem; display: inline-block; }
.head-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.head-row h2 { margin: 0; }
.head-row p { max-width: 30rem; color: var(--muted); margin: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem 1.4rem; border-radius: 999px; font: 700 .92rem/1 var(--font-body); text-decoration: none; border: 1.5px solid transparent; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn-primary { background: var(--brand); color: var(--brand-ink); }
.btn-primary:hover { background: color-mix(in srgb, var(--brand) 85%, black); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: color-mix(in srgb, var(--accent) 85%, black); }
.btn-ghost { border-color: var(--line); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--text); }
.btn svg { width: 18px; height: 18px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 2rem; min-height: 74px; }
.logo { display: inline-flex; align-items: center; gap: .55rem; font: 400 1.7rem/1 var(--font-display); color: var(--text); text-decoration: none; margin-right: auto; }
.logo svg { width: 34px; height: 34px; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 600; font-size: .94rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--brand); }
.nav-links a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 8px; }
.nav-cta { display: flex; gap: .6rem; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface); cursor: pointer; color: var(--text); }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .25s, opacity .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; }
.hero .lead { font-size: 1.15rem; color: var(--muted); max-width: 32rem; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-stats b { display: block; font: 400 2.4rem/1 var(--font-display); }
.hero-stats span { font-size: .85rem; color: var(--muted); }
.hero-visual { position: relative; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 4/3.2; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-chip { position: absolute; left: 1rem; top: 1rem; background: var(--surface); border-radius: 999px; padding: .5rem .9rem; font-size: .82rem; font-weight: 700; box-shadow: var(--shadow); display: flex; gap: .4rem; align-items: center; }
.hero-chip i { width: 8px; height: 8px; border-radius: 50%; background: #2fa36b; }
.hero-price { position: absolute; right: 1rem; top: 1rem; background: var(--surface); border-radius: 14px; padding: .8rem 1rem; box-shadow: var(--shadow); font-size: .85rem; }
.hero-price b { font: 400 1.5rem/1 var(--font-display); display: block; }

/* Search */
.search-band { background: var(--brand); padding: 0 0 2rem; }
.search { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1rem; display: grid; grid-template-columns: auto 1.5fr 1fr 1fr 1fr auto; gap: .75rem; align-items: end; transform: translateY(-40%); margin-bottom: -2.2rem; position: relative; z-index: 2; }
.seg { display: inline-flex; background: var(--surface-2); border-radius: 12px; padding: 4px; align-self: stretch; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; }
.seg span { display: flex; align-items: center; height: 100%; padding: 0 1rem; border-radius: 9px; font-weight: 700; font-size: .9rem; cursor: pointer; color: var(--muted); }
.seg input:checked + span { background: var(--surface); color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.seg input:focus-visible + span { outline: 3px solid var(--accent); }
.field { display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.field label { font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { font: inherit; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--text); width: 100%; min-width: 0; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent); }
.search .btn { height: 48px; border-radius: 12px; }
.search-foot { display: flex; justify-content: space-between; gap: 1rem; color: color-mix(in srgb, var(--brand-ink) 85%, transparent); font-size: .9rem; flex-wrap: wrap; }
.search-foot a { color: inherit; }

/* Listings */
.toolbar { display: flex; gap: 1rem; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.toolbar output { font-weight: 700; }
.toolbar .field { flex-direction: row; align-items: center; gap: .6rem; }
.toolbar .field select { width: auto; padding: .55rem .8rem; }
.chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chips button { font: 700 .85rem/1 var(--font-body); padding: .6rem 1rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--surface); color: var(--text); cursor: pointer; }
.chips button[aria-pressed="true"] { background: var(--text); color: var(--bg); border-color: var(--text); }
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card { background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; position: relative; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--surface-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-media img { transform: scale(1.05); }
.badge { position: absolute; left: .8rem; top: .8rem; background: var(--surface); color: var(--text); font: 800 .7rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; padding: .45rem .65rem; border-radius: 999px; }
.badge.rent { background: var(--accent); color: var(--accent-ink); }
.badge.new { left: auto; right: .8rem; background: var(--brand); color: var(--brand-ink); }
.card-body { padding: 1.2rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.price { font: 400 1.9rem/1 var(--font-display); }
.price small { font: 600 .85rem var(--font-body); color: var(--muted); }
.card h3 { font: 700 1.02rem/1.35 var(--font-body); margin: .2rem 0 0; letter-spacing: 0; }
.card h3 a { color: var(--text); text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card .addr { color: var(--muted); font-size: .9rem; margin: 0; }
.specs { display: flex; gap: 1.1rem; list-style: none; padding: .9rem 0 0; margin: auto 0 0; border-top: 1px solid var(--line); font-size: .88rem; font-weight: 600; flex-wrap: wrap; }
.specs li { display: inline-flex; gap: .35rem; align-items: center; }
.specs svg { width: 18px; height: 18px; color: var(--brand); }
.empty { text-align: center; padding: 3rem 1rem; color: var(--muted); grid-column: 1 / -1; background: var(--surface); border-radius: var(--radius); border: 1px dashed var(--line); }

/* Why / features */
.why { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.why-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.why-item svg { width: 36px; height: 36px; color: var(--brand); margin-bottom: .8rem; }
.why-item h3 { font: 700 1.05rem/1.3 var(--font-body); margin-bottom: .3rem; letter-spacing: 0; }
.why-item p { margin: 0; color: var(--muted); font-size: .93rem; }

/* Agents */
.dark { background: var(--brand); color: var(--brand-ink); }
.dark .eyebrow { color: var(--accent); }
.dark h2 em { color: var(--accent); }
.dark .head-row p { color: color-mix(in srgb, var(--brand-ink) 78%, transparent); }
.agents { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.agent { background: color-mix(in srgb, var(--brand-ink) 7%, transparent); border: 1px solid color-mix(in srgb, var(--brand-ink) 14%, transparent); border-radius: var(--radius); padding: 1.5rem; }
.avatar { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; font: 400 1.7rem/1 var(--font-display); color: var(--accent-ink); background: var(--accent); margin-bottom: 1rem; position: relative; }
.avatar::after { content: ""; position: absolute; right: 2px; bottom: 2px; width: 14px; height: 14px; border-radius: 50%; background: #2fa36b; border: 3px solid var(--brand); }
.agent h3 { font-size: 1.6rem; margin: 0; }
.agent .role { font-size: .88rem; color: color-mix(in srgb, var(--brand-ink) 75%, transparent); margin: 0 0 1rem; }
.agent dl { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin: 0 0 1.2rem; font-size: .85rem; }
.agent dt { color: color-mix(in srgb, var(--brand-ink) 70%, transparent); }
.agent dd { margin: 0; font-weight: 700; }
.agent a.btn { width: 100%; background: var(--brand-ink); color: var(--brand); }

/* Testimonials */
.quotes { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1.25rem; }
.quote { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; }
.quote blockquote { margin: 0 0 1.4rem; font: 400 1.35rem/1.35 var(--font-display); }
.quote:first-child blockquote { font-size: 1.8rem; }
.quote figcaption { margin-top: auto; font-size: .9rem; color: var(--muted); }
.quote figcaption b { color: var(--text); display: block; }

/* CTA */
.cta { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 8px); display: grid; grid-template-columns: 1.2fr 1fr; overflow: hidden; }
.cta > div { padding: clamp(2rem, 5vw, 3.5rem); }
.cta img { width: 100%; height: 100%; object-fit: cover; }
.cta form { display: flex; gap: .6rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cta form .field { flex: 1 1 220px; }

/* Footer */
.site-footer { background: #111a17; color: #c9d1cd; padding: 4rem 0 2rem; font-size: .93rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer .logo { color: #fff; }
.site-footer h2 { font: 800 .75rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; margin-top: 3rem; font-size: .82rem; color: #9aa6a1; }
.form-msg { margin: 1rem 0 0; padding: .9rem 1rem; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--brand) 10%, var(--surface)); color: var(--text); border-left: 4px solid var(--brand); width: 100%; }
.form-msg[hidden] { display: none; }

/* Listing detail */
.crumbs { font-size: .88rem; color: var(--muted); padding: 1.5rem 0 1rem; }
.crumbs a { color: inherit; }
.detail-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.detail-head h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin: .3rem 0 .2rem; }
.detail-head .addr { color: var(--muted); margin: 0; }
.detail-head .price { font-size: clamp(2.2rem, 4vw, 3rem); text-align: right; }
.tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.tag { font: 800 .7rem/1 var(--font-body); letter-spacing: .06em; text-transform: uppercase; padding: .45rem .65rem; border-radius: 999px; background: var(--surface-2); }
.tag.sale { background: var(--brand); color: var(--brand-ink); }
.photos { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: .75rem; border-radius: var(--radius); overflow: hidden; position: relative; }
.photos figure { margin: 0; background: var(--surface-2); overflow: hidden; }
.photos figure:first-child { grid-row: span 2; }
.photos img { width: 100%; height: 100%; object-fit: cover; }
.photos .more { position: absolute; right: 1rem; bottom: 1rem; }
.detail { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; padding: 2.5rem 0 5rem; align-items: start; }
.keyfacts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; margin-bottom: 2.5rem; }
.keyfacts div { text-align: center; }
.keyfacts svg { width: 26px; height: 26px; margin: 0 auto .4rem; color: var(--brand); }
.keyfacts b { display: block; font: 400 1.7rem/1 var(--font-display); }
.keyfacts span { font-size: .82rem; color: var(--muted); }
.detail h2 { font-size: 2.1rem; margin-top: 2.5rem; }
.detail h2:first-child { margin-top: 0; }
.spec-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.spec-table th, .spec-table td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
.spec-table th { font-weight: 600; color: var(--muted); width: 45%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem 1rem; list-style: none; padding: 0; margin: 0; }
.amenities li { display: flex; gap: .5rem; align-items: center; font-size: .95rem; }
.amenities li::before { content: ""; width: 18px; height: 18px; flex: none; border-radius: 50%; background: color-mix(in srgb, var(--brand) 14%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f4d45' stroke-width='3'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/12px no-repeat; }
.mortgage { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.mortgage .inputs { display: grid; gap: .9rem; }
.range-row { display: flex; justify-content: space-between; font-size: .85rem; }
.range-row output { font-weight: 800; }
input[type="range"] { width: 100%; accent-color: var(--brand); }
.result { background: var(--surface-2); border-radius: var(--radius-sm); padding: 1.3rem; display: flex; flex-direction: column; gap: .8rem; }
.result .monthly { font: 400 2.8rem/1 var(--font-display); }
.result .monthly small { font: 600 .9rem var(--font-body); color: var(--muted); }
.bar { display: flex; height: 12px; border-radius: 999px; overflow: hidden; background: var(--line); }
.bar i { display: block; height: 100%; }
.bar .pi { background: var(--brand); } .bar .tx { background: var(--accent); } .bar .ins { background: #7aa39a; }
.breakdown { list-style: none; padding: 0; margin: 0; font-size: .88rem; display: grid; gap: .3rem; }
.breakdown li { display: flex; justify-content: space-between; gap: 1rem; }
.breakdown li span:first-child::before { content: ""; display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: .5rem; vertical-align: middle; background: var(--c); }
.fineprint { font-size: .8rem; color: var(--muted); margin: 0; }
.aside { position: sticky; top: 96px; display: grid; gap: 1.25rem; }
.agent-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.agent-top { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.2rem; }
.agent-top .avatar { margin: 0; width: 60px; height: 60px; font-size: 1.4rem; }
.agent-top .avatar::after { border-color: var(--surface); }
.agent-top h2 { font-size: 1.5rem; margin: 0; }
.agent-top p { margin: 0; color: var(--muted); font-size: .88rem; }
.agent-card form { display: grid; gap: .8rem; }
.agent-card .row { display: flex; gap: .6rem; }
.agent-card .row .btn { flex: 1; }
.checkbox { display: flex; gap: .5rem; align-items: flex-start; font-size: .85rem; color: var(--muted); }
.checkbox input { margin-top: .25rem; accent-color: var(--brand); }
.floorplan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.map-block { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); position: relative; min-height: 260px; background: #e9eee7; }
.map-block svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .search { grid-template-columns: 1fr 1fr 1fr; transform: translateY(-25%); }
  .search .seg { grid-column: 1 / -1; justify-self: start; }
  .listings { grid-template-columns: repeat(2, 1fr); }
  .agents { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr; }
  .aside { position: static; }
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote:first-child { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.25rem 1.2rem; background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .no-js .nav-links { display: flex; position: static; flex-direction: row; flex-wrap: wrap; gap: 1rem; box-shadow: none; }
  .hero-grid, .why, .cta { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mortgage { grid-template-columns: 1fr; }
  .photos { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 140px 140px; }
  .photos figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .cta img { max-height: 260px; }
}
@media (max-width: 600px) {
  .nav-cta { display: none; }
  .search { grid-template-columns: 1fr 1fr; transform: none; margin: 0 0 1rem; }
  .search-band { padding-top: 1.25rem; }
  .search .field-q, .search .btn { grid-column: 1 / -1; }
  .hero-chip { display: none; }
  .hero-copy { padding-bottom: 1.5rem !important; }
  .listings, .why-list, .agents, .quotes, .footer-grid { grid-template-columns: 1fr; }
  .keyfacts { grid-template-columns: 1fr 1fr; }
  .detail-head .price { text-align: left; }
  .amenities { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.detail section > h2:first-child { margin-top: 2.5rem; }
