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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-800);
    background: #fff;
    line-height: 1.7;
    font-size: 15px;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--teal-700);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 100;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 4px;
}
.skip-link:focus {
    top: 1rem;
}

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

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 2rem;
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--slate-200);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--slate-800);
}

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

.nav-menu a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

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

.nav-menu a:hover {
    color: #fff;
}

.nav.scrolled .nav-menu a {
    color: var(--slate-500);
}

.nav.scrolled .nav-menu a:hover {
    color: var(--slate-800);
}

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.scrolled .nav-toggle-line {
    background: var(--slate-800);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.45) 0%,
        rgba(15, 23, 42, 0.55) 50%,
        rgba(15, 23, 42, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 2rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--teal-200);
}

.hero-sub {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn--primary {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}

.btn--primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}

.btn--outline {
    background: transparent;
    color: var(--teal-600);
    border-color: var(--teal-600);
}

.btn--outline:hover {
    background: var(--teal-600);
    color: #fff;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
}

/* ── SECTIONS ── */
.section-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

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

.section-title--center {
    text-align: center;
}

/* ── INTRO ── */
.intro {
    padding: 8rem 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    color: var(--slate-600);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.intro-text p:first-of-type {
    font-size: 1.0625rem;
    color: var(--slate-700);
}

.intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* ── DIVIDER ── */
.divider-section {
    padding: 0;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: var(--slate-200);
}

/* ── PRODUCTS ── */
.products {
    padding: 6rem 0 8rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.product-card {
    group: product;
    cursor: pointer;
}

.product-card-img {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    aspect-ratio: 4/3;
    background: var(--slate-100);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease-out);
}

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

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 380px;
}

/* ── EXPERIENCE ── */
.experience {
    padding: 8rem 0;
    background: var(--slate-50);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-image {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 7/5;
    background: var(--slate-100);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.experience-image:hover img {
    transform: scale(1.03);
}

.experience-content .section-title {
    margin-bottom: 1.5rem;
}

.experience-content p {
    color: var(--slate-600);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.experience-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--teal-700);
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
}

/* ── CTA ── */
.cta-section {
    padding: 8rem 0;
    background: var(--slate-900);
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner .section-label {
    color: var(--teal-400);
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.cta-headline em {
    font-style: italic;
    color: var(--teal-300);
}

.cta-text {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.cta-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-300);
    font-size: 0.9375rem;
}

.cta-detail svg {
    color: var(--teal-400);
    flex-shrink: 0;
}

.cta-detail a {
    color: var(--slate-300);
    text-decoration: none;
    transition: color 0.3s;
}

.cta-detail a:hover {
    color: var(--teal-300);
}

.cta-inner .btn--primary {
    background: var(--teal-500);
    border-color: var(--teal-500);
}

.cta-inner .btn--primary:hover {
    background: var(--teal-400);
    border-color: var(--teal-400);
}

/* ── VISIT ── */
.visit {
    padding: 8rem 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.visit-info-label {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.visit-info-value {
    font-size: 1rem;
    color: var(--slate-700);
    line-height: 1.7;
}

.visit-info-link {
    font-size: 1rem;
    color: var(--teal-600);
    text-decoration: none;
    transition: color 0.3s;
}

.visit-info-link:hover {
    color: var(--teal-700);
}

.visit-map {
    overflow: hidden;
    border-radius: 4px;
    background: var(--slate-100);
}

.visit-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 3/2;
}

.visit-map-caption {
    font-size: 0.8125rem;
    color: var(--slate-400);
    text-align: center;
    padding: 0.75rem;
    letter-spacing: 0.02em;
}

/* ── FOOTER ── */
.footer {
    background: var(--slate-900);
    padding: 4rem 0 2rem;
    color: var(--slate-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--slate-800);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--slate-500);
    max-width: 280px;
}

.footer-links-label,
.footer-contact span:first-child {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-600);
    display: block;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-contact a {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--teal-400);
}

.footer-contact span:not(:first-child) {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--slate-600);
    letter-spacing: 0.04em;
}

/* ── FORM SUCCESS ── */
.form-success {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--teal-700);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.4s var(--ease-out);
    pointer-events: none;
}

.form-success.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        color: var(--slate-700) !important;
        font-size: 0.9375rem;
    }

    .nav-toggle {
        display: flex;
    }

    .intro-grid,
    .experience-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-image {
        order: -1;
        aspect-ratio: 4/3;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .experience-stats {
        gap: 2rem;
    }
}

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

    .nav {
        padding: 0 1.25rem;
    }

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

    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
    }

    .experience-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-details {
        gap: 0.5rem;
    }
}
