/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #1a1a1a;
    background: #FAFAF7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ── */
:root {
    --green-900: #1B4332;
    --green-800: #2D6A4F;
    --green-700: #40916C;
    --gold: #D4A843;
    --gold-light: #E8C96A;
    --cream: #FAFAF7;
    --cream-dark: #F2F0EB;
    --stone: #6B7280;
    --dark: #1a1a1a;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
    --transition: .25s ease;
}

/* ── Layout ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--green-900); }
.section-eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-heading { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 20px; }
.section-sub { font-size: 1.1rem; color: var(--stone); max-width: 560px; line-height: 1.7; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary { background: var(--green-900); color: var(--white); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-900); border: 1.5px solid var(--green-900); }
.btn-outline:hover { background: var(--green-900); color: var(--white); }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 247, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 67, 50, .08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-900);
}
.logo-light { color: var(--white); }
.logo-light .logo-icon rect { fill: var(--gold); }
.logo-light .logo-icon path { stroke: var(--green-900); }

/* ── Nav ── */
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a { font-size: .9rem; font-weight: 500; color: var(--dark); transition: color var(--transition); }
.nav-list a:hover { color: var(--green-800); }
.nav-phone { display: flex; align-items: center; gap: 6px; color: var(--green-800) !important; font-weight: 600 !important; }
.nav-phone:hover { color: var(--green-700) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar { width: 22px; height: 2px; background: var(--green-900); border-radius: 2px; transition: all var(--transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero { padding: 120px 0 80px; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.hero-headline { font-size: clamp(2rem, 4.5vw, 3.25rem); color: var(--green-900); margin-bottom: 20px; line-height: 1.15; }
.hero-sub { font-size: 1.1rem; color: var(--stone); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; color: var(--green-800); }
.trust-item svg { flex-shrink: 0; }

.hero-image { position: relative; }
.hero-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--green-900);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.accent-card-number { font-family: 'Playfair Display', Georgia, serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); line-height: 1; }
.accent-card-label { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 4px; line-height: 1.4; }

/* ── About ── */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 20px;
    background: var(--cream);
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    color: var(--green-800);
}
.about-content .section-heading { margin-bottom: 16px; }
.about-text { color: var(--stone); margin-bottom: 16px; line-height: 1.75; }
.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(27,67,50,.1);
}
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; color: var(--green-900); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--stone); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(27,67,50,.15); }

/* ── Offerings ── */
.offerings { padding: 100px 0; background: var(--cream); }
.offerings .section-header { text-align: center; margin-bottom: 56px; }
.offerings .section-sub { margin: 0 auto; }
.offerings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.offering-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.offering-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(27,67,50,.08); }
.offering-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: var(--radius); margin-bottom: 20px; }
.offering-title { font-size: 1.15rem; margin-bottom: 10px; }
.offering-desc { font-size: .9rem; color: var(--stone); line-height: 1.7; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: var(--green-900); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-content .section-eyebrow { color: var(--gold); }
.why-content .section-heading { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,.65); }
.why-list { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-check { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; background: var(--green-800); border-radius: 50%; margin-top: 2px; }
.why-item-title { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-item-desc { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Visit ── */
.visit { padding: 100px 0; background: var(--white); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; gap: 16px; }
.contact-icon { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: var(--radius); }
.contact-label { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); margin-bottom: 2px; }
.contact-value { font-size: .95rem; color: var(--dark); line-height: 1.6; }
.contact-value a { color: var(--green-800); font-weight: 500; transition: color var(--transition); }
.contact-value a:hover { color: var(--green-700); }
.map-container { margin-top: 32px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }

.visit-form-wrapper { }
.visit-form-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-heading { font-size: 1.5rem; margin-bottom: 8px; }
.form-sub { font-size: .9rem; color: var(--stone); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(27,67,50,.15);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-700); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(27,67,50,.06);
    border-radius: var(--radius);
    font-size: .9rem;
    color: var(--green-800);
}
.form-success[hidden] { display: none; }

/* ── Footer ── */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-tagline { font-size: .9rem; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-heading { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: .9rem; line-height: 1.7; }
.footer-contact a { color: var(--gold); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .8rem; color: rgba(255,255,255,.45); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid, .about-grid, .why-grid, .visit-grid { gap: 40px; }
    .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(27,67,50,.1);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all .3s ease;
        pointer-events: none;
    }
    .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-list a { padding: 8px 0; font-size: 1rem; }
    .nav-phone { font-size: 1rem !important; }

    .hero { padding: 100px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .hero-image-wrapper { border-radius: var(--radius-lg); }
    .hero-accent-card { position: relative; bottom: auto; left: auto; display: inline-block; margin-top: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; }

    .about-grid { grid-template-columns: 1fr; }
    .about-images { order: -1; }
    .about-img-secondary { right: 0; }

    .offerings-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { order: -1; }

    .visit-grid { grid-template-columns: 1fr; }
    .visit-form-card { padding: 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-headline { font-size: 1.75rem; }
    .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider { display: none; }
}

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
