/*
Theme Name: Acre Ranger
Theme URI: https://acreranger.com
Author: Acre Ranger LLC
Author URI: https://acreranger.com
Description: Custom theme for Acre Ranger - Fair Land Buyers. A clean, trustworthy theme designed for land buying business.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: acre-ranger
Tags: land, real-estate, business, custom-logo, custom-menu, featured-images, threaded-comments

Acre Ranger - Fair offers. Straight talk.
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    /* Colors - Primary */
    --color-forest-green: #2D5A3D;
    --color-forest-green-dark: #1E3D29;
    --color-forest-green-light: #3D7A52;

    /* Colors - Secondary */
    --color-earth-brown: #6B4423;
    --color-earth-brown-dark: #4A2F18;
    --color-earth-brown-light: #8B5A2B;

    /* Colors - Accent */
    --color-warm-gold: #D4A84B;
    --color-warm-gold-dark: #B8923F;
    --color-warm-gold-light: #E5C06A;

    /* Colors - Neutrals */
    --color-charcoal: #333333;
    --color-gray-dark: #555555;
    --color-gray: #888888;
    --color-gray-light: #CCCCCC;
    --color-gray-lighter: #F5F5F5;
    --color-white: #FFFFFF;
    --color-off-white: #FAFAF8;

    /* Section Background Colors - HIGH CONTRAST */
    /* Rule: At least 10% lightness difference between adjacent sections */
    --color-sand: #E8DFCF;              /* 87% lightness - clearly warm/tan */
    --color-sand-light: #F2EDE4;        /* 93% lightness - subtle warm tint */
    --color-sage: #D4E5D7;              /* 89% lightness - clearly green-tinted */
    --color-sage-light: #E8F0EA;        /* 94% lightness - subtle green tint */
    --color-cream: #FBF9F4;             /* 97% lightness - near-white warm */

    /* NEW: Extended Green Palette */
    --color-forest-lighter: #4A8B5F;
    --color-forest-dark: #1A3D28;

    /* NEW: Enhanced Gold */
    --color-gold-bright: #E8B84D;
    --color-gold-soft: #F5E6C8;

    /* NEW: Trust Colors */
    --color-trust-blue: #2563EB;
    --color-trust-blue-light: #EEF4FF;

    /* Colors - Feedback */
    --color-success: #2D5A3D;
    --color-error: #C53030;
    --color-warning: #D4A84B;
    --color-info: #2B6CB0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    --text-6xl: 3.75rem;    /* 60px */

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Spacing */
    --space-1: 0.25rem;     /* 4px */
    --space-2: 0.5rem;      /* 8px */
    --space-3: 0.75rem;     /* 12px */
    --space-4: 1rem;        /* 16px */
    --space-5: 1.25rem;     /* 20px */
    --space-6: 1.5rem;      /* 24px */
    --space-8: 2rem;        /* 32px */
    --space-10: 2.5rem;     /* 40px */
    --space-12: 3rem;       /* 48px */
    --space-16: 4rem;       /* 64px */
    --space-20: 5rem;       /* 80px */
    --space-24: 6rem;       /* 96px */

    /* Border Radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-full: 9999px;

    /* Shadows - Enhanced */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

    /* Colored Shadows for CTAs */
    --shadow-green: 0 8px 24px rgba(45, 90, 61, 0.35);
    --shadow-green-lg: 0 12px 32px rgba(45, 90, 61, 0.4);
    --shadow-gold: 0 8px 24px rgba(212, 168, 75, 0.35);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1440px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-normal);
    color: var(--color-charcoal);
    background-color: var(--color-white);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--color-charcoal);
}

h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
}

h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-5);
}

h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

h5 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

h6 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

p {
    margin-bottom: var(--space-4);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-forest-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-forest-green-dark);
    text-decoration: underline;
}

strong, b {
    font-weight: var(--font-semibold);
}

small {
    font-size: var(--text-sm);
}

/* Lists */
ul, ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

li {
    margin-bottom: var(--space-2);
}

/* ==========================================================================
   Layout & Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--space-6);
        padding-right: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: var(--space-8);
        padding-right: var(--space-8);
    }
}

.container--narrow {
    max-width: var(--container-md);
}

.container--wide {
    max-width: var(--container-2xl);
}

/* Section Spacing */
.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--space-20);
        padding-bottom: var(--space-20);
    }
}

.section--sm {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
}

.section--lg {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
}

/* Background Colors */
.bg-white { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }
.bg-gray-light { background-color: var(--color-gray-lighter); }
.bg-green { background-color: var(--color-forest-green); }
.bg-green-dark { background-color: var(--color-forest-green-dark); }

/* NEW: Warm Background Colors */
.bg-sand { background-color: var(--color-sand); }
.bg-cream { background-color: var(--color-cream); }
.bg-sage { background-color: var(--color-sage); }

/* Enhanced green with gradient */
.bg-green-gradient {
    background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest-green) 50%, var(--color-forest-lighter) 100%);
}

/* Green with topo pattern overlay */
.bg-green-pattern {
    background:
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 90 Q30 70 50 75 T90 60' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'/%3E%3Cpath d='M0 70 Q25 50 50 55 T100 40' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.08'/%3E%3Cpath d='M5 50 Q30 30 55 35 T95 20' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.06'/%3E%3C/svg%3E"),
        linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest-green) 100%);
    background-size: 200px 200px, 100% 100%;
}

.bg-green, .bg-green-dark, .bg-green-gradient, .bg-green-pattern {
    color: var(--color-white);
}

.bg-green h1, .bg-green h2, .bg-green h3, .bg-green h4, .bg-green h5, .bg-green h6,
.bg-green-dark h1, .bg-green-dark h2, .bg-green-dark h3, .bg-green-dark h4, .bg-green-dark h5, .bg-green-dark h6,
.bg-green-gradient h1, .bg-green-gradient h2, .bg-green-gradient h3, .bg-green-gradient h4, .bg-green-gradient h5, .bg-green-gradient h6,
.bg-green-pattern h1, .bg-green-pattern h2, .bg-green-pattern h3, .bg-green-pattern h4, .bg-green-pattern h5, .bg-green-pattern h6 {
    color: var(--color-white);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-primary);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    line-height: var(--leading-normal);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.3);
}

/* Primary Button - Enhanced with gradient */
.btn--primary {
    background: linear-gradient(135deg, var(--color-forest-green) 0%, var(--color-forest-lighter) 100%);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: var(--shadow-green), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-forest-green-dark) 0%, var(--color-forest-green) 100%);
    border-color: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3), inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Secondary Button */
.btn--secondary {
    background-color: transparent;
    color: var(--color-forest-green);
    border-color: var(--color-forest-green);
}

.btn--secondary:hover {
    background-color: var(--color-forest-green);
    color: var(--color-white);
}

/* Gold Button */
.btn--gold {
    background-color: var(--color-warm-gold);
    color: var(--color-charcoal);
    border-color: var(--color-warm-gold);
}

.btn--gold:hover {
    background-color: var(--color-warm-gold-dark);
    border-color: var(--color-warm-gold-dark);
}

/* White Button - Enhanced */
.btn--white {
    background-color: var(--color-white);
    color: var(--color-forest-green);
    border-color: var(--color-white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn--white:hover {
    background-color: var(--color-cream);
    border-color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Gold CTA Button - High visibility option */
.btn--gold-cta {
    background: linear-gradient(135deg, var(--color-warm-gold) 0%, var(--color-gold-bright) 100%);
    color: var(--color-forest-dark);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
    font-weight: var(--font-bold);
}

.btn--gold-cta:hover {
    background: linear-gradient(135deg, var(--color-gold-bright) 0%, #F0C55C 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 168, 75, 0.45);
    color: var(--color-forest-dark);
}

/* Button Sizes */
.btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

.btn--xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
}

/* Full Width */
.btn--full {
    width: 100%;
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
}

.form-label--required::after {
    content: ' *';
    color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--color-charcoal);
    background-color: var(--color-white);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-forest-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-gray);
}

.form-input--error,
.form-select--error,
.form-textarea--error {
    border-color: var(--color-error);
}

.form-input--error:focus,
.form-select--error:focus,
.form-textarea--error:focus {
    box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}

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

.form-help {
    margin-top: var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-gray);
}

.form-error {
    margin-top: var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-error);
}

/* Checkbox & Radio */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--color-forest-green);
}

.form-check-label {
    font-size: var(--text-base);
    color: var(--color-charcoal);
}

/* Select */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 44px;
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card--bordered {
    border: 1px solid var(--color-gray-light);
    box-shadow: none;
}

.card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card__body {
    padding: var(--space-6);
}

.card__title {
    margin-bottom: var(--space-3);
}

.card__text {
    color: var(--color-gray-dark);
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: var(--space-8);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-forest-green);
    color: var(--color-white);
    border-radius: var(--radius-full);
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.feature-card__text {
    color: var(--color-gray-dark);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.site-logo__image {
    height: 40px;
    width: auto;
}

.site-logo__text {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-forest-green);
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: var(--space-8);
    }
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav__link {
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
    transition: color var(--transition-fast);
}

.main-nav__link:hover {
    color: var(--color-forest-green);
    text-decoration: none;
}

.main-nav__link--active {
    color: var(--color-forest-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle__icon {
    width: 24px;
    height: 24px;
    color: var(--color-charcoal);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background-color: var(--color-white);
    padding: var(--space-6);
    overflow-y: auto;
}

.mobile-nav--open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-8);
}

.mobile-nav__close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav__item {
    border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav__link {
    display: block;
    padding: var(--space-4) 0;
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--color-charcoal);
}

.mobile-nav__cta {
    margin-top: var(--space-8);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-10);  /* Reduced from space-16 */
    background-color: var(--color-off-white);
    background-image:
        /* Subtle topographic contour lines */
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 90 Q30 70 50 75 T90 60' fill='none' stroke='%232D5A3D' stroke-width='0.5' opacity='0.08'/%3E%3Cpath d='M0 70 Q25 50 50 55 T100 40' fill='none' stroke='%232D5A3D' stroke-width='0.5' opacity='0.06'/%3E%3Cpath d='M5 50 Q30 30 55 35 T95 20' fill='none' stroke='%232D5A3D' stroke-width='0.5' opacity='0.04'/%3E%3C/svg%3E"),
        /* Soft gradient overlay */
        linear-gradient(135deg, rgba(45, 90, 61, 0.03) 0%, transparent 50%, rgba(45, 90, 61, 0.02) 100%);
    background-size: 200px 200px, 100% 100%;
    position: relative;
}

@media (min-width: 768px) {
    .hero {
        padding-top: var(--space-20);
        padding-bottom: var(--space-12);  /* Reduced from space-24 */
    }
}

.hero__inner {
    display: grid;
    gap: var(--space-10);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
    }
}

.hero__content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero__content {
        text-align: left;
    }
}

.hero__tagline {
    display: inline-block;
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-forest-green);
    background-color: rgba(45, 90, 61, 0.1);
    border-radius: var(--radius-full);
}

.hero__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--text-5xl);
    }
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-gray-dark);
    margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: var(--text-xl);
    }
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero__actions {
        justify-content: flex-start;
    }
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-top: var(--space-8);
}

@media (min-width: 1024px) {
    .hero__trust {
        justify-content: flex-start;
    }
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-dark);
}

.hero__trust-icon {
    color: var(--color-forest-green);
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Hero with Background Image */
.hero--with-bg {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    /* Remove default background when using image */
    background-image: none;
    background-color: transparent;
}

/* Picture element needs explicit sizing to fill container */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%; /* Focus on lake area */
    /* Prevent any accidental transforms */
    transform: none;
}

/* Gradient Overlay - Diagonal for text readability */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26, 46, 37, 0.85) 0%,      /* Dark forest green - text area */
        rgba(26, 46, 37, 0.7) 30%,
        rgba(26, 46, 37, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%                  /* Let lake/sky breathe */
    );
}

/* Position content above overlay */
.hero--with-bg .container {
    position: relative;
    z-index: 2;
}

/* Light text on dark overlay */
.hero--with-bg .hero__tagline {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.hero--with-bg .hero__title {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero--with-bg .hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Form card styling on image background */
.hero--with-bg .hero-form {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Mobile: Heavier overlay for text readability */
@media (max-width: 767px) {
    .hero--with-bg {
        min-height: 100svh;
    }

    .hero__bg img {
        object-position: center 80%; /* Show more of the lake on mobile */
    }

    .hero__overlay {
        background: linear-gradient(
            180deg,
            rgba(26, 46, 37, 0.9) 0%,
            rgba(26, 46, 37, 0.75) 40%,
            rgba(26, 46, 37, 0.5) 70%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero__overlay {
        background: linear-gradient(
            160deg,
            rgba(26, 46, 37, 0.85) 0%,
            rgba(26, 46, 37, 0.6) 40%,
            rgba(0, 0, 0, 0.25) 70%,
            transparent 100%
        );
    }
}

/* ==========================================================================
   Process/How It Works Section
   ========================================================================== */

.process {
    background-color: var(--color-white);
}

.process__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.process__steps {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .process__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-10);
    }
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-5);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
    background-color: var(--color-forest-green);
    border-radius: var(--radius-full);
}

.process-step__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.process-step__text {
    color: var(--color-gray-dark);
}

/* Connector line between steps */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(50% + 40px);
        width: calc(100% - 80px);
        height: 2px;
        background: linear-gradient(90deg, var(--color-forest-green) 0%, var(--color-gray-light) 100%);
    }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonials {
    background-color: var(--color-off-white);
}

.testimonial-card {
    background-color: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: var(--space-6);
    position: relative;
    padding-left: var(--space-6);
}

.testimonial-card__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: var(--text-5xl);
    color: var(--color-forest-green);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: var(--font-semibold);
    color: var(--color-charcoal);
}

.testimonial-card__location {
    font-size: var(--text-sm);
    color: var(--color-gray);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-item {
    border-bottom: 1px solid var(--color-gray-light);
}

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

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) 0;
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    text-align: left;
    color: var(--color-charcoal);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-item__question:hover {
    color: var(--color-forest-green);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-forest-green);
    transition: transform var(--transition-fast);
}

.faq-item--open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    display: none;
    padding-bottom: var(--space-5);
    color: var(--color-gray-dark);
}

.faq-item--open .faq-item__answer {
    display: block;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
    background-color: var(--color-forest-green);
    color: var(--color-white);
    text-align: center;
}

.cta__title {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta__text {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 640px) {
    .cta__actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    padding-top: var(--space-16);
    padding-bottom: var(--space-8);
}

.footer__grid {
    display: grid;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    margin-bottom: var(--space-4);
}

.footer__tagline {
    color: var(--color-gray);
    margin-bottom: var(--space-5);
}

.footer__heading {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    margin-bottom: var(--space-4);
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__list li {
    margin-bottom: var(--space-3);
}

.footer__link {
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.footer__link:hover {
    opacity: 1;
    text-decoration: none;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: var(--color-white);
    opacity: 0.8;
}

.footer__bottom {
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__copyright {
    color: var(--color-gray);
    font-size: var(--text-sm);
}

.footer__legal {
    display: flex;
    gap: var(--space-6);
}

.footer__legal a {
    color: var(--color-gray);
    font-size: var(--text-sm);
}

.footer__legal a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   Property Form (Multi-step)
   ========================================================================== */

.property-form {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-8);
    max-width: 600px;
    margin: 0 auto;
}

.property-form__header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.property-form__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.property-form__subtitle {
    color: var(--color-gray-dark);
}

/* Progress Steps */
.form-progress {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-8);
}

.form-progress__step {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.form-progress__dot {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    background-color: var(--color-gray-light);
    color: var(--color-gray);
    transition: all var(--transition-fast);
}

.form-progress__step--active .form-progress__dot {
    background-color: var(--color-forest-green);
    color: var(--color-white);
}

.form-progress__step--completed .form-progress__dot {
    background-color: var(--color-forest-green);
    color: var(--color-white);
}

.form-progress__line {
    width: 40px;
    height: 2px;
    background-color: var(--color-gray-light);
}

.form-progress__step--completed + .form-progress__step .form-progress__line {
    background-color: var(--color-forest-green);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step--active {
    display: block;
}

.form-step__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
    text-align: center;
}

/* Property Type Selection */
.property-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
    .property-type-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.property-type-option {
    position: relative;
}

.property-type-option input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.property-type-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.property-type-option label:hover {
    border-color: var(--color-forest-green);
}

.property-type-option input:checked + label {
    border-color: var(--color-forest-green);
    background-color: rgba(45, 90, 61, 0.05);
}

.property-type-option__icon {
    font-size: var(--text-3xl);
}

.property-type-option__text {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-align: center;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-light);
}

.form-nav__prev {
    flex: 0 0 auto;
}

.form-nav__next {
    flex: 1;
    max-width: 200px;
    margin-left: auto;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-green { color: var(--color-forest-green); }
.text-brown { color: var(--color-earth-brown); }
.text-gold { color: var(--color-warm-gold); }
.text-gray { color: var(--color-gray); }
.text-white { color: var(--color-white); }

.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
