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

:root {
    --terracotta: #C05A3A;
    --terracotta-dark: #A04828;
    --terracotta-light: #D4785A;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --neutral-900: #1A1A1A;
    --neutral-700: #3A3A3A;
    --neutral-500: #6B6B6B;
    --neutral-300: #B0B0B0;
    --neutral-100: #F0EDE8;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ── Typography ─────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--neutral-900);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.25s var(--ease-smooth);
    white-space: nowrap;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(192, 90, 58, 0.3);
}
.btn--primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(192, 90, 58, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--neutral-700);
    border: 1.5px solid var(--neutral-300);
}
.btn--ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ── Navigation ─────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 243, 235, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(192, 90, 58, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
    background: rgba(250, 243, 235, 0.96);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neutral-900);
}
.nav-logo-icon { color: var(--terracotta); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-500);
    transition: color 0.2s ease;
    position: relative;
}
.nav-links a:not(.btn):hover { color: var(--terracotta); }
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width 0.25s var(--ease-smooth);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    color: var(--neutral-700);
    padding: 4px;
}

/* ── Mobile Menu ────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--sand-light);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
    align-self: flex-end;
    color: var(--neutral-500);
    padding: 8px;
    transition: color 0.2s ease;
}
.mobile-menu-close:hover { color: var(--neutral-900); }

.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-900);
    padding: 12px 0;
    border-bottom: 1px solid var(--sand-dark);
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu-link:hover { color: var(--terracotta); padding-left: 8px; }

.mobile-menu-divider { height: 1px; background: var(--sand-dark); margin: 16px 0; }

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--terracotta);
    font-weight: 500;
    font-size: 1rem;
    margin-top: auto;
    padding-top: 16px;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--terracotta);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-accent {
    color: var(--terracotta);
    display: block;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--neutral-500);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.hero-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
}
.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual { position: relative; }

.hero-img-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 1;
}

.hero-img--accent {
    width: 220px;
    height: 220px;
    bottom: 40px;
    left: 0;
    z-index: 2;
    border: 6px solid var(--sand-light);
}

.hero-badge {
    position: absolute;
    bottom: 280px;
    right: -16px;
    z-index: 3;
    background: var(--terracotta);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(192, 90, 58, 0.35);
}

/* Hero Pattern Background */
.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background:
        radial-gradient(circle at 80% 20%, rgba(192, 90, 58, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(245, 230, 211, 0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* ── Marquee ────────────────────────────────────── */
.marquee {
    background: var(--terracotta);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}
.marquee-track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.marquee-dot {
    color: rgba(255,255,255,0.4);
    font-size: 0.5rem;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.about-text {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.about-img {
    overflow: hidden;
    border-radius: 12px;
}
.about-img--tall {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 400px;
}
.about-img--short {
    height: 190px;
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.about-img:hover img { transform: scale(1.04); }

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

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

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.product-card-img {
    height: 240px;
    overflow: hidden;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
    padding: 28px;
}
.product-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 8px;
}
.product-card-desc {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

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

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

.visit-detail {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--neutral-100);
}
.visit-detail:first-child { padding-top: 0; }
.visit-detail:last-child { border-bottom: none; }

.visit-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--sand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

.visit-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-300);
    margin-bottom: 4px;
}
.visit-detail-value {
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.6;
}
.visit-phone { transition: color 0.2s ease; }
.visit-phone:hover { color: var(--terracotta); }

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 450px;
}
.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ── Contact ────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--neutral-900);
    color: var(--white);
}

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

.contact .section-title { color: var(--white); }
.contact-text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}
.contact-direct-item:hover { color: var(--terracotta-light); }
.contact-direct-item svg { color: var(--terracotta); flex-shrink: 0; }

/* Form */
.contact-right {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus,
.form-textarea:focus {
    border-color: var(--terracotta);
    background: rgba(255,255,255,0.08);
}
.form-textarea { resize: vertical; }

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    color: #81C784;
    font-size: 0.9375rem;
    margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: var(--neutral-900);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.6);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-logo svg { color: var(--terracotta); }

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links-group a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}
.footer-links-group a:hover { color: var(--terracotta-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
}

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

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .hero-img--main { width: 300px; height: 400px; }
    .hero-img--accent { width: 180px; height: 180px; }
    .hero-img-stack { height: 480px; }
    .about-grid { gap: 48px; }
    .contact-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual { order: -1; }
    .hero-img-stack {
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-img--main { width: 220px; height: 300px; }
    .hero-img--accent { width: 140px; height: 140px; bottom: 20px; }
    .hero-badge { bottom: 200px; right: -8px; font-size: 0.75rem; }
    .hero-stats { padding: 20px; }
    .hero-stat-num { font-size: 1.25rem; }

    .about { padding: 80px 0; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-grid { max-width: 400px; }

    .products { padding: 80px 0; }
    .products-grid { grid-template-columns: 1fr; }

    .visit { padding: 80px 0; }
    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 300px; }
    .visit-map iframe { min-height: 300px; }

    .contact { padding: 80px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-right { padding: 24px; }

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

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .section-title { font-size: 1.75rem; }
}
