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

:root {
  --gold: #C49A3C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6A1F;
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --navy-soft: #2C4560;
  --cream: #FAF8F3;
  --cream-dark: #F0EDE4;
  --white: #FFFFFF;
  --text-dark: #0D1B2A;
  --text-mid: #445566;
  --text-light: #7A8A9A;
  --border: rgba(196,154,60,0.2);
  --border-light: rgba(13,27,42,0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(13,27,42,0.1);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--cream); line-height: 1.7; font-size: 16px; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 13px; padding: 8px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar span.sep { color: rgba(255,255,255,0.2); }

/* ── NAV ── */
nav { background: var(--white); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-light); box-shadow: 0 2px 12px rgba(13,27,42,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 42px; height: 42px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; }
.logo-text span { font-size: 10px; font-weight: 500; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a { display: block; padding: 8px 14px; font-size: 14px; font-weight: 500; color: var(--text-mid); text-decoration: none; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--cream); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-links .dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); box-shadow: var(--shadow); min-width: 200px; padding: 8px; z-index: 200; }
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a { display: block; border-radius: var(--radius); padding: 9px 14px; font-size: 14px; }
.nav-links .dropdown-menu a:hover { background: var(--cream); color: var(--navy); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 600 !important; padding: 9px 20px !important; border-radius: var(--radius) !important; margin-left: 8px; }
.nav-cta:hover { background: var(--gold-dark) !important; color: var(--white) !important; }
.nav-hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: var(--transition); }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; transition: var(--transition); text-decoration: none; border: none; font-family: var(--font-body); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 580px; line-height: 1.75; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.bg-cream { background: var(--cream-dark); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--white); border-bottom: 1px solid var(--border-light); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 0 12px; border-right: 1px solid var(--border-light); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-num span { color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; }

/* ── PROPERTY CARDS ── */
.prop-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 8px rgba(13,27,42,0.06); transition: var(--transition); text-decoration: none; display: block; }
.prop-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.prop-img { height: 210px; background: var(--navy-soft); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; }
.prop-img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.prop-img-placeholder svg { width: 40px; height: 40px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 1.5; }
.prop-img-placeholder span { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 500; }
.prop-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 3px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.badge-sale { background: var(--gold); color: var(--navy); }
.badge-rent { background: var(--navy); color: var(--white); }
.badge-sold { background: #2D7A4F; color: var(--white); }
.badge-new { background: #C84B2D; color: var(--white); }
.badge-open { background: #1A5FA8; color: var(--white); }
.prop-open-tag { position: absolute; bottom: 12px; left: 12px; background: rgba(13,27,42,0.85); color: var(--white); font-size: 11px; padding: 4px 10px; border-radius: 3px; font-weight: 500; }
.prop-body { padding: 20px; }
.prop-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.prop-addr { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; }
.prop-features { display: flex; gap: 16px; font-size: 13px; color: var(--text-mid); padding: 14px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 14px; }
.prop-feature { display: flex; align-items: center; gap: 5px; }
.prop-feature svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.prop-agent { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-light); }
.agent-avatar { width: 28px; height: 28px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 10px; font-weight: 700; }

/* ── FORMS ── */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-card > p { font-size: 14px; color: var(--text-mid); margin-bottom: 24px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border-light); border-radius: var(--radius); font-size: 14px; font-family: var(--font-body); color: var(--text-dark); background: var(--cream); outline: none; transition: var(--transition); resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background: var(--white); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-submit { width: 100%; padding: 13px; background: var(--navy); color: var(--white); border: none; border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font-body); margin-top: 6px; transition: var(--transition); }
.btn-submit:hover { background: var(--gold); color: var(--navy); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 60px 24px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196,154,60,0.07) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── SUBURB CARDS ── */
.suburb-card { background: var(--navy); border-radius: var(--radius-lg); padding: 24px 20px; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; text-decoration: none; display: block; border-bottom: 3px solid transparent; }
.suburb-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-bottom-color: var(--gold); }
.suburb-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.suburb-count { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.suburb-price { font-size: 13px; font-weight: 600; color: var(--gold); }

/* ── TESTIMONIAL CARDS ── */
.test-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border-light); }
.test-stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.test-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.test-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.test-loc { font-size: 12px; color: var(--text-light); }

/* ── TEAM CARDS ── */
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.team-img { height: 220px; background: var(--navy-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 56px; font-weight: 700; color: rgba(196,154,60,0.4); }
.team-body { padding: 22px; }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.team-role { font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.team-contact { display: flex; gap: 10px; }
.team-contact a { width: 34px; height: 34px; background: var(--cream-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.team-contact a:hover { background: var(--navy); }
.team-contact a svg { width: 14px; height: 14px; stroke: var(--text-mid); fill: none; stroke-width: 1.8; }
.team-contact a:hover svg { stroke: var(--white); }

/* ── CONTACT ITEMS ── */
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--cream-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-value { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-value a { color: inherit; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

/* ── CALCULATOR ── */
.calc-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border-light); }
.calc-result { background: var(--navy); border-radius: var(--radius-lg); padding: 28px; text-align: center; margin-top: 20px; }
.calc-result-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; font-weight: 500; letter-spacing: 0.5px; }
.calc-result-amount { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--gold); }
.calc-result-sub { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 6px; }
.range-wrap { display: flex; align-items: center; gap: 12px; }
.range-wrap input[type=range] { flex: 1; accent-color: var(--gold); }
.range-val { font-size: 14px; font-weight: 600; color: var(--navy); min-width: 80px; text-align: right; }

/* ── FLOATING BUTTONS ── */
.float-bar { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 40px; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 20px rgba(196,154,60,0.4); text-decoration: none; transition: var(--transition); white-space: nowrap; font-family: var(--font-body); border: none; }
.float-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.float-btn-primary { background: var(--gold); color: var(--navy); }
.float-btn-primary:hover { background: var(--navy); color: var(--gold); }
.float-btn-secondary { background: var(--navy); color: var(--white); box-shadow: 0 4px 20px rgba(13,27,42,0.3); }
.float-btn-secondary:hover { background: var(--gold); color: var(--navy); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.6); }
.footer-top { padding: 60px 24px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin: 16px 0 20px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.8; }
.footer-social a:hover svg { stroke: var(--navy); }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 24px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── NOTICE BANNER ── */
.notice { background: rgba(196,154,60,0.12); border: 1px solid rgba(196,154,60,0.3); border-radius: var(--radius); padding: 12px 18px; font-size: 13px; color: var(--text-mid); margin-bottom: 20px; display: flex; gap: 10px; align-items: flex-start; }
.notice svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-2-skew { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.grid-2-hero { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }

/* ── WHY SECTION ── */
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: rgba(196,154,60,0.2); line-height: 1; min-width: 36px; }
.why-content h4 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-content p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }
.perf-item { margin-bottom: 28px; }
.perf-item:last-child { margin-bottom: 0; }
.perf-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; font-weight: 500; }
.perf-bar-wrap { background: rgba(255,255,255,0.08); border-radius: 3px; height: 6px; }
.perf-bar { height: 6px; border-radius: 3px; background: var(--gold); }
.perf-meta { display: flex; justify-content: space-between; margin-top: 5px; font-size: 12px; }
.perf-val { color: var(--gold); font-weight: 600; }
.perf-bench { color: rgba(255,255,255,0.3); }
.perf-box { background: var(--navy-mid); border: 1px solid rgba(196,154,60,0.15); border-radius: var(--radius-lg); padding: 36px; }

/* ── TOOLS CARDS ── */
.tool-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; cursor: pointer; transition: var(--transition); text-decoration: none; display: block; }
.tool-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-2px); }
.tool-icon { width: 56px; height: 56px; background: var(--cream-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.tool-icon svg { width: 24px; height: 24px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.tool-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.tool-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── SEARCH BOX ── */
.search-box { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.search-box h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.search-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-light); margin-bottom: 20px; }
.search-tab { flex: 1; padding: 10px; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent; transition: var(--transition); }
.search-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.search-field { margin-bottom: 14px; }
.search-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.search-field input, .search-field select { width: 100%; padding: 10px 14px; border: 1px solid var(--border-light); border-radius: var(--radius); font-size: 14px; font-family: var(--font-body); color: var(--text-dark); background: var(--cream); outline: none; transition: var(--transition); }
.search-field input:focus, .search-field select:focus { border-color: var(--gold); background: var(--white); }
.search-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── HELP CARDS ── */
.help-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.help-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: var(--transition); }
.help-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.help-card:hover::before { transform: scaleX(1); }
.help-icon { width: 52px; height: 52px; background: var(--cream-dark); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.help-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.help-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.help-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.help-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; letter-spacing: 0.5px; }
.help-link:hover { gap: 10px; }
.help-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; }

/* ── UTILITY ── */
.divider { height: 1px; background: var(--border-light); margin: 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-32 { margin-top: 32px; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(196,154,60,0.12); border: 1px solid rgba(196,154,60,0.25); border-radius: 40px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.pill::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.map-placeholder { background: var(--navy-soft); border-radius: var(--radius-lg); height: 200px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 13px; margin-top: 24px; }
.info-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.info-row:last-child { border-bottom: none; }
.info-row svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-2-skew, .grid-2-hero { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 16px; border-bottom: 1px solid var(--border-light); box-shadow: var(--shadow); }
  .nav-links.open .dropdown-menu { display: block; position: static; box-shadow: none; border: none; padding-left: 12px; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
}

/* ── REAL LOGO IMAGE ── */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-white {
  height: 40px;
  filter: brightness(0) invert(1);  /* Forces white on dark backgrounds */
}
/* Override the old logo-mark and logo-text styles */
.logo { gap: 0; }
.logo-mark { display: none; }
.logo-text { display: none; }

/* ── TOPBAR with two numbers ── */
.topbar-left { gap: 12px; flex-wrap: wrap; }
