/* ============================================================
   ATLANTA BEST REALTY — SHARED STYLESHEET
   Brand colors are defined once below as CSS variables.
   To change the site's color scheme, edit ONLY this block.
   ============================================================ */
:root {
  --navy: #17213B;
  --navy-light: #24345A;
  --navy-lighter: #34456f;
  --gold: #C9973E;
  --gold-dark: #a97c2f;
  --red: #B0272D;
  --cream: #F7F5EF;
  --white: #FFFFFF;
  --ink: #1A1E2B;
  --muted: #5B6472;
  --border: #E4E0D6;
  --shadow: 0 10px 30px rgba(23, 33, 59, 0.08);
  --radius: 10px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 .5em;
  line-height: 1.15;
}
p { margin: 0 0 1em; color: var(--muted); }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
}
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 18px rgba(201,151,62,.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 16px; font-size: .82rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  max-width: 1240px; margin: 0 auto;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--navy); line-height: 1.1; }
.brand-text span { display: block; font-family: var(--font-body); font-weight: 600; font-size: .68rem; letter-spacing: .08em; color: var(--red); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 600; font-size: .93rem; color: var(--ink); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-dark); border-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); font-size: .95rem; }
.nav-phone svg { color: var(--red); flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--navy); }

@media (max-width: 960px) {
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; gap: 0; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
}

/* ---------- Sold-banner hero (homepage) ---------- */
.sold-hero-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy) url("/images/brand/hero-banner.png") center/cover no-repeat;
  padding-top: 28.1%; /* locks the box to the photo's own aspect ratio (1937x544), full width */
}
.sold-logo-badge {
  position: absolute; top: 3%; left: 2%;
  width: 9%; max-width: 70px; min-width: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--white); border: 3px solid var(--white);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.sold-logo-badge img { width: 100%; height: 100%; object-fit: cover; }
.equal-housing-badge {
  position: absolute; top: 3%; right: 2%;
  display: flex; flex-direction: column; align-items: center;
  color: var(--white); text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.equal-housing-badge svg { width: 24px; height: 24px; }
.equal-housing-badge span { font-size: 7px; font-weight: 700; letter-spacing: .02em; text-align: center; max-width: 60px; margin-top: 2px; display: none; }

.sold-ribbon {
  position: absolute; left: 4%; bottom: 10%;
  background: var(--red); color: var(--white);
  padding: 2% 3%; max-width: 240px;
  box-shadow: var(--shadow);
}
.sold-ribbon .sold-word {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 3vw, 2.1rem);
  letter-spacing: .04em; line-height: 1;
}
.sold-ribbon .sold-sub {
  font-size: clamp(.5rem, 1vw, .68rem); font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; margin-top: 6px; opacity: .92;
}

.welcome-strip {
  background: var(--white); text-align: center;
  padding: 26px 20px 30px;
}
.welcome-strip h2 {
  font-size: 1.5rem; letter-spacing: .01em; margin-bottom: 4px;
}
.welcome-strip .by-line {
  color: var(--red); font-weight: 700; font-size: 1.15rem;
  font-family: var(--font-display); margin-bottom: 10px;
}
.welcome-strip .contact-line {
  font-weight: 700; font-size: .92rem; color: var(--ink);
}

.valuation-bar {
  background: var(--navy); padding: 18px 20px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px;
}
.valuation-bar h3 {
  color: var(--white); font-size: 1.05rem; margin: 0; white-space: nowrap;
}
.valuation-form { display: flex; flex-wrap: wrap; gap: 10px; }
.valuation-form input {
  padding: 10px 14px; border-radius: 6px; border: none; font-family: inherit;
  font-size: .9rem; min-width: 160px;
}
.valuation-form button {
  background: var(--red); color: var(--white); border: none; font-weight: 700;
  padding: 10px 22px; border-radius: 6px; cursor: pointer; font-family: inherit;
}

@media (max-width: 760px) {
  .welcome-strip h2 { font-size: 1.2rem; }
  .valuation-bar h3 { white-space: normal; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  background: linear-gradient(180deg, rgba(23,33,59,.78), rgba(23,33,59,.55) 55%, rgba(23,33,59,.85)), var(--navy);
  background-size: cover; background-position: center;
  color: var(--white);
}
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 90px 24px 60px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  padding: 7px 14px; border-radius: 30px; font-size: .82rem; margin-bottom: 24px;
}
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); max-width: 780px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p.lead { color: rgba(255,255,255,.85); max-width: 560px; font-size: 1.08rem; }
.hero-ctas { display: flex; gap: 14px; margin: 28px 0 40px; flex-wrap: wrap; }

.search-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  max-width: 900px;
}
@media (max-width: 800px) { .search-panel { grid-template-columns: 1fr; } }
.field {
  padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: var(--white);
  width: 100%;
}
.field:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

/* ---------- Stats bar ---------- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--navy); font-weight: 700; }
.stat-label { color: var(--muted); font-size: .88rem; margin-top: 2px; }

/* ---------- Section headers ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; flex-wrap: wrap; gap: 16px; }
.section-head h2 { font-size: 2rem; margin: 6px 0 0; }
.view-all { font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }

/* ---------- Listing cards ---------- */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 980px) { .listing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .listing-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(23,33,59,.14); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-light); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 30px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  color: var(--white);
}
.tag.for-sale { background: var(--gold-dark); }
.tag.pending { background: var(--navy-lighter); }
.tag.sold { background: #3d3d3d; }
.tag.coming-soon { background: var(--red); }
.card-body { padding: 18px 20px 20px; }
.card-body h3 { font-size: 1.15rem; margin-bottom: 2px; }
.card-addr { font-size: .87rem; color: var(--muted); margin-bottom: 10px; }
.card-price { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold-dark); font-weight: 700; margin-bottom: 12px; }
.card-meta { display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border); font-size: .85rem; color: var(--muted); }
.card-meta span { display: flex; align-items: center; gap: 5px; }

/* ---------- Trust / feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 800px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px; text-align: left;
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 10px; background: #F3E7D0;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--gold-dark);
}

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testi-name { font-weight: 700; color: var(--navy); margin-top: 14px; }
.testi-loc { font-size: .85rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ---------- Page header (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
}
.page-hero h1 { color: var(--white); font-size: 2.4rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; }

/* Contact page only — Atlanta skyline photo instead of the solid navy fill.
   Save a licensed photo as images/brand/atlanta-skyline.jpg (Unsplash/Pexels
   both have free-to-use Atlanta skyline shots) and this picks it up. The
   navy gradient overlay keeps the white heading text readable on top. */
.page-hero-photo {
  background:
    linear-gradient(180deg, rgba(20,30,51,.82), rgba(20,30,51,.72)),
    url("/images/brand/atlanta-skyline.jpg") center/cover no-repeat;
}

/* ---------- Filters / Listings page ---------- */
.listings-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .listings-layout { grid-template-columns: 1fr; } }
.filters-panel {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; position: sticky; top: 90px;
}
.filters-panel h3 { font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.filters-panel .field { margin-bottom: 12px; }
.filters-sentinel { height: 1px; }
.filters-toggle { display: none; }

/* Mobile only: once the panel scrolls to the top of the viewport, JS adds
   .is-stuck. It then pins just the "Filters" bar, and the actual fields
   collapse into a dropdown instead of staying open and covering the
   listing cards underneath. Desktop keeps its normal 2-column sticky sidebar. */
@media (max-width: 900px) {
  .filters-panel { position: static; }

  .filters-panel.is-stuck {
    position: fixed;
    left: 0; right: 0;
    z-index: 200;
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .filters-panel.is-stuck .filters-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 14px 18px;
    background: var(--white); border-bottom: 1px solid var(--border);
    font-weight: 700; color: var(--navy); font-family: var(--font-display); font-size: 1.05rem;
    cursor: pointer;
  }
  .filters-panel.is-stuck .filters-toggle .chevron { transition: transform .2s ease; }
  .filters-panel.is-stuck.is-open .filters-toggle .chevron { transform: rotate(180deg); }

  .filters-panel:not(.is-stuck) .filters-body { display: block; }
  .filters-panel.is-stuck .filters-body {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .28s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .filters-panel.is-stuck.is-open .filters-body { grid-template-rows: 1fr; }
  .filters-panel.is-stuck .filters-body-inner { overflow: hidden; min-height: 0; padding: 16px 18px 20px; }
  .filters-panel.is-stuck .filters-body-inner h3 { display: none; } /* toggle bar already shows the label */
}

.back-to-top {
  position: fixed; right: 20px; bottom: 24px; z-index: 300;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); cursor: pointer;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-light); }
.filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.results-count { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }

/* ---------- Mortgage calculator ---------- */
.calc-layout { display: grid; grid-template-columns: 380px 1fr; gap: 26px; align-items: start; }
@media (max-width: 900px) { .calc-layout { grid-template-columns: 1fr; } }
.calc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.calc-label { font-weight: 700; font-size: .92rem; color: var(--navy); margin-bottom: 8px; display: flex; justify-content: space-between; }
.calc-group { margin-bottom: 26px; }
input[type="range"] {
  width: 100%; accent-color: var(--gold-dark); height: 6px; cursor: pointer;
}
.term-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.term-row-4 { grid-template-columns: repeat(4,1fr); }
.term-btn {
  padding: 12px; text-align: center; border: 1px solid var(--border); border-radius: 6px; cursor: pointer; font-weight: 700; background: var(--white); color: var(--navy);
}
.term-btn.active { background: var(--gold); border-color: var(--gold); }

.rate-row { display: flex; align-items: center; gap: 10px; }
.rate-row input[type="range"] { flex: 1; }
.rate-step {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); color: var(--navy); font-size: 1.1rem; font-weight: 700; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.rate-step:hover { background: var(--cream); }
.calc-note { font-size: .78rem; color: var(--muted); margin-top: 8px; line-height: 1.45; }

.result-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }
@media (max-width: 700px) { .result-cards { grid-template-columns: 1fr; } }
.result-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.result-card.primary { background: var(--navy); color: var(--white); border: none; }
.result-card .label { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-dark); font-weight: 700; }
.result-card.primary .label { color: var(--gold); }
.result-card .value { font-family: var(--font-display); font-size: 1.7rem; margin-top: 6px; font-weight: 700; }
/* Top padding moved from the wrapper onto the header cells themselves —
   sticky positioning is relative to the scroll container, so padding
   above it was letting scrolled rows peek through above the header. */
.amort-table-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0 20px 20px; max-height: 320px; overflow-y: auto; position: relative; }
table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: .92rem; }
th { text-align: left; color: var(--muted); font-weight: 700; padding: 20px 6px 8px; box-shadow: 0 2px 0 0 var(--border); position: sticky; top: 0; background: var(--white); z-index: 2; }
td { padding: 8px 6px; border-bottom: 1px solid var(--border); color: var(--ink); }

/* ---------- Booking page ---------- */
.book-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .book-layout { grid-template-columns: 1fr; } }
.step-title { font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.pill-row { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.pill { padding: 10px 18px; border-radius: 30px; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-weight: 600; font-size: .9rem; }
.pill.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.date-grid, .time-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 30px; }
.time-grid { grid-template-columns: repeat(3,1fr); }
@media (max-width: 640px) { .date-grid { grid-template-columns: repeat(3,1fr); } .time-grid { grid-template-columns: repeat(2,1fr); } }
.date-cell, .time-cell {
  border: 1px solid var(--border); border-radius: 8px; padding: 12px 6px; text-align: center; cursor: pointer; background: var(--white);
}
.date-cell .dow { font-size: .72rem; color: var(--muted); text-transform: uppercase; }
.date-cell .day { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.date-cell .mon { font-size: .7rem; color: var(--muted); }
.date-cell.selected, .time-cell.selected { background: var(--gold); border-color: var(--gold); }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.form-card h3 { margin-bottom: 16px; }
input[type=text], input[type=email], input[type=tel], input[type=number], textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--font-body); font-size: .95rem; margin-bottom: 14px; color: var(--ink); background: var(--white);
}
textarea { resize: vertical; min-height: 90px; }
.confirm-msg {
  background: #EAF6EE; border: 1px solid #BEE3C8; color: #2C6E3F; padding: 14px 16px; border-radius: 8px; font-weight: 600; margin-top: 14px; display: none;
}
.confirm-msg.show { display: block; }

/* ---------- About page ---------- */
.about-hero { display: grid; grid-template-columns: 420px 1fr; gap: 46px; align-items: center; }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.badge-float {
  position: absolute; bottom: -18px; right: -18px; background: var(--navy); color: var(--white);
  padding: 14px 18px; border-radius: 10px; box-shadow: var(--shadow); font-size: .85rem;
}
@media (max-width: 500px) { .badge-float { right: 10px; bottom: -14px; } }
.about-stats { display: flex; gap: 34px; margin: 22px 0; flex-wrap: wrap; }
.about-stat b { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); display: block; }
.about-stat span { font-size: .85rem; color: var(--muted); }
.cred-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 10px; }
@media (max-width: 800px) { .cred-grid { grid-template-columns: 1fr; } }
.cred-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-align: center; }
.cred-icon { color: var(--gold-dark); margin-bottom: 10px; }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; }
.info-icon { width: 42px; height: 42px; border-radius: 8px; background: #F3E7D0; color: var(--gold-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-row h4 { margin-bottom: 2px; font-size: 1rem; font-family: var(--font-body); color: var(--navy); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-top: 20px; }
.map-frame iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 56px 0 24px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: var(--gold); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 44px; }
.footer-brand-text { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { text-align: center; padding-top: 22px; font-size: .85rem; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; color: var(--white);
  transition: background .15s ease, color .15s ease;
}
.social-icon:hover { background: var(--gold); color: var(--navy); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
