*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terracotta: #C4704B;
    --terracotta-dark: #A85A38;
    --terracotta-light: #D4916E;
    --sand: #F5EDE4;
    --sand-light: #FAF6F2;
    --sand-dark: #E8DDD2;
    --charcoal: #2A2522;
    --charcoal-light: #4A4440;
    --warm-gray: #8A8279;
    --warm-gray-light: #B8B0A8;
    --white: #FFFFFF;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal);
    background-color: var(--sand-light);
    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;
}

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

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-dark);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 1px 20px rgba(42, 37, 34, 0.06);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

.logo svg {
    color: var(--terracotta);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--charcoal-light);
    transition: color var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width var(--transition);
}

.nav a:hover {
    color: var(--terracotta);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 0.55rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--terracotta-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* ─── Mobile Nav Toggle ─── */
.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: 1.5px;
    background: var(--charcoal);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(196, 112, 75, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(196, 112, 75, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.hero-headline .accent {
    color: var(--terracotta);
    font-style: italic;
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8125rem 1.75rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 112, 75, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 0.9375rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 2px;
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand-dark), transparent);
}

/* ─── Eyebrow ─── */
.eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

/* ─── Section Title ─── */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 3rem;
}

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

/* ─── Intro ─── */
.intro {
    padding: 7rem 0;
    background: var(--sand-light);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.intro-text p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--charcoal-light);
    margin-bottom: 1.25rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--sand-dark);
}

.stat {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--sand-dark);
}

.stat:first-child {
    padding-top: 0;
}

.stat:last-child {
    padding-bottom: 0;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

/* ─── Divider ─── */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sand-dark), transparent);
    margin: 0 2rem;
}

/* ─── Products ─── */
.products {
    padding: 7rem 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(42, 37, 34, 0.1);
}

.product-card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    padding: 1.25rem 1.5rem 0.25rem;
    color: var(--charcoal);
}

.product-card p {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--warm-gray);
    padding: 0 1.5rem 1.5rem;
}

/* ─── Services ─── */
.services {
    padding: 7rem 0;
    background: var(--sand-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-item {
    padding: 2.25rem;
    background: var(--white);
    border-radius: 2px;
    border: 1px solid var(--sand-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.service-item:hover {
    border-color: var(--terracotta-light);
    box-shadow: 0 8px 24px rgba(196, 112, 75, 0.08);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sand-dark);
    border-radius: 50%;
    margin-bottom: 1.25rem;
    color: var(--terracotta);
}

.service-item h3 {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.625rem;
}

.service-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

/* ─── CTA ─── */
.cta {
    padding: 7rem 0;
    background: var(--charcoal);
    text-align: center;
}

.cta .eyebrow {
    color: var(--terracotta-light);
}

.cta .section-title {
    color: var(--white);
}

.cta .section-title em {
    color: var(--terracotta-light);
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.cta-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.cta-value {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.cta-value a {
    color: var(--white);
    transition: color var(--transition);
}

.cta-value a:hover {
    color: var(--terracotta-light);
}

.cta .btn-primary {
    background: var(--terracotta);
}

.cta .btn-primary:hover {
    background: var(--terracotta-light);
}

/* ─── Map ─── */
.map-section {
    padding: 5rem 0;
    background: var(--white);
}

.map-section .section-title {
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--sand-dark);
}

.map-container iframe {
    filter: grayscale(0.3) contrast(1.05);
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal);
    color: var(--warm-gray-light);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 300px;
}

.footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--warm-gray-light);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

/* ─── Animations ─── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 500px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 246, 242, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--sand-dark);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 10rem 0 4rem;
    }

    .hero-image img {
        height: 360px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-details {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}
