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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #fefdf8;
    --cream-100: #fef9ef;
    --cream-200: #fef3c7;
    --cream-300: #fde68a;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --nav-height: 72px;
    --section-padding: clamp(80px, 12vw, 140px);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--stone-800);
    background: var(--cream-50);
    line-height: 1.7;
    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 clamp(24px, 4vw, 64px);
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--stone-200);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream-50);
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
    color: var(--emerald-900);
}

.nav-logo-icon {
    opacity: 0.85;
}

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

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--stone-600);
}

.nav-links a:hover {
    color: var(--cream-200);
}

.nav.scrolled .nav-links a:hover {
    color: var(--emerald-700);
}

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

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

.nav-cta {
    border: 1px solid rgba(254, 253, 248, 0.4) !important;
    padding: 8px 20px;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.nav.scrolled .nav-cta {
    border-color: var(--emerald-800) !important;
    color: var(--emerald-800) !important;
}

.nav-cta:hover {
    background: rgba(254, 253, 248, 0.12) !important;
}

.nav.scrolled .nav-cta:hover {
    background: var(--emerald-50) !important;
}

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

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream-50);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--stone-800);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--emerald-900);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream-200);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--cream-50);
}

.mobile-menu-phone {
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    opacity: 0.7;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(4, 120, 87, 0.85) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6, 79, 70, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(5, 150, 105, 0.4) 0%, transparent 50%),
        linear-gradient(160deg, #042f26 0%, #064e3b 35%, #047857 65%, #065f46 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-200);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream-50);
    margin-bottom: 28px;
}

.hero-title-line {
    display: block;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-title-line:nth-child(1) { animation-delay: 0.35s; }
.hero-title-line:nth-child(2) { animation-delay: 0.5s; }
.hero-title-line:nth-child(3) { animation-delay: 0.65s; }

.hero-title-accent {
    font-style: italic;
    font-weight: 300;
    color: var(--cream-200);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 300;
    color: rgba(254, 253, 248, 0.7);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 44px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.95s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--cream-50);
    color: var(--emerald-900);
}

.btn-primary:hover {
    background: var(--cream-200);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--cream-200);
    border: 1px solid rgba(254, 253, 248, 0.35);
}

.btn-ghost:hover {
    border-color: var(--cream-200);
    background: rgba(254, 253, 248, 0.08);
}

.btn-map {
    background: var(--emerald-800);
    color: var(--cream-50);
    margin-top: 20px;
}

.btn-map:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
}

.hero-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(254, 253, 248, 0.55);
    opacity: 0;
    animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-details a {
    color: rgba(254, 253, 248, 0.65);
    transition: color 0.3s ease;
}

.hero-details a:hover {
    color: var(--cream-200);
}

.hero-divider {
    opacity: 0.4;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(254, 253, 248, 0.4);
    animation: fadeUp 0.8s ease 1.3s forwards;
    opacity: 0;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Section Shared ───────────────────────────────── */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--stone-900);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-line {
    width: 48px;
    height: 1px;
    background: var(--emerald-600);
    margin: 0 auto;
}

/* ── Products ─────────────────────────────────────── */
.products {
    background: var(--cream-50);
}

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

.product-card {
    background: var(--cream-100);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(6, 78, 59, 0.1);
}

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

.product-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card-content {
    padding: 28px 32px 36px;
}

.product-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--emerald-900);
    margin-bottom: 10px;
}

.product-card-content p {
    font-size: 0.92rem;
    color: var(--stone-600);
    line-height: 1.7;
}

/* ── Divider ──────────────────────────────────────── */
.section-divider {
    padding: 0;
    background: var(--emerald-900);
}

.divider-inner {
    padding: 56px clamp(24px, 4vw, 64px);
    text-align: center;
}

.divider-text {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream-200);
    letter-spacing: 0.02em;
}

/* ── About ────────────────────────────────────────── */
.about {
    background: var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    border: 1px solid var(--emerald-200, #a7f3d0);
    border-radius: 4px;
    z-index: -1;
}

.about-content {
    padding-top: 8px;
}

.about-content .section-eyebrow {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-line {
    margin: 0 0 32px 0;
}

.about-text {
    font-size: 0.97rem;
    color: var(--stone-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--stone-700);
}

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

/* ── Visit ────────────────────────────────────────── */
.visit {
    background: var(--cream-100);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: var(--cream-50);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.visit-card:hover {
    box-shadow: 0 8px 32px rgba(6, 78, 59, 0.08);
}

.visit-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--stone-200);
    border-radius: 50%;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.visit-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--stone-900);
    margin-bottom: 6px;
}

.visit-card p,
.visit-card a {
    font-size: 0.9rem;
    color: var(--stone-600);
    line-height: 1.7;
}

.visit-card a:hover {
    color: var(--emerald-700);
    text-decoration: underline;
}

.visit-map {
    border-radius: 4px;
    overflow: hidden;
}

.map-placeholder {
    background: var(--emerald-900);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--cream-200);
    text-align: center;
    padding: 40px;
    border-radius: 4px;
}

.map-placeholder svg {
    opacity: 0.6;
}

.map-placeholder p {
    font-size: 0.95rem;
    color: var(--cream-300);
    line-height: 1.7;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--stone-900);
    padding: 72px 0 0;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream-200);
    display: block;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: var(--stone-500);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone-500);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cream-200);
}

.footer-bottom {
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--stone-600);
}

.footer-bottom a {
    color: var(--stone-500);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--cream-200);
}

.footer-responsible {
    font-style: italic;
    color: var(--stone-700) !important;
    margin-top: 4px;
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrap {
        max-width: 480px;
    }

    .about-content .section-eyebrow,
    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-line {
        margin: 0 auto 32px;
    }

    .about-text {
        text-align: center;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-details {
        flex-direction: column;
        gap: 6px;
    }

    .hero-divider {
        display: none;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .visit-card {
        padding: 20px 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}
