/* ============================================
   YOUR SOVEREIGN LAND PARTNERS , Global Styles
   Brand: Georgia font, dark/gold palette
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Georgia', 'Georgia Pro', 'Times New Roman', serif;
    background-color: #0C0C0C;
    color: #F5EFE0;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }

/* COLOR PALETTE */
:root {
    --black: #0C0C0C;
    --black-soft: #111111;
    --black-card: #161412;
    --black-card-hover: #1E1A16;
    --gold: #C9952A;
    --gold-light: #E8B84B;
    --gold-pale: #F5E6C0;
    --gold-deep: #8A6820;
    --cream: #F5EFE0;
    --offwhite: #FAF7F2;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --muted: #9C9080;
    --border-gold: rgba(201, 149, 42, 0.25);
    --shadow-gold: rgba(201, 149, 42, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.4);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: bold;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

h1 { font-size: 3.2rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.4rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.75rem; }

/* Paragraphs inherit color from their section so light backgrounds (.vision, .featured-properties, .path-right, etc.) get dark text and dark backgrounds get cream text. Body color provides the cream default. */
p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ============================================
   LIGHT-SECTION CONTRAST FIXES
   The standard gold (#C9952A) has ~2.5:1 contrast on cream/white , fails WCAG AA.
   These rules use --gold-deep (#8A6820, ~4.7:1) for gold accents on light backgrounds.
   Higher specificity ensures these win against inline page rules.
   ============================================ */
.vision .vision-label,
.featured-properties .featured-label,
.path-right .path-label,
section[class*="light"] .featured-label,
.featured-properties .property-card .property-price,
.featured-properties .property-card .tag,
.vision .featured-label,
.path-right .featured-label {
    color: var(--gold-deep);
}

/* Tag pill on white card: deepen background tint AND text color */
.featured-properties .property-card .tag {
    background-color: rgba(138, 104, 32, 0.12);
    color: var(--gold-deep);
}

/* Vision quote: was --text-mid italic , too thin to read on cream.
   Also: style.css has a separate `.vision-quote { background: var(--black-soft); }` rule
   for a different page layout. Override BOTH color and background here so the homepage
   italic-quote design renders correctly on cream. */
.vision .vision-quote,
.featured-properties .vision-quote,
.path-right .vision-quote {
    background: transparent;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 500;
    padding: 1rem 0 1rem 2rem;
    border-top: none;
    border-bottom: none;
    text-align: left;
}

/* Property card titles on light cards: style.css's `.property-content h4 { color: gold-light }`
   was designed for cards on dark sections. On the homepage's white property cards it makes
   titles unreadable. Restore dark titles. */
.featured-properties .property-card .property-title,
.featured-properties .property-content h4,
.featured-properties .property-card h3,
.featured-properties .property-card h4 {
    color: var(--text-dark);
}

/* Decorative gold elements on light sections , checkmarks, dividers */
.path-right .path-features li:before {
    color: var(--gold-deep);
}
.path-right .path-divider {
    background-color: var(--gold-deep);
}

/* style.css has unscoped `.path-features li { color: var(--cream); }` designed for the
   dark `.path-left` side. On `.path-right` (cream background) it makes list items invisible. */
.path-right .path-features li {
    color: var(--text-dark);
}

/* Universal: ANY property-card (white bg) , gold price text must be deep gold for contrast.
   Covers index.html, properties.html, and any other page using the .property-card pattern.
   Only override where the current rule is gold-on-light (the broken case). */
.property-card .property-price,
.property-card .featured-label,
.property-card .property-label {
    color: var(--gold-deep);
}

/* index.html `.tag` chips (rgba gold bg, gold text) , bump both for contrast.
   properties.html uses `.property-tag` with gold-pale bg + text-dark already, leave alone. */
.featured-properties .property-card .tag {
    background-color: rgba(138, 104, 32, 0.14);
    color: var(--gold-deep);
}

/* Properties page filter bar / count line , sits on offwhite */
.filter-bar .property-count,
.properties-section .property-count,
.section-header .property-count {
    color: var(--gold-deep);
}

.brand-name {
    font-family: 'Georgia', serif;
    font-weight: bold;
    color: var(--gold);
}

em { font-style: italic; color: var(--gold); }

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* LAYOUT */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-dark { background-color: var(--black); }
.section-soft { background-color: var(--black-soft); }
.section-light {
    background-color: var(--offwhite);
    color: var(--text-dark);
}
.section-light p { color: var(--text-mid); }
.section-light h2, .section-light h3 { color: var(--text-dark); }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 4px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--cream);
    border-color: var(--cream);
}
.btn-outline:hover {
    background-color: var(--cream);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--black-card);
    color: var(--cream);
    border-color: var(--gold);
}
.btn-dark:hover {
    background-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.btn-small { padding: 10px 24px; font-size: 0.9rem; }
.btn-large { padding: 18px 48px; font-size: 1.1rem; }

.btn-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(12, 12, 12, 0.96);
    border-bottom: 1px solid var(--border-gold);
    padding: 0 2rem;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 72px;
    display: flex;
    align-items: center;
}

nav .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
}

nav .logo-link img {
    height: 46px;
    width: auto;
}

nav .logo-text {
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--gold);
    white-space: nowrap;
}

nav .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav .nav-links a {
    color: var(--cream);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

nav .nav-links a:hover {
    color: var(--gold);
}

nav .nav-links .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.nav-dropdown > a::after {
    content: ' \25BE';
    font-size: 0.75rem;
    opacity: 0.6;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 12, 12, 0.97);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    margin-top: 0.5rem;
    backdrop-filter: blur(12px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.25rem;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--cream);
}

.dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(201, 149, 42, 0.08);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background-color: var(--cream);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* HERO SECTION */
.hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.8) 0%, rgba(18, 16, 12, 0.75) 100%);
    z-index: 1;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
}

.hero .logo-large {
    height: 200px;
    width: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 0 25px rgba(201, 149, 42, 0.35));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gold-pale);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* PAGE HERO (shorter, for inner pages) */
.page-hero {
    margin-top: 72px;
    padding: 5rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    border-bottom: 1px solid var(--border-gold);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
}

/* TRUST BAR */
.trust-bar {
    background-color: var(--black);
    padding: 1.75rem 2rem;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--cream);
}

.trust-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

/* CARDS */
.card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.card-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.card h4 {
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 0;
}

/* GRID LAYOUTS */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* PROPERTY CARDS */
.property-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.property-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--black);
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.property-content {
    padding: 1.5rem;
}

.property-content h4 {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.property-meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.property-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(201, 149, 42, 0.12);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.property-note {
    color: var(--muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 0;
}

/* TWO COLUMN SPLIT */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.split-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* PROCESS / STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1.25rem;
    font-family: 'Georgia', serif;
}

.step h4 {
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* STATS ROW */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    text-align: center;
    padding: 3rem 0;
}

.stat {
    min-width: 140px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    font-family: 'Georgia', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

/* On light sections, --muted (#9C9080) fails AA contrast on cream , use text-mid instead */
.section-light .stat-label,
.vision .stat-label,
.featured-properties .stat-label,
.path-right .stat-label {
    color: var(--text-mid);
}

/* CHECKLIST */
.checklist {
    max-width: 700px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 149, 42, 0.1);
}

.check-item:last-child { border-bottom: none; }

.check-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item p {
    margin: 0;
    font-size: 1.05rem;
}

/* CTA SECTION */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    border-top: 1px solid var(--border-gold);
}

.cta-section h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* CONTACT FORM */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 4px;
    color: var(--cream);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--shadow-gold);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* FOOTER */
footer {
    background: var(--black);
    border-top: 1px solid var(--border-gold);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: none;
    object-fit: contain;
    margin-bottom: 1rem;
}

footer h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

footer ul li {
    margin-bottom: 0.6rem;
}

footer ul a {
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer ul a:hover { color: var(--gold); }

.footer-contact p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact a {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 149, 42, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* INNER PAGE ICON CONTAINERS (shared styling for all icon-type wrappers) */
.benefit-icon,
.info-icon,
.offer-icon,
.step-icon,
.solution-icon,
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(201, 149, 42, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon svg,
.info-icon svg,
.offer-icon svg,
.step-icon svg,
.solution-icon svg,
.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

/* Centered icon variant for card layouts */
.serve-card .benefit-icon,
.serve-card .offer-icon,
.serve-card .solution-icon,
.serve-card .why-icon {
    margin: 0 auto 1.25rem;
}

/* GOLD DIVIDER */
.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.gold-line-center {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

/* ICON BOX */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(201, 149, 42, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    html { font-size: 15px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    section { padding: 3.5rem 0; }

    .hero h1 { font-size: 2.2rem; }
    .hero .logo-large { height: 140px; }

    nav .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(12, 12, 12, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border-gold);
    }

    nav .nav-links.active { display: flex; }
    .hamburger { display: flex; }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin: 0;
        border: none;
        background: none;
        padding: 0.5rem 0 0 1rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }

    .stats-row { gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .trust-items { gap: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .btn-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero .logo-large { height: 110px; }
    .container { padding: 0 1.25rem; }
}

/* ============================================
   HOMEPAGE-SPECIFIC STYLES
   ============================================ */

/* HERO , overlay + background-image variant */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.82) 0%, rgba(18, 16, 12, 0.7) 100%);
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-headline {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--cream);
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--gold-pale);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* TRUST BAR , trust-grid variant */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.trust-bar .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-bar .trust-item h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.trust-bar .trust-item p {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* TWO PATHS */
.two-paths {
    background: var(--black-soft);
}

.two-paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.path-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.path-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.path-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 149, 42, 0.12);
    border: 1px solid var(--border-gold);
}

.path-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.path-card h2 {
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.path-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.path-features {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.path-features li {
    padding: 0.4rem 0;
    color: var(--cream);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.path-features li::before {
    content: '\2713';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* SECTION HEADER (shared) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.section-header h2 {
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* WHO WE SERVE */
.who-we-serve {
    background: var(--black);
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.serve-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.serve-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 149, 42, 0.12);
    border: 1px solid var(--border-gold);
}

.serve-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.serve-card h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.serve-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.serve-card a {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.serve-card a:hover {
    color: var(--gold-light);
}

/* HOW IT WORKS , TABS */
.how-it-works {
    background: var(--black-soft);
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}

.tab-button {
    padding: 12px 36px;
    border: 2px solid var(--border-gold);
    background: transparent;
    color: var(--muted);
    font-family: 'Georgia', serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:first-child {
    border-radius: 6px 0 0 6px;
}

.tab-button:last-child {
    border-radius: 0 6px 6px 0;
}

.tab-button.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.process-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-family: 'Georgia', serif;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.process-arrow {
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.process-arrow svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

/* FEATURED PROPERTIES */
.featured-properties {
    background: var(--black);
}

.featured-properties .properties-grid,
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.property-details {
    padding: 1.5rem;
}

.property-details h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.property-location {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.property-specs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.spec {
    background: rgba(201, 149, 42, 0.12);
    color: var(--gold);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.property-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* VISION QUOTE */
.vision-quote {
    background: var(--black-soft);
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.vision-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
}

.vision-quote blockquote p {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.4;
    margin: 0;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-gold);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--cream);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE , HOMEPAGE-SPECIFIC
   ============================================ */
@media (max-width: 1024px) {
    .two-paths-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: repeat(2, 1fr); }
    .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-headline { font-size: 2.2rem; }
    .serve-grid { grid-template-columns: 1fr; }
    .properties-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { flex-direction: column; align-items: center; }
    .process-arrow { display: none; }
    .process-step { max-width: 100%; }
    .vision-quote blockquote p { font-size: 1.4rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* ============================================
   INNER PAGE STYLES , Shared Components
   ============================================ */

/* Section title (centered heading) */
.section-title {
    text-align: center;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-light .section-title { color: var(--text-dark); }

/* Hero subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto;
}
.page-hero .hero-subtitle {
    color: var(--muted);
}

/* Intro text */
.intro-text {
    font-size: 1.1rem;
    color: var(--cream);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}
.section-light .intro-text { color: var(--text-mid); }

/* Card grid aliases */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Process grid 3-column variant */
.process-grid-3 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.process-grid-3 .process-step {
    flex: 1;
    max-width: 350px;
}

/* Section CTA inline (centered button within sections) */
.section-cta-inline {
    text-align: center;
    margin-top: 2.5rem;
}

/* Approach grid (2-column: text + checklist) */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.approach-text h3 {
    color: var(--gold-light);
    margin-bottom: 1rem;
}
.section-light .approach-text h3 { color: var(--text-dark); }

.approach-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.approach-checklist h3 {
    color: var(--gold-light);
    margin-bottom: 1.25rem;
}
.section-light .approach-checklist h3 { color: var(--text-dark); }

/* Checklist styling (shared for sellers, attorneys, municipalities) */
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(201, 149, 42, 0.08);
}
.checklist li:last-child { border-bottom: none; }

.checklist li svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist li span {
    font-size: 1rem;
    line-height: 1.5;
}
.section-light .checklist li span { color: var(--text-mid); }

/* Compliance / Opportunity text blocks */
.compliance-text,
.opportunity-text {
    max-width: 900px;
    margin: 0 auto;
}
.compliance-text p,
.opportunity-text p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Stat value (large stat number) */
.stat-value {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.25rem;
    font-family: 'Georgia', serif;
}
.section-light .stat-value { color: var(--gold-deep); }

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.benefit h3 {
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.benefit p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.benefit-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.benefit-card h4 {
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.section-light .benefit-card { background: #fff; border-color: #e5ddd0; }
.section-light .benefit-card h4 { color: var(--text-dark); }
.section-light .benefit-card p { color: var(--text-mid); }

/* Financing section (buyers page) */
.financing-content {
    max-width: 800px;
    margin: 0 auto;
}

.financing-intro {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.section-light .financing-intro { color: var(--text-dark); }

.financing-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.financing-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 149, 42, 0.1);
    line-height: 1.6;
}
.financing-list li:last-child { border-bottom: none; }
.section-light .financing-list li { color: var(--text-mid); }

.financing-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(201, 149, 42, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}
.section-light .financing-note { background: rgba(201, 149, 42, 0.08); }

/* Opportunity grid (developers page) */
.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.opportunity-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.opportunity-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
}

.opportunity-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Offer grid (developers page) */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offer-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.offer-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.offer-card h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.offer-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Model steps (developers page) */
.model-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.model-step {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
}

.model-step h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.model-step p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Checklist grid (developers + realtors pages) */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.checklist-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: var(--gold);
}

.checklist-item svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item h4 {
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: normal;
}

/* Problem grid (realtors page) */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.problem-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.problem-number {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-family: 'Georgia', serif;
}

.problem-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Solution grid (realtors page) */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.solution-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.solution-card h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Process steps agents (realtors page) */
.process-steps-agents {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.process-step-agent {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem 1rem;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-family: 'Georgia', serif;
}

.process-step-agent h3 {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.process-step-agent p {
    color: var(--cream);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Why grid (realtors page) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Amenities grid (properties page) */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-item {
    text-align: center;
    padding: 1.5rem;
}

.amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--gold);
}
.section-light .amenity-icon { color: var(--gold-deep); }

.amenity-item h4 {
    margin-bottom: 0.5rem;
}
.section-light .amenity-item h4 { color: var(--text-dark); }
.section-light .amenity-item p { color: var(--text-mid); }

/* Founder story (about page) */
.founder-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-text h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.founder-text h3 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.founder-text p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.founder-image {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}

.founder-image svg {
    width: 100%;
    height: auto;
}

/* Mission box (about page) */
.mission-box {
    max-width: 900px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.section-light .mission-statement { color: var(--gold-deep); }

.mission-box p {
    line-height: 1.8;
}

/* Differentiators grid (about page) */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.differentiator-card {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.differentiator-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.differentiator-card .card-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.differentiator-card .card-icon svg {
    width: 48px;
    height: 48px;
}

.differentiator-card h4 {
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}

.differentiator-card p {
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Milestones row (about page) */
.milestones-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    text-align: center;
}

.milestone {
    min-width: 120px;
}

.milestone-stat {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.25rem;
    font-family: 'Georgia', serif;
}
.section-light .milestone-stat { color: var(--gold-deep); }

.milestone-label {
    font-size: 0.9rem;
    color: var(--muted);
}
.section-light .milestone-label { color: var(--text-mid); }

/* Section CTA (full-width CTA bands on inner pages) */
.section-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    border-top: 1px solid var(--border-gold);
}

.section-cta h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-cta p {
    color: var(--cream);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact page layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper {
    background: var(--black-card);
    padding: 2.5rem;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
}

@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.5rem; }
}

/* CTA container */
.cta-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-light .cta-container h2 { color: var(--text-dark); }

.cta-container p {
    color: var(--cream);
    margin-bottom: 2rem;
}
.section-light .cta-container p { color: var(--text-mid); }

/* Property info (buyers page property cards) */
.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.property-description {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.property-acres {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Section classes for developers/realtors custom sections */
.opportunity,
.what-we-offer,
.partnership-model,
.why-partner,
.problem-section,
.solution-section,
.how-it-works-agents,
.what-agents-get,
.why-choose-yslp {
    padding: 5rem 0;
    background: var(--black);
}

.opportunity:nth-child(odd),
.what-we-offer,
.partnership-model,
.problem-section,
.how-it-works-agents,
.why-choose-yslp {
    background: var(--black);
}

.what-we-offer,
.solution-section,
.what-agents-get {
    background: var(--black-soft);
}

/* Bare .section class (used in properties and about pages) */
.section {
    padding: 5rem 0;
}

/* ============================================
   RESPONSIVE , INNER PAGE SPECIFIC
   ============================================ */
@media (max-width: 1024px) {
    .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .opportunity-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .problem-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .differentiators-grid { grid-template-columns: 1fr; }
    .founder-story { grid-template-columns: 1fr; }
    .checklist-grid { grid-template-columns: 1fr; }
    .model-steps { flex-direction: column; align-items: center; }
    .model-step { max-width: 400px; }
    .process-grid-3 { flex-direction: column; align-items: center; }
    .process-grid-3 .process-step { max-width: 100%; }
}

@media (max-width: 768px) {
    .card-grid-3 { grid-template-columns: 1fr; }
    .card-grid-4 { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
    .opportunity-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .problem-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .milestones-row { gap: 1.5rem; }
    .process-steps-agents { flex-direction: column; align-items: center; }
    .process-steps-agents .process-arrow { display: none; }
    .process-step-agent { max-width: 100%; min-width: auto; }
    .page-hero h1 { font-size: 2rem; }
    .stats-row { gap: 1.5rem; }
    .stat-value { font-size: 2rem; }
    .founder-image { display: none; }
}

/* ============================
   NAV FEATURED LINK , Boulder Run highlight
   Added April 20, 2026 by yslp-overnight-website-polish task
   ============================ */
.nav-featured {
    position: relative;
    color: #c9a961 \!important;
    font-weight: 700 \!important;
    letter-spacing: 0.02em;
}
.nav-featured::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a961, transparent);
    opacity: 0.85;
}
.nav-featured:hover {
    color: #e2c27a \!important;
}
@media (max-width: 768px) {
    .nav-featured::after { bottom: -2px; }
}

/* ============================================
   MOBILE NAV CRAMMING FIX
   On narrow viewports the long "Your Sovereign Land Partners" text in the logo-link
   was overlapping the hamburger menu. Shrink the text and tighten the layout.
   ============================================ */
@media (max-width: 768px) {
    nav .logo-text {
        font-size: 0.85rem !important;
        white-space: normal;
        line-height: 1.15;
    }
    nav .logo-link img {
        height: 36px !important;
    }
    nav .nav-inner {
        gap: 0.5rem;
    }
}
@media (max-width: 480px) {
    nav .logo-text {
        font-size: 0.75rem !important;
    }
    nav .logo-link img {
        height: 32px !important;
    }
}


/* yslp-fixes-260510 */
.tab-button.active {
  color: #0c0c0c !important;
  background: var(--accent-gold, #c9a961) !important;
}


/* yslp-v3-polish 2026-05-10 */

/* Tighten the icon strip (the one that used to have emojis) */
.trust-items, .feature-row, .pillar-row {
  gap: 1.25rem;
}
.trust-items > *, .feature-row > *, .pillar-row > * {
  padding: 1.5rem 1rem;
}

/* Make the SVG icons sit consistently above their label */
.trust-items svg, .feature-row svg, .pillar-row svg {
  margin: 0 auto 0.6rem;
  display: block;
}

/* Section heads that contain only an h2 - tighten the gap */
section h2 {
  letter-spacing: 0.02em;
}

/* Card hover: subtle */
.card:hover, .feature:hover, .property-card:hover, .pillar:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}

/* Buttons consistent paddings */
.btn, .button, a.btn-primary, a.btn-secondary {
  letter-spacing: 0.18em;
}

/* Headings rendered with better leading */
h1, h2, h3 { line-height: 1.18; }

/* Body text just a hair larger so it doesn't feel cramped */
body, p { font-size: 17px; }
@media (max-width: 768px) {
  body, p { font-size: 16px; }
}

/* Lead/intro lines under hero h1 */
.hero p, .intro-text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer brand text contrast */
footer p, .footer p {
  color: rgba(237, 232, 220, 0.70);
}

/* Eliminate any residual gold-on-gold tab issue */
.tab-button.active, button.tab-button.active, .filter-btn.active {
  color: #0c0c0c !important;
}

/* Empty/dead anchors should not render as links */
a[href="#"]:not(.nav-dropdown > a) {
  pointer-events: none;
  opacity: 0.85;
}
