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

:root {
    --terra: #C05A3D;
    --terra-dark: #A04830;
    --terra-light: #D4795E;
    --sand: #F5EDE4;
    --sand-dark: #E8DDD3;
    --sand-light: #FAF7F3;
    --charcoal: #1E1E1E;
    --slate: #3A3A3A;
    --muted: #6B6B6B;
    --light-border: #E5DCD4;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(30,30,30,.06), 0 1px 2px rgba(30,30,30,.04);
    --shadow-md: 0 4px 16px rgba(30,30,30,.07), 0 2px 4px rgba(30,30,30,.04);
    --shadow-lg: 0 12px 40px rgba(30,30,30,.1), 0 4px 12px rgba(30,30,30,.05);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--sand-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: .9375rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-terracotta {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}
.btn-terracotta:hover { background: var(--terra-dark); border-color: var(--terra-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-sm { padding: 8px 18px; font-size: .875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,247,243,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-border);
    transition: var(--transition);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--charcoal);
}

.nav-logo-text { letter-spacing: -.01em; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--slate);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terra);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover { color: var(--terra); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(192,90,61,.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(192,90,61,.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-main-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-border);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--terra);
    background: rgba(192,90,61,.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.stat-icon {
    color: var(--terra);
    margin-bottom: 4px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
}

.stat-label {
    font-size: .8125rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }

/* ===== About ===== */
.about { background: var(--white); }

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

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    background: var(--terra);
    border-radius: var(--radius-md);
    opacity: .12;
    z-index: -1;
}

.about-content .section-title { margin-top: 4px; }

.about-content p {
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--slate);
}

.value-item svg { color: var(--terra); flex-shrink: 0; }

/* ===== Products ===== */
.products { background: var(--sand-light); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--light-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-img {
    overflow: hidden;
    height: 220px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.product-card:hover .product-img img { transform: scale(1.05); }

.product-body {
    padding: 28px 28px 32px;
}

.product-body h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.product-body p {
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Why Us ===== */
.why-us { background: var(--charcoal); color: var(--white); }

.why-us .section-tag { color: var(--terra-light); }
.why-us .section-title { color: var(--white); }

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

.why-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: var(--transition);
}

.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(192,90,61,.3); transform: translateY(-2px); }

.why-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--terra);
    opacity: .4;
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-card p {
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* ===== Visit ===== */
.visit { background: var(--white); }

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

.visit-info .section-title { margin-top: 4px; }

.visit-address {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.0625rem;
    color: var(--slate);
    font-weight: 500;
    margin: 24px 0 20px;
}

.visit-address svg { color: var(--terra); flex-shrink: 0; }

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

.visit-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9375rem;
    color: var(--muted);
}

.visit-details li svg { color: var(--terra); flex-shrink: 0; }
.visit-details a { color: var(--terra); font-weight: 500; transition: var(--transition); }
.visit-details a:hover { color: var(--terra-dark); }

.visit-hours {
    background: var(--sand);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    border: 1px solid var(--light-border);
}

.visit-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.visit-hours p {
    font-size: .9375rem;
    color: var(--muted);
    line-height: 1.7;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
    min-height: 420px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* ===== Contact ===== */
.contact { background: var(--sand); }

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-content .section-title { margin-top: 4px; }
.contact-content p { color: var(--muted); font-size: 1.0625rem; line-height: 1.7; margin-top: 12px; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-border);
}

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

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--light-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .9375rem;
    color: var(--charcoal);
    background: var(--sand-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terra);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(192,90,61,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #B0A89E; }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(192,90,61,.06);
    border: 1px solid rgba(192,90,61,.15);
    border-radius: var(--radius-sm);
    color: var(--terra-dark);
    font-size: .9375rem;
    font-weight: 500;
}

.form-success svg { color: var(--terra); flex-shrink: 0; }

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,.6);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p { margin-top: 16px; font-size: .9375rem; line-height: 1.7; max-width: 300px; }

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a,
.footer-contact a {
    font-size: .9375rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--terra-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: .8125rem;
    color: rgba(255,255,255,.35);
}

/* ===== Mobile Menu ===== */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--sand-light);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--light-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-stats { order: -1; }
    .hero-main-card { padding: 36px 28px; }

    .about-grid,
    .visit-grid,
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }

    .products-grid,
    .why-grid { grid-template-columns: 1fr; }

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

    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { padding: 90px 0 48px; }
    .hero-main-card { padding: 28px 22px; }
    .hero-stats { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .contact-form { padding: 28px 22px; }
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
