/* ============================================================ ROOT */
:root {
    --forest:       #1C3A2A;
    --forest-mid:   #254D39;
    --forest-lt:    #2E6347;
    --sage:         #7FA882;
    --sage-lt:      #A8C5AA;
    --gold:         #C9973A;
    --gold-lt:      #DEB96A;
    --cream:        #F5F0E8;
    --cream-mid:    #EDE6D8;
    --white:        #FFFFFF;
    --text:         #1A2B1E;
    --text-mid:     #3A4E3E;
    --text-lt:      #6B7E6E;
    --border:       #D8E2D8;
    --shadow:       rgba(28,58,42,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ============================================================ NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(28,58,42,0.96); backdrop-filter: blur(12px);
    padding: 0 2.5rem; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid rgba(127,168,130,0.2);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { display: block; height: 38px; width: auto; max-width: min(160px,40vw); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--sage-lt); }
.nav-cta {
    background: var(--gold); color: var(--forest) !important;
    padding: 0.55rem 1.4rem; border-radius: 4px;
    font-weight: 600 !important; font-size: 0.875rem;
    transition: all 0.2s !important; letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--gold-lt) !important; transform: translateY(-1px); }

/* ============================================================ HERO */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: flex-end;
    overflow: hidden;
}

/* Background image layer — swap src to your photo */
.hero-bg {
    position: absolute; inset: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

/* Fallback gradient when no image is present */
.hero-bg-fallback {
    position: absolute; inset: 0;
    background: linear-gradient(
        160deg,
        #0E2018 0%,
        #1C3A2A 35%,
        #254D39 65%,
        #1A3025 100%
    );
}

/* Dark overlay over photo for text legibility */
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,20,14,0.92) 0%,
        rgba(10,20,14,0.55) 45%,
        rgba(10,20,14,0.2) 100%
    );
}

/* Texture grain */
.hero-grain {
    position: absolute; inset: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-inner {
    position: relative; z-index: 2;
    max-width: 1100px; margin: 0 auto; width: 100%;
    padding: 140px 2.5rem 5rem;
}

.hero-region {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--sage-lt); margin-bottom: 1.5rem;
}
.hero-region::before { content: ''; display: block; width: 28px; height: 1px; background: var(--sage-lt); }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900; line-height: 1.05;
    color: var(--white); letter-spacing: -0.5px;
    margin-bottom: 1.5rem; max-width: 780px;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
    font-size: 1.1rem; color: rgba(255,255,255,0.65);
    font-weight: 300; line-height: 1.75; max-width: 540px; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: var(--forest);
    padding: 0.9rem 2.25rem; border-radius: 4px;
    font-weight: 700; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s; letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(201,151,58,0.35);
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,151,58,0.4); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.75);
    padding: 0.9rem 2.25rem; border-radius: 4px;
    font-weight: 500; font-size: 0.95rem; text-decoration: none;
    transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: white; }

/* Hero towns strip */
.hero-towns {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    background: rgba(10,20,14,0.7); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(127,168,130,0.15);
    padding: 0.85rem 2.5rem;
    display: flex; align-items: center; gap: 0; overflow: hidden;
}
.hero-towns-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); white-space: nowrap; margin-right: 1.5rem; flex-shrink: 0;
}
.hero-towns-list {
    display: flex; gap: 0; flex-wrap: nowrap; overflow: hidden;
}
.hero-town {
    font-size: 0.78rem; color: rgba(255,255,255,0.45); white-space: nowrap;
    padding: 0 1rem; border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-town:first-child { padding-left: 0; }
.hero-town:last-child { border-right: none; }

/* ============================================================ LOCAL TRUST BAR */
.trust-bar { background: var(--forest); padding: 1.1rem 2.5rem; }
.trust-bar-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 400; }
.trust-item svg { width: 18px; height: 18px; color: var(--sage-lt); flex-shrink: 0; }
.trust-item strong { color: white; font-weight: 600; }

/* ============================================================ INTRO / ABOUT */
.intro-section { padding: 6rem 2.5rem; background: var(--cream); }
.intro-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.intro-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-lt); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; }
.intro-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--forest-lt); }
.intro-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--text); line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -0.3px; }
.intro-title em { font-style: italic; color: var(--forest-lt); }
.intro-body { font-size: 1rem; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 1.5rem; }
.intro-body + .intro-body { margin-top: -0.5rem; }
.intro-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.intro-stat { background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: 1.25rem; }
.intro-stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--forest); line-height: 1; margin-bottom: 0.3rem; }
.intro-stat-label { font-size: 0.8rem; color: var(--text-lt); font-weight: 400; line-height: 1.4; }

/* Intro photo — sits above stats when image is present */
.intro-photo-wrap {
    position: relative; border-radius: 10px; overflow: hidden;
    margin-bottom: 1.5rem; background: var(--cream-mid);
    border: 1.5px solid var(--border);
}
.intro-photo-wrap img {
    width: 100%; height: 260px; object-fit: cover; display: block;
}
.intro-photo-wrap .photo-placeholder {
    width: 100%; height: 260px; display: flex; align-items: center; justify-content: center;
    background: var(--cream-mid); color: var(--text-lt);
    font-size: 0.78rem; font-style: italic; letter-spacing: 0.04em;
}

/* Area photo — replaces the plain area-map card when image is present */
.area-photo-wrap {
    position: relative; border-radius: 12px; overflow: hidden;
    background: var(--cream-mid); border: 1.5px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}
.area-photo-wrap img {
    width: 100%; height: 420px; object-fit: cover; display: block;
}
.area-photo-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,20,14,0.85) 0%, transparent 100%);
    padding: 1.5rem 1.25rem 1.1rem;
    font-size: 0.78rem; color: rgba(255,255,255,0.65); font-style: italic;
}
.area-photo-wrap .photo-placeholder {
    width: 100%; height: 420px; display: flex; align-items: center; justify-content: center;
    background: var(--cream-mid); color: var(--text-lt);
    font-size: 0.78rem; font-style: italic; letter-spacing: 0.04em;
}

/* ============================================================ SERVICES */
.services-section { padding: 6rem 2.5rem; background: var(--white); }
.section-wrap { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-lt); margin-bottom: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 24px; height: 1px; background: var(--forest-lt); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; color: var(--text); margin-bottom: 0.85rem; line-height: 1.2; }
.section-sub { font-size: 1rem; color: var(--text-lt); max-width: 520px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px;
    padding: 2rem; transition: all 0.25s; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--forest); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: rgba(28,58,42,0.3); box-shadow: 0 8px 30px var(--shadow); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 48px; height: 48px; background: rgba(28,58,42,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.service-icon svg { width: 24px; height: 24px; color: var(--forest); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.875rem; color: var(--text-lt); line-height: 1.65; font-weight: 300; }

/* ============================================================ BUSINESS TYPES */
.business-section { padding: 6rem 2.5rem; background: var(--forest); position: relative; overflow: hidden; }
.business-section::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 320px; height: 320px;
    border-radius: 50%; background: radial-gradient(circle, rgba(127,168,130,0.08) 0%, transparent 70%);
}
.business-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.business-section .section-eyebrow { color: var(--sage-lt); }
.business-section .section-eyebrow::before,
.business-section .section-eyebrow::after { background: var(--sage-lt); }
.business-section .section-title { color: var(--white); }
.business-section .section-sub { color: rgba(255,255,255,0.5); }

.business-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.business-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(127,168,130,0.15);
    border-radius: 8px; padding: 1.5rem; text-align: center; transition: all 0.2s;
}
.business-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(127,168,130,0.35); transform: translateY(-3px); }
.business-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.business-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.business-card p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; font-weight: 300; }

/* ============================================================ AREA SECTION */
.area-section { padding: 6rem 2.5rem; background: var(--cream-mid); }
.area-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.area-map { background: var(--white); border-radius: 12px; padding: 2rem; border: 1.5px solid var(--border); box-shadow: 0 4px 20px var(--shadow); }
.area-map-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 1.25rem; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.area-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); padding: 0.45rem 0; border-bottom: 1px solid var(--border); }
.area-item:nth-last-child(-n+2) { border-bottom: none; }
.area-item svg { width: 13px; height: 13px; color: var(--forest-lt); flex-shrink: 0; }
.area-item.primary { color: var(--text); font-weight: 600; }

/* ============================================================ TIERS */
.tiers-section { padding: 6rem 2.5rem; background: var(--white); }
.tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; margin-top: 3rem; background: var(--border); border-radius: 10px; overflow: hidden; }
.tier-card { background: var(--white); padding: 2rem 1.75rem; }
.tier-card.featured { background: var(--forest); }
.tier-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest-lt); margin-bottom: 1rem; display: block; }
.tier-card.featured .tier-tag { color: var(--sage-lt); }
.tier-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; line-height: 1.2; }
.tier-card.featured .tier-name { color: var(--white); }
.tier-price { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.tier-period { font-size: 0.75rem; color: var(--text-lt); margin-bottom: 1.5rem; }
.tier-card.featured .tier-period { color: rgba(255,255,255,0.45); }
.tier-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.tier-list li { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.45; }
.tier-card.featured .tier-list li { color: rgba(255,255,255,0.65); }
.tier-list li::before { content: '→'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }
.tier-cta {
    display: block; text-align: center; padding: 0.8rem; border-radius: 4px;
    font-weight: 600; font-size: 0.875rem; text-decoration: none;
    border: 1.5px solid var(--forest); color: var(--forest); transition: all 0.2s;
}
.tier-cta:hover { background: var(--forest); color: var(--white); }
.tier-card.featured .tier-cta { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.tier-card.featured .tier-cta:hover { background: var(--gold-lt); }

/* ============================================================ CONTACT */
.contact-section { padding: 6rem 2.5rem; background: var(--cream); }
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--text); margin-bottom: 1rem; letter-spacing: -0.3px; line-height: 1.2; }
.contact-desc { font-size: 1rem; color: var(--text-lt); font-weight: 300; line-height: 1.75; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-icon { width: 44px; height: 44px; background: rgba(28,58,42,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; color: var(--forest); }
.contact-detail-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 2px; }
.contact-detail-value { font-size: 0.95rem; font-weight: 600; color: var(--text); }

.contact-form-wrap { background: var(--white); border-radius: 12px; padding: 2.5rem; border: 1.5px solid var(--border); box-shadow: 0 8px 30px var(--shadow); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 0.875rem; color: var(--text-lt); margin-bottom: 1.5rem; font-weight: 300; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lt); margin-bottom: 0.4rem; }
.fg input, .fg select, .fg textarea {
    width: 100%; background: var(--cream); border: 1.5px solid var(--border);
    border-radius: 6px; padding: 0.7rem 0.9rem; color: var(--text);
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--text-lt); opacity: 0.6; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--forest); background: var(--white); box-shadow: 0 0 0 3px rgba(28,58,42,0.08); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.form-btn {
    width: 100%; background: var(--forest); color: white; font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: 0.95rem; border: none; border-radius: 6px;
    padding: 0.9rem; cursor: pointer; margin-top: 0.5rem;
    transition: all 0.2s; letter-spacing: 0.02em;
}
.form-btn:hover { background: var(--forest-lt); transform: translateY(-1px); box-shadow: 0 4px 14px var(--shadow); }
.form-privacy { font-size: 0.72rem; color: var(--text-lt); text-align: center; margin-top: 0.75rem; }

/* ============================================================ FOOTER */
footer { background: var(--forest); padding: 3rem 2.5rem 2rem; border-top: 1px solid rgba(127,168,130,0.1); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--sage-lt); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(127,168,130,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ============================================================ ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-region  { animation: fadeUp 0.5s ease both; }
.hero h1      { animation: fadeUp 0.5s ease 0.1s both; }
.hero-sub     { animation: fadeUp 0.5s ease 0.2s both; }
.hero-actions { animation: fadeUp 0.5s ease 0.3s both; }

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
    .intro-inner    { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid  { grid-template-columns: repeat(2, 1fr); }
    .business-grid  { grid-template-columns: repeat(2, 1fr); }
    .area-inner     { grid-template-columns: 1fr; gap: 3rem; }
    .tiers-grid     { grid-template-columns: repeat(2, 1fr); }
    .contact-inner  { grid-template-columns: 1fr; gap: 3rem; }
    .footer-inner   { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hero-inner { padding: 110px 1.5rem 4rem; }
    .hero-towns { padding: 0.75rem 1.5rem; }
    .services-grid  { grid-template-columns: 1fr; }
    .business-grid  { grid-template-columns: repeat(2, 1fr); }
    .tiers-grid     { grid-template-columns: 1fr; }
    .intro-stat-grid { grid-template-columns: 1fr 1fr; }
    .fg-row { grid-template-columns: 1fr; }
    .area-list { grid-template-columns: 1fr; }
    .area-item { border-bottom: 1px solid var(--border); }
    .area-item:last-child { border-bottom: none; }
}

/* Schema / sr-only */
.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; }