/* Rashmi Malleshappa — Realtor | site.css
   Palette: magenta pulled from her headshot, on warm ink + soft paper.
   Base type is 18px on purpose — her clients skew older. */

:root {
  --magenta: #D81B6A;
  --magenta-deep: #A8104F;
  --ink: #16121A;
  --paper: #FDFBFC;
  --paper-2: #F7F1F4;
  --blush: #FBE9F1;
  --stone: #6E6470;
  --line: #E9DEE4;
  --text: #221C26;
  --white: #FFFFFF;
  --shadow: 0 18px 40px -22px rgba(22, 18, 26, .35);
  --radius: 14px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; margin: 0; text-wrap: balance; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); font-variation-settings: "opsz" 144, "SOFT" 50; }
h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); font-variation-settings: "opsz" 96; }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta);
}
.lede { font-size: 1.2rem; color: var(--stone); max-width: 36em; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 4px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  min-height: 54px; padding: .8rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1.05rem; text-decoration: none; border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer; font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--magenta); color: var(--white); }
.btn-primary:hover { background: var(--magenta-deep); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--blush); }
.btn svg { width: 20px; height: 20px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: var(--white);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  position: relative; overflow: hidden;
}
.brand-mark::after { content: ""; position: absolute; inset: auto -8px -8px auto; width: 22px; height: 22px; border-radius: 50%; background: var(--magenta); }
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; letter-spacing: -.01em; }
.brand-name span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; padding: .6rem .85rem; border-radius: 999px; font-weight: 600; font-size: .98rem; color: var(--ink); white-space: nowrap; }
.nav-cta .btn { white-space: nowrap; }
.brand-name span { white-space: nowrap; }
.nav-links a:hover { background: var(--blush); color: var(--magenta-deep); }
.nav-links a[aria-current="page"] { color: var(--magenta-deep); }
.nav-cta { display: flex; align-items: center; gap: .5rem; }
.nav-cta .btn { min-height: 46px; padding: .55rem 1.2rem; font-size: .98rem; }
.nav-toggle {
  display: none; width: 48px; height: 48px; border: 1px solid var(--line); background: var(--white); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: transform .2s, opacity .2s; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 3rem 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: end; }
.hero-copy { padding-bottom: 4rem; align-self: center; }
.hero-copy h1 em { font-style: italic; color: var(--magenta); font-variation-settings: "opsz" 144, "SOFT" 100; }
.hero-copy .lede { margin-top: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2.2rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.hero-trust div { display: flex; flex-direction: column; gap: .15rem; }
.hero-trust strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.hero-trust span { font-size: .85rem; color: var(--stone); font-weight: 600; }
.hero-photo { position: relative; align-self: end; max-width: 470px; width: 100%; justify-self: end; padding-top: 2rem; }
.hero-photo::before {
  content: ""; position: absolute; inset: 12% 4% 0 4%;
  background: linear-gradient(160deg, var(--magenta) 0%, var(--magenta-deep) 100%);
  border-radius: 999px 999px 0 0;
}
.hero-photo img {
  position: relative; width: 100%; height: auto;
  -webkit-mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 88%, transparent 100%);
}
.hero-badge {
  position: absolute; left: -.5rem; bottom: 2.2rem; z-index: 2;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: .9rem 1.1rem; display: flex; gap: .8rem; align-items: center; max-width: 280px;
}
.hero-badge .dot { width: 12px; height: 12px; border-radius: 50%; background: #1F9D55; box-shadow: 0 0 0 4px rgba(31,157,85,.18); flex: none; }
.hero-badge strong { display: block; font-size: .98rem; }
.hero-badge span { font-size: .85rem; color: var(--stone); }

/* Generic section spacing */
.section { padding: 5rem 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.4rem; }
.section-head p { margin-top: .6rem; }
.section-head .btn { flex: none; }
.band { background: var(--paper-2); }
.band-ink { background: var(--ink); color: var(--white); }
.band-ink .lede { color: #CFC6CC; }
.band-ink .eyebrow { color: #FF7FB4; }

/* Listings */
.listing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.listing {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
}
.listing:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.listing-media { position: relative; aspect-ratio: 4 / 3; background: var(--paper-2); overflow: hidden; }
.listing-media img { width: 100%; height: 100%; object-fit: cover; }
.listing-rep { font-size: .85rem; font-weight: 700; color: var(--magenta-deep); }
.listing-media .placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: var(--stone); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.listing-media .placeholder svg { width: 54px; height: 54px; opacity: .45; margin-bottom: .5rem; }
.listing-media canvas { width: 100%; height: 100%; display: block; }
.status { position: absolute; top: .9rem; left: .9rem; padding: .3rem .7rem; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--white); color: var(--ink); }
.status-active { background: #1F9D55; color: var(--white); }
.status-pending { background: #E0A100; color: var(--ink); }
.status-sold { background: var(--ink); color: var(--white); }
.listing-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; font-variant-numeric: tabular-nums; }
.price small { font-family: var(--font-body); font-size: .8rem; color: var(--stone); font-weight: 600; margin-left: .4rem; }
.addr { font-weight: 700; }
.addr span { display: block; font-weight: 500; color: var(--stone); font-size: .95rem; }
.facts { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .95rem; color: var(--stone); font-variant-numeric: tabular-nums; margin-top: .3rem; padding-top: .8rem; border-top: 1px solid var(--line); }
.facts b { color: var(--ink); font-weight: 800; }
.listing-note { margin-top: 1.2rem; font-size: .9rem; color: var(--stone); }

/* Single featured listing */
.feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.feature-gallery { display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: .6rem; padding: .6rem; }
.feature-main { position: relative; margin: 0; border-radius: 10px; overflow: hidden; min-height: 320px; background: var(--paper-2); }
@media (max-width: 980px) { .feature-main { aspect-ratio: 4 / 3; min-height: 0; } }
.feature-main img { width: 100%; height: 100%; object-fit: cover; }
.feature-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.thumb { padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: var(--paper-2); cursor: pointer; aspect-ratio: 4 / 3; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.is-active { border-color: var(--magenta); }
.thumb:hover { border-color: var(--ink); }
.feature-body { padding: 2rem 2.2rem 2rem 0; display: flex; flex-direction: column; gap: .6rem; }
.feature-title { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-top: .4rem; }
.feature-sub { color: var(--stone); }
.feature-price { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin-top: .6rem; }
.feature-price .price { font-size: 2.3rem; }
.price-label { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); }
.feature-rep { font-size: .95rem; color: var(--magenta-deep); font-weight: 700; }
.feature-desc { color: var(--text); font-size: 1rem; margin-top: .4rem; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem 1.2rem; margin: 1rem 0 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.specs dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
.specs dd { margin: .1rem 0 0; font-weight: 700; }
.feature .btn { align-self: start; }

/* Listing detail page */
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: .9rem; color: var(--stone); padding: 1.2rem 0 0; list-style: none; margin: 0; }
.crumbs a { text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--magenta-deep); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.detail-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; flex-wrap: wrap; padding: 1.4rem 0 1.6rem; }
.detail-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-top: .5rem; }
.detail-head .sub { color: var(--stone); margin-top: .3rem; font-size: 1.05rem; }
.detail-price { text-align: right; }
.detail-price .price { font-size: clamp(2rem, 3.6vw, 2.8rem); display: block; }
.detail-price .price-label { display: block; margin-top: .2rem; }
.detail-price .status { position: static; display: inline-block; margin-bottom: .6rem; }
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: .6rem; height: clamp(320px, 46vw, 560px); }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 12px; background: var(--paper-2); cursor: zoom-in; }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.03); }
.gallery .more { position: absolute; right: .8rem; bottom: .8rem; background: var(--ink); color: var(--white); padding: .45rem .8rem; border-radius: 999px; font-size: .85rem; font-weight: 700; }
.detail-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 3rem; align-items: start; padding: 3rem 0 4rem; }
.keyfacts { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.keyfacts div { display: flex; flex-direction: column; }
.keyfacts strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; line-height: 1.1; }
.keyfacts span { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
.detail-section { padding-top: 2.4rem; }
.detail-section h2 { font-size: 1.7rem; margin-bottom: 1rem; }
.detail-section .body { font-size: 1.08rem; max-width: 62ch; }
.detail-section .body + .body { margin-top: 1rem; }
.feature-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem; }
.feature-cols h3 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); margin-bottom: .6rem; }
.feature-cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.feature-cols li { padding-left: 1.3rem; position: relative; font-size: 1rem; }
.feature-cols li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); }
.facts-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.5rem; margin: 0; }
.facts-table div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
.facts-table dt { color: var(--stone); font-weight: 600; }
.facts-table dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; text-align: right; }
.schools { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.schools li { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.schools span { color: var(--stone); font-weight: 600; }
.agent-card { position: sticky; top: 100px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.agent-card .who { display: flex; gap: 1rem; align-items: center; }
.agent-card .who img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: top; border: 3px solid var(--blush); }
.agent-card .who strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.agent-card .who span { font-size: .85rem; color: var(--stone); font-weight: 600; }
.agent-card p { font-size: .98rem; color: var(--stone); }
.agent-card .btn { justify-content: center; }
.agent-card .fine { font-size: .8rem; color: var(--stone); }
.sold-note { background: var(--blush); color: var(--magenta-deep); border-radius: 12px; padding: 1rem 1.2rem; font-size: .95rem; font-weight: 600; }
/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(22,18,26,.94); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 100%); max-height: 84vh; object-fit: contain; border-radius: 8px; }
.lightbox button { position: absolute; background: var(--white); color: var(--ink); border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; }
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; }
.lightbox .lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count { position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); color: var(--white); font-weight: 700; font-size: .9rem; }
@media (max-width: 980px) {
  .detail-grid { grid-template-columns: 1fr; }
  .agent-card { position: static; }
  .feature-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; height: auto; }
  .gallery figure { aspect-ratio: 4 / 3; }
  .gallery figure:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery figure:nth-child(n+4) { display: none; }
  .detail-price { text-align: left; }
  .feature-cols, .facts-table { grid-template-columns: 1fr; }
  .lightbox { padding: 0; }
  .lightbox .lb-prev, .lightbox .lb-next { width: 44px; height: 44px; }
}

/* Why Rashmi */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pillar { padding-top: 1.4rem; border-top: 3px solid var(--magenta); }
.pillar h3 { margin-bottom: .6rem; }
.pillar p { color: var(--stone); font-size: 1.02rem; }
.pillar .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--magenta); line-height: 1; display: block; margin-bottom: .8rem; }

/* Process */
.process { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 0; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-size: 1.6rem; color: #FF7FB4; line-height: 1.2; }
.steps h3 { color: var(--white); margin-bottom: .3rem; }
.steps p { color: #CFC6CC; font-size: 1rem; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.stars { color: var(--magenta); letter-spacing: .1em; font-size: 1.05rem; }
.review blockquote { margin: 0; font-family: var(--font-display); font-size: 1.22rem; line-height: 1.4; font-variation-settings: "opsz" 48; }
.review footer { margin-top: auto; font-size: .95rem; color: var(--stone); }
.review footer strong { color: var(--ink); display: block; }
.review-gate { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; padding: 1.3rem 1.5rem; background: var(--blush); border-radius: var(--radius); }
.review-gate p { flex: 1 1 320px; font-size: 1rem; color: var(--magenta-deep); }
.review-gate .lock { width: 40px; height: 40px; flex: none; }

/* About */
.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3.5rem; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; object-position: top; background: var(--blush); }
.about-photo::after { content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem; border: 2px solid var(--magenta); border-radius: var(--radius); z-index: -1; }
.about-copy p + p { margin-top: 1rem; }
.about-copy .lede { margin-top: 1rem; }
.about-copy .body { color: var(--text); font-size: 1.05rem; }
.about-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 2rem; margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.about-meta dt { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); font-weight: 700; }
.about-meta dd { margin: .15rem 0 0; font-weight: 600; }

/* Areas */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.areas span { padding: .55rem 1rem; border: 1px solid var(--line); background: var(--white); border-radius: 999px; font-weight: 600; font-size: .98rem; }

/* Contact / CTA */
.cta { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
.cta h2 { color: var(--white); }
.cta h2 em { font-style: italic; color: #FF7FB4; }
.contact-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 1.8rem; display: grid; gap: 1.1rem; }
.contact-card a.row { display: flex; align-items: center; gap: .9rem; text-decoration: none; padding: .9rem 1rem; border: 1px solid var(--line); border-radius: 12px; font-weight: 700; font-size: 1.05rem; }
.contact-card a.row:hover { border-color: var(--magenta); background: var(--blush); }
.contact-card a.row svg { width: 24px; height: 24px; color: var(--magenta); flex: none; }
.contact-card a.row small { display: block; font-weight: 600; color: var(--stone); font-size: .85rem; }
.contact-card .hours { font-size: .92rem; color: var(--stone); }

/* Footer */
.site-footer { padding: 3rem 0 2rem; border-top: 1px solid var(--line); background: var(--paper-2); font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-grid h4 { margin: 0 0 .7rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-grid a { text-decoration: none; font-weight: 600; }
.footer-grid a:hover { color: var(--magenta-deep); }
.legal { margin-top: 2.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 2rem; color: var(--stone); font-size: .85rem; }
.legal a { text-decoration: none; }
.eho { display: inline-flex; align-items: center; gap: .5rem; }
.eho svg { width: 22px; height: 22px; }

/* Sticky call bar (mobile) */
.call-bar { display: none; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .process, .about, .cta { grid-template-columns: 1fr; }
  .listing-grid, .pillars, .reviews { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-bottom: 2rem; }
  .feature { grid-template-columns: 1fr; }
  .feature-body { padding: 0 1.4rem 1.6rem; }
  .hero-photo { max-width: 520px; }
  .about-photo { max-width: 420px; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-toggle { display: block; }
  .site-header { position: sticky; }
  .nav { position: static; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); padding: .8rem 1.25rem 1.2rem; gap: .2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .9rem 1rem; font-size: 1.1rem; }
  .nav-cta .btn-outline { display: none; }
  .nav-cta { gap: .5rem; }
  .nav-cta .btn-primary { width: 48px; min-height: 48px; padding: 0; justify-content: center; border-radius: 50%; font-size: 0; }
  .nav-cta .btn-primary svg { width: 22px; height: 22px; }
  .brand-name strong { font-size: 1.05rem; }
  .brand-name span { font-size: .62rem; letter-spacing: .08em; }
  .brand-mark { width: 40px; height: 40px; }
  .nav { min-height: 68px; }
  .call-bar .btn { min-width: 0; padding-inline: 1rem; }
  .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); }
  .section { padding: 3.5rem 0; }
  .section-head { flex-direction: column; align-items: start; }
  .listing-grid, .pillars, .reviews, .footer-grid, .about-meta { grid-template-columns: 1fr; }
  .specs { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 2.4rem; }
  .hero-badge { left: .5rem; bottom: 1rem; }
  .hero-trust { gap: 1rem 1.6rem; }
  .site-header { transition: transform .28s ease; }
  body.scroll-up .site-header { transform: translateY(-100%); }
  .call-bar { transform: translateY(110%); transition: transform .28s ease; }
  body.scroll-up .call-bar { transform: translateY(0); }
  .call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; gap: .6rem; padding: .7rem 1rem;
    background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
    padding-bottom: calc(.7rem + env(safe-area-inset-bottom));
  }
  .call-bar .btn { flex: 1; justify-content: center; }
  .site-footer { padding-bottom: 6.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  body.scroll-up .site-header { transform: none; }
  body.scroll-up .call-bar, .call-bar { transform: none; }
}
