/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: #3D2C2C;
    background: #FDF8F4;
    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 { font: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.2; color: #3D2C2C; }
.section-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C06C4B;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.section-sub {
    font-size: 1.1rem;
    color: #6B5050;
    max-width: 520px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #C06C4B;
    color: #fff;
    box-shadow: 0 4px 20px rgba(192, 108, 75, 0.3);
}
.btn-primary:hover {
    background: #A85535;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(192, 108, 75, 0.4);
}
.btn-outline {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.25);
    border-color: #fff;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; width: 100%; justify-content: center; }

/* ── Header / Nav ── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s ease;
}
#site-header.scrolled {
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 20px rgba(61, 44, 44, 0.08);
    padding: 12px 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: #3D2C2C;
}
#site-header .logo { color: #fff; }
#site-header.scrolled .logo { color: #3D2C2C; }
#main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
#main-nav a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
    position: relative;
}
#main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: #C06C4B;
    transition: width 0.3s;
}
#main-nav a:not(.btn):hover::after { width: 100%; }
#main-nav a:not(.btn):hover { color: #fff; }
#site-header.scrolled #main-nav a:not(.btn) { color: #6B5050; }
#site-header.scrolled #main-nav a:not(.btn):hover { color: #3D2C2C; }
#main-nav .btn {
    background: #C06C4B;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 20px;
}
#main-nav .btn:hover { background: #A85535; }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}
#site-header.scrolled .nav-toggle span { background: #3D2C2C; }
.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 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/31484077/pexels-photo-31484077.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 44, 44, 0.72) 0%,
        rgba(61, 44, 44, 0.45) 50%,
        rgba(192, 108, 75, 0.3) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 80px;
}
.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 248, 244, 0.75);
    margin-bottom: 20px;
    font-weight: 500;
}
.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #FDF8F4;
    margin-bottom: 24px;
    line-height: 1.15;
}
.hero-sub {
    font-size: 1.15rem;
    color: rgba(253, 248, 244, 0.8);
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(253, 248, 244, 0.6);
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Highlight Bar ── */
.highlight-bar {
    background: #fff;
    border-top: 1px solid rgba(192, 108, 75, 0.1);
    border-bottom: 1px solid rgba(192, 108, 75, 0.1);
}
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 24px;
    border-right: 1px solid rgba(192, 108, 75, 0.1);
    color: #3D2C2C;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(192, 108, 75, 0.04); }
.highlight-item svg { color: #C06C4B; flex-shrink: 0; }

/* ── Products ── */
.products {
    padding: 120px 0;
    background: #FDF8F4;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(61, 44, 44, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(61, 44, 44, 0.12);
}
.product-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 32px; }
.product-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.product-body p {
    color: #6B5050;
    font-size: 0.95rem;
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 44, 44, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(61, 44, 44, 0.15);
    border: 6px solid #fff;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 20px 0; }
.about-content p {
    color: #6B5050;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(192, 108, 75, 0.15);
}
.stat-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: #C06C4B;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.85rem;
    color: #6B5050;
}

/* ── Visit ── */
.visit {
    padding: 120px 0;
    background: #FDF8F4;
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.visit-info { padding: 20px 0; }
.visit-address {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 24px 0;
    color: #3D2C2C;
}
.visit-details { display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.visit-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: #6B5050;
}
.visit-detail svg { color: #C06C4B; flex-shrink: 0; }
.visit-detail a {
    transition: color 0.3s;
}
.visit-detail a:hover { color: #C06C4B; }
.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(61, 44, 44, 0.1);
    min-height: 400px;
}

/* ── Contact ── */
.contact {
    padding: 120px 0;
    background: #fff;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-text { padding: 20px 0; }
.contact-text p { color: #6B5050; font-size: 1.05rem; margin-top: 16px; }
.contact-form {
    background: #FDF8F4;
    padding: 48px;
    border-radius: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3D2C2C;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(192, 108, 75, 0.2);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #3D2C2C;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #C06C4B;
    box-shadow: 0 0 0 4px rgba(192, 108, 75, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A0A0; }
.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6B5050;
    margin-top: 16px;
}
.form-note a { color: #C06C4B; text-decoration: underline; }
.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(192, 108, 75, 0.08);
    border-radius: 12px;
    color: #C06C4B;
    font-weight: 500;
    margin-top: 20px;
}

/* ── Footer ── */
.footer {
    background: #3D2C2C;
    color: rgba(253, 248, 244, 0.6);
    padding: 60px 0 40px;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.footer .logo { color: rgba(253, 248, 244, 0.9); }
.footer-brand p { font-size: 0.9rem; margin-top: 8px; }
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: #C06C4B; }
.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-grid { gap: 48px; }
    .about-images { height: 450px; }
    .contact-inner { gap: 48px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(253, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(61, 44, 44, 0.1);
    }
    #main-nav.open { right: 0; }
    #main-nav a:not(.btn) {
        color: #3D2C2C;
        font-size: 1.1rem;
    }
    #main-nav a:not(.btn):hover { color: #C06C4B; }
    #main-nav .btn { background: #C06C4B; color: #fff; }

    .hero-content { padding-top: 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item { border-right: none; border-bottom: 1px solid rgba(192, 108, 75, 0.1); }
    .highlight-item:nth-child(odd) { border-right: 1px solid rgba(192, 108, 75, 0.1); }

    .products-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 360px; }
    .about-img-float { right: -16px; bottom: -24px; }
    .visit-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .contact-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { gap: 32px; }
}

@media (max-width: 480px) {
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-item { border-right: none !important; }
    .about-stats { flex-direction: column; gap: 24px; }
    .about-img-float { display: none; }
}
