/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: #3D2B1F;
    background: #FDF8F4;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.2; color: #3D2B1F; }

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #B85446; color: #fff;
    padding: .5rem 1rem; border-radius: 0 0 4px 4px;
    z-index: 1000; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ===== UTILITY ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 7rem 0; }

/* ===== EYEBROW / SECTION HEADERS ===== */
.section-eyebrow {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #B85446;
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: #2A1F17;
}
.section-sub {
    font-size: 1.0625rem;
    color: #7A6455;
    max-width: 560px;
    line-height: 1.8;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-sub { margin: 0 auto; }

/* ===== HEADER ===== */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 84, 70, 0.1);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(61, 43, 31, 0.06); }
.header-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem;
    display: flex; align-items: center;
    height: 72px; gap: 2rem;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.logo-mark {
    width: 38px; height: 38px;
    background: #B85446;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    border-radius: 6px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-primary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0625rem; font-weight: 600;
    color: #2A1F17; letter-spacing: -.01em;
}
.logo-sub {
    font-size: .6875rem; font-weight: 400;
    color: #7A6455; letter-spacing: .08em;
    text-transform: uppercase;
}

/* NAV */
.nav-list {
    display: flex; align-items: center; gap: .25rem;
    margin-left: auto;
}
.nav-list a {
    font-size: .8125rem; font-weight: 400;
    color: #5C4A3D;
    padding: .375rem .75rem;
    border-radius: 4px;
    transition: color .2s, background .2s;
    letter-spacing: .01em;
}
.nav-list a:hover { color: #B85446; background: rgba(184, 84, 70, 0.06); }
.nav-cta {
    display: flex; align-items: center; gap: .375rem;
    background: #B85446; color: #fff !important;
    border-radius: 6px; font-weight: 500;
    padding: .5rem 1rem !important;
    transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #A04438; transform: translateY(-1px); }

/* MOBILE NAV TOGGLE */
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    margin-left: auto; padding: .5rem;
}
.nav-toggle-line {
    width: 22px; height: 1.5px;
    background: #3D2B1F; border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 7rem 1.5rem 4rem;
    background:
        linear-gradient(160deg, #FDF8F4 0%, #F5E6D8 50%, #EDD5C4 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(184, 84, 70, 0.03) 80px,
            rgba(184, 84, 70, 0.03) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(184, 84, 70, 0.03) 80px,
            rgba(184, 84, 70, 0.03) 81px
        );
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 84, 70, 0.07) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 720px;
}
.hero-eyebrow {
    font-size: .75rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: #B85446; margin-bottom: 1.5rem;
}
.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #2A1F17;
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
}
.hero-headline em {
    font-style: italic;
    color: #B85446;
}
.hero-sub {
    font-size: 1.125rem;
    color: #6B5548;
    max-width: 540px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-trust {
    display: flex; gap: 2rem;
    justify-content: center; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 400;
    color: #7A6455;
}
.trust-item svg { color: #B85446; flex-shrink: 0; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: 'Inter', sans-serif;
    font-size: .875rem; font-weight: 500;
    padding: .875rem 1.75rem;
    border-radius: 6px;
    transition: all .25s ease;
    letter-spacing: .01em;
    white-space: nowrap;
}
.btn-primary {
    background: #B85446; color: #fff;
    box-shadow: 0 2px 12px rgba(184, 84, 70, 0.25);
}
.btn-primary:hover { background: #A04438; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(184, 84, 70, 0.35); }
.btn-ghost {
    background: transparent; color: #3D2B1F;
    border: 1px solid rgba(61, 43, 31, 0.2);
}
.btn-ghost:hover { border-color: #B85446; color: #B85446; }
.btn-light {
    background: #fff; color: #B85446;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn-full { width: 100%; }
.btn-loading { display: none; }
.btn.loading .btn-text { display: none; }
.btn.loading .btn-loading { display: inline-flex; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SERVICES ===== */
.services { background: #FDF8F4; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid rgba(184, 84, 70, 0.08);
    border-radius: 10px;
    padding: 2.25rem;
    transition: all .3s ease;
}
.service-card:hover {
    border-color: rgba(184, 84, 70, 0.2);
    box-shadow: 0 8px 32px rgba(184, 84, 70, 0.08);
    transform: translateY(-4px);
}
.service-icon {
    width: 52px; height: 52px;
    background: rgba(184, 84, 70, 0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #B85446;
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem; font-weight: 500;
    margin-bottom: .625rem; color: #2A1F17;
}
.service-card p {
    font-size: .9375rem; color: #7A6455;
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about { background: #F5E6D8; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 43, 31, 0.12);
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 1.25rem; }
.about-content p {
    font-size: 1rem; color: #6B5548;
    line-height: 1.85; margin-bottom: 1rem;
}
.about-stats {
    display: flex; align-items: center; gap: 1.5rem;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid rgba(184, 84, 70, 0.15);
}
.stat { flex: 1; text-align: center; }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem; font-weight: 600;
    color: #B85446; line-height: 1;
}
.stat-label {
    font-size: .75rem; color: #7A6455;
    text-transform: uppercase; letter-spacing: .08em;
    margin-top: .375rem; display: block;
}
.stat-divider {
    width: 1px; height: 40px;
    background: rgba(184, 84, 70, 0.2);
}

/* ===== GALLERY ===== */
.gallery { background: #FDF8F4; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(61, 43, 31, 0.06);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    aspect-ratio: 4/3;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 3rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(42, 31, 23, 0.7), transparent);
    color: #fff;
    font-size: .875rem; font-weight: 400;
    opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: #2A1F17;
    padding: 5rem 0;
    text-align: center;
}
.cta-eyebrow {
    font-size: .75rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: #D4926A; margin-bottom: 1rem;
}
.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300; color: #FDF8F4;
    margin-bottom: 1rem;
}
.cta-sub {
    font-size: 1.0625rem; color: #B8A090;
    max-width: 520px; margin: 0 auto 2rem;
    line-height: 1.8;
}
.cta-sub a { color: #E8C4A8; text-decoration: underline; text-underline-offset: 3px; }
.cta-sub a:hover { color: #fff; }

/* ===== CONTACT ===== */
.contact { background: #F5E6D8; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-intro {
    font-size: 1rem; color: #6B5548;
    line-height: 1.8; margin-bottom: 2rem;
}
.contact-details { margin-bottom: 2rem; }
.contact-details li {
    display: flex; flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 84, 70, 0.1);
}
.contact-label {
    font-size: .6875rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: #B85446; margin-bottom: .375rem;
}
.contact-details a,
.contact-details span {
    font-size: 1rem; color: #3D2B1F;
    line-height: 1.6;
}
.contact-details a:hover { color: #B85446; }
.contact-map {
    border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(61, 43, 31, 0.08);
}

/* FORM */
.contact-form-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(61, 43, 31, 0.06);
    border: 1px solid rgba(184, 84, 70, 0.06);
}
.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.625rem; font-weight: 500;
    color: #2A1F17; margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .8125rem; font-weight: 400;
    color: #5C4A3D; margin-bottom: .375rem;
    letter-spacing: .02em;
}
.required { color: #B85446; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: .9375rem;
    color: #3D2B1F;
    background: #FDF8F4;
    border: 1px solid rgba(184, 84, 70, 0.15);
    border-radius: 6px;
    padding: .75rem 1rem;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B85446;
    box-shadow: 0 0 0 3px rgba(184, 84, 70, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A090; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A6455' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group input:invalid:not(:placeholder-shown) { border-color: #C0392B; }

/* FORM SUCCESS */
.form-success {
    text-align: center; padding: 2rem;
    color: #3D2B1F;
}
.form-success svg { color: #B85446; margin-bottom: 1rem; }
.form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 500;
    margin-bottom: .5rem; color: #2A1F17;
}
.form-success p { font-size: .9375rem; color: #7A6455; line-height: 1.7; }

/* ===== FOOTER ===== */
.site-footer {
    background: #2A1F17;
    color: #B8A090;
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-brand .logo-mark { background: #B85446; }
.footer-brand .logo-primary { color: #FDF8F4; }
.footer-brand .logo-sub { color: #B8A090; }
.footer-tagline {
    font-size: .875rem; color: #8A7464;
    margin-top: 1rem; line-height: 1.7;
    max-width: 260px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: .75rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    color: #D4926A; margin-bottom: 1rem;
}
.footer-links ul li,
.footer-contact ul li { margin-bottom: .625rem; }
.footer-links a {
    font-size: .875rem; color: #B8A090;
    transition: color .2s;
}
.footer-links a:hover { color: #E8C4A8; }
.footer-contact span {
    font-size: .875rem; color: #B8A090;
    line-height: 1.7;
}
.footer-contact a { font-size: .875rem; color: #B8A090; transition: color .2s; }
.footer-contact a:hover { color: #E8C4A8; }
.footer-bottom {
    border-top: 1px solid rgba(184, 84, 70, 0.15);
    padding: 1.5rem 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8125rem; color: #6B5548; }

/* ===== ANIMATIONS (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .nav-toggle { display: flex; }
    .nav-list {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1.5rem;
        gap: .25rem;
        border-bottom: 1px solid rgba(184, 84, 70, 0.1);
        box-shadow: 0 8px 24px rgba(61, 43, 31, 0.08);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform .35s ease, opacity .35s ease;
    }
    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-list a { padding: .75rem 1rem; font-size: .9375rem; width: 100%; }
    .nav-cta { justify-content: center; }
    .hero { padding: 6rem 1.5rem 3rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { gap: 1.25rem; }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { order: -1; }
    .about-content .section-eyebrow,
    .about-content .section-title { text-align: center; }
    .about-content p { text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .header-inner { padding: 0 1rem; }
    .container { padding: 0 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }
    .contact-form-wrap { padding: 1.5rem; }
}
