/* ── 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, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2C2420;
    background: #FDF8F4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
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; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; color: #1A1412; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C0603A;
    margin-bottom: 12px;
}
.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}
.section-sub {
    font-size: 1.05rem;
    color: #6B5E57;
    max-width: 560px;
    line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    white-space: nowrap;
}
.btn-primary {
    background: #C0603A;
    color: #fff;
}
.btn-primary:hover {
    background: #A84E2C;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(192, 96, 58, 0.35);
}
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-1px);
}
.btn-lg { padding: 17px 40px; font-size: 1rem; }

/* ── Header ─────────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 244, 0);
    transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
    padding: 0;
}
.header.scrolled {
    background: rgba(253, 248, 244, 0.97);
    box-shadow: 0 1px 0 rgba(44, 36, 32, 0.08);
    backdrop-filter: blur(10px);
}
.nav-inner {
    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: 800;
    font-size: 1.25rem;
    color: #fff;
    transition: color 0.3s;
}
.header.scrolled .logo { color: #1A1412; }
.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #C0603A;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C0603A;
    transition: width 0.25s;
}
.nav-menu a:hover { color: #fff; }
.nav-menu a:hover::after { width: 100%; }
.header.scrolled .nav-menu a { color: #6B5E57; }
.header.scrolled .nav-menu a:hover { color: #1A1412; }
.nav-cta {
    background: #C0603A;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #A84E2C; transform: translateY(-1px); }

/* ── Mobile Nav Toggle ──────────────────────────────────────────── */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, top 0.3s;
}
.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after { background: #1A1412; }
.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 5px;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 5px;
    transform: rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 20, 18, 0.82) 0%,
        rgba(44, 36, 32, 0.65) 50%,
        rgba(192, 96, 58, 0.35) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    max-width: 700px;
}
.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #E8A87C;
    margin-bottom: 20px;
}
.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-scroll svg { animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ── Trust Bar ──────────────────────────────────────────────────── */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid rgba(44, 36, 32, 0.07);
    padding: 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 28px;
    border-right: 1px solid rgba(44, 36, 32, 0.07);
    font-size: 0.875rem;
    font-weight: 500;
    color: #4A3F38;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: #C0603A; flex-shrink: 0; }

/* ── Section Shared ─────────────────────────────────────────────── */
.section { padding: 100px 0; }

/* ── About ──────────────────────────────────────────────────────── */
.about { background: #FDF8F4; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.15);
}
.about-img-wrap img { width: 100%; height: 450px; object-fit: cover; }
.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    background: #C0603A;
    border-radius: 12px;
    z-index: -1;
    opacity: 0.15;
}
.about-text { }
.about-text p {
    color: #6B5E57;
    margin-bottom: 16px;
    font-size: 1.0rem;
    line-height: 1.75;
}
.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2C2420;
}
.about-list li svg { color: #C0603A; flex-shrink: 0; }

/* ── Offer ──────────────────────────────────────────────────────── */
.offer { background: #fff; }
.section-header { margin-bottom: 56px; }
.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.offer-card {
    background: #FDF8F4;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(44, 36, 32, 0.12);
}
.offer-card-img {
    height: 200px;
    overflow: hidden;
}
.offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.offer-card:hover .offer-card-img img { transform: scale(1.05); }
.offer-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #C0603A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.offer-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1412;
}
.offer-card-body p {
    font-size: 0.9375rem;
    color: #6B5E57;
    line-height: 1.7;
}

/* ── Why ────────────────────────────────────────────────────────── */
.why { background: #1A1412; color: #fff; }
.why .section-eyebrow { color: #E8A87C; }
.why .section-heading { color: #fff; }
.why .section-sub { color: rgba(255,255,255,0.6); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}
.why-text { }
.why-text p.section-sub { margin-bottom: 0; }
.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
    transition: background 0.3s, border-color 0.3s;
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(192, 96, 58, 0.4);
}
.why-card-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 800;
    color: #C0603A;
    line-height: 1;
    margin-bottom: 14px;
}
.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ── Visit ──────────────────────────────────────────────────────── */
.visit { background: #FDF8F4; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 28px; }
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.contact-item dt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C0603A;
}
.contact-item dd {
    font-size: 1rem;
    color: #2C2420;
    line-height: 1.7;
}
.contact-item dd a {
    color: #2C2420;
    border-bottom: 1px solid rgba(44, 36, 32, 0.2);
    transition: border-color 0.2s, color 0.2s;
}
.contact-item dd a:hover { color: #C0603A; border-color: #C0603A; }
.visit-map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 12px 40px rgba(44, 36, 32, 0.12);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 400px; }

/* ── CTA ────────────────────────────────────────────────────────── */
.cta {
    background: #C0603A;
    padding: 88px 0;
    text-align: center;
}
.cta-eyebrow { color: #FDEACE; }
.cta-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cta .btn-ghost {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
}
.cta .btn-ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
    background: #130F0D;
    color: rgba(255,255,255,0.55);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-nav a:hover { color: #E8A87C; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.footer-contact a:hover { color: #E8A87C; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

/* ── Animations ─────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { gap: 40px; }
    .why-grid { gap: 40px; }
    .why-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: start;
        padding: 40px 24px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a {
        font-size: 1.125rem;
        color: #2C2420;
    }
    .nav-menu a:hover { color: #C0603A; }
    .nav-cta {
        background: #C0603A;
        color: #fff !important;
        padding: 14px 28px;
        border-radius: 6px;
        text-align: center;
        width: 100%;
    }
    .nav-toggle { display: flex; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(44, 36, 32, 0.07); }
    .trust-item:nth-child(odd) { border-right: 1px solid rgba(44, 36, 32, 0.07); }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-wrap img { height: 320px; }
    .offer-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 280px; }
    .visit-map iframe { min-height: 280px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-headline br { display: block; }
    .section { padding: 72px 0; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; border-bottom: 1px solid rgba(44, 36, 32, 0.07); }
    .trust-item:last-child { border-bottom: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn-lg { width: 100%; justify-content: center; }
}
