/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --terra:       #B8614A;
    --terra-dark:  #9A4E3A;
    --terra-light: #D4896F;
    --sand:        #EDE4D8;
    --sand-light:  #F7F2EC;
    --sand-dark:   #C9B99A;
    --cream:       #FAF7F3;
    --charcoal:    #2C2825;
    --text:        #3D3530;
    --text-light:  #7A6E66;
    --white:       #FFFFFF;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;
    --radius:      12px;
    --shadow:      0 4px 24px rgba(44,40,37,0.08);
    --shadow-lg:   0 12px 48px rgba(44,40,37,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.section-title em {
    font-style: italic;
    color: var(--terra);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.btn--primary {
    background: var(--terra);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184,97,74,0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--sand-dark);
}
.btn--ghost:hover {
    border-color: var(--terra);
    color: var(--terra);
}

.btn--nav {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
}

/* ── Nav ──────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,247,243,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,185,154,0.3);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled {
    box-shadow: 0 2px 20px rgba(44,40,37,0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
}
.nav-logo-icon { color: var(--terra); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a:not(.btn) {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terra);
    transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover { color: var(--terra); }
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,247,243,0.98);
    backdrop-filter: blur(20px);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(201,185,154,0.3);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--charcoal);
}
.mobile-menu .btn { margin-top: 8px; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,97,74,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 28px;
}
.hero-headline em {
    font-style: italic;
    color: var(--terra);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 460px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero visual + floating cards */
.hero-visual {
    position: relative;
    height: 620px;
}

.hero-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-card--main {
    width: 340px;
    height: 480px;
    position: absolute;
    top: 40px;
    right: 0;
}
.hero-card--side {
    width: 260px;
    height: 170px;
    position: absolute;
    bottom: 60px;
    left: -20px;
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--terra);
    line-height: 1;
}
.stat-label {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.stat-card--1 {
    top: 0;
    left: -30px;
}
.stat-card--2 {
    bottom: 180px;
    right: -20px;
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(201,185,154,0.3);
    transition: all 0.3s ease;
    background: var(--cream);
}
.service-card:hover {
    border-color: var(--terra-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(184,97,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--terra);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 640px;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 520px;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-title { margin-bottom: 24px; }

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text);
}

.value-line {
    flex-shrink: 0;
    width: 32px;
    height: 1px;
    background: var(--terra);
}

/* ── Gallery ──────────────────────────────────────── */
.gallery {
    padding: 120px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44,40,37,0);
    transition: background 0.3s ease;
}
.gallery-item:hover::after {
    background: rgba(44,40,37,0.15);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ── Visit ────────────────────────────────────────── */
.visit {
    padding: 120px 0;
    background: var(--sand-light);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(184,97,74,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
}

.detail-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}
.detail-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}
.detail-item a {
    color: var(--terra);
    transition: color 0.3s ease;
}
.detail-item a:hover { color: var(--terra-dark); }

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Form */
.visit-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 40px;
    box-shadow: var(--shadow);
}

.visit-form h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-note {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sand-dark);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(184,97,74,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    color: var(--terra);
    margin: 0 auto 16px;
}
.form-success h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo svg { color: var(--terra-light); }

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links strong,
.footer-contact strong {
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-links a {
    font-size: 0.88rem;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--terra-light); }
.footer-contact p {
    font-size: 0.88rem;
    line-height: 1.6;
}
.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--terra-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ── Reveal animations (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 480px; order: -1; }
    .hero-card--main { width: 260px; height: 360px; }
    .hero-card--side { width: 200px; height: 130px; }
    .stat-card--1 { left: 0; }
    .stat-card--2 { right: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-images { height: 480px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .visit-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-visual { height: 380px; }
    .hero-card--main { width: 200px; height: 280px; top: 20px; right: 10px; }
    .hero-card--side { width: 160px; height: 110px; bottom: 40px; left: -10px; }
    .stat-card { padding: 14px 16px; }
    .stat-number { font-size: 1.4rem; }
    .stat-label { font-size: 0.65rem; }
    .services { padding: 80px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .about { padding: 80px 0; }
    .about-images { height: 360px; }
    .about-img-main { height: 360px; }
    .about-img-float { right: -10px; }
    .gallery { padding: 80px 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .visit { padding: 80px 0; }
    .visit-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer { padding: 60px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}
