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

:root {
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream-50:    #fefdf8;
    --cream-100:   #fefcf3;
    --cream-200:   #fdf8e8;
    --cream-300:   #f5f0dc;
    --stone-50:    #fafaf9;
    --stone-100:   #f5f5f4;
    --stone-200:   #e7e5e4;
    --stone-300:   #d6d3d1;
    --stone-400:   #a8a29e;
    --stone-500:   #78716c;
    --stone-600:   #57534e;
    --stone-700:   #44403c;
    --stone-800:   #292524;
    --stone-900:   #1c1917;

    --font-display: 'Lora', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(6,78,59,.06), 0 1px 2px rgba(6,78,59,.04);
    --shadow-md: 0 4px 16px rgba(6,78,59,.08), 0 2px 6px rgba(6,78,59,.05);
    --shadow-lg: 0 12px 40px rgba(6,78,59,.10), 0 4px 12px rgba(6,78,59,.06);
    --shadow-xl: 0 24px 60px rgba(6,78,59,.12), 0 8px 20px rgba(6,78,59,.07);

    --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--stone-800);
    background: var(--cream-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
label { font-size: .8125rem; font-weight: 500; letter-spacing: .02em; text-transform: uppercase; color: var(--stone-600); }

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

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--emerald-700);
    color: #fff;
    box-shadow: 0 2px 8px rgba(6,95,70,.25);
}
.btn--primary:hover { background: var(--emerald-800); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(6,95,70,.3); }
.btn--ghost {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.6); }
.btn--sm { padding: 8px 18px; font-size: .875rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--full { width: 100%; }

/* ── Section shared ─────────────────────────────── */
.section { padding: 100px 0; }
.section-eyebrow {
    font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--emerald-600); margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600; line-height: 1.2;
    color: var(--stone-900); margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.0625rem; color: var(--stone-500); max-width: 560px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Header ─────────────────────────────────────── */
#site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 16px 0;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#site-header.scrolled {
    background: rgba(254,253,248,.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { color: var(--emerald-700); flex-shrink: 0; }
.logo-text {
    font-family: var(--font-display);
    font-size: 1.125rem; font-weight: 600;
    color: var(--stone-800);
}
#site-header.scrolled .logo-mark { color: var(--emerald-700); }

.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a {
    font-size: .9375rem; font-weight: 500; color: var(--stone-600);
    transition: color var(--transition);
}
.nav-list a:hover { color: var(--emerald-700); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 2px; background: var(--stone-700);
    border-radius: 2px; transition: var(--transition);
}
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after  { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after  { transform: rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.gradient-orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: .7;
    animation: drift 18s ease-in-out infinite alternate;
}
.gradient-orb--1 {
    width: 700px; height: 700px; top: -15%; left: -10%;
    background: radial-gradient(circle, #a7f3d0 0%, #d1fae5 40%, transparent 70%);
    animation-delay: 0s;
}
.gradient-orb--2 {
    width: 500px; height: 500px; bottom: -10%; right: -5%;
    background: radial-gradient(circle, #fef3c7 0%, #fde68a 40%, transparent 70%);
    animation-delay: -6s;
}
.gradient-orb--3 {
    width: 350px; height: 350px; top: 30%; right: 20%;
    background: radial-gradient(circle, #bbf7d0 0%, #86efac 40%, transparent 70%);
    animation-delay: -12s;
}
@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -20px) scale(1.05); }
    100% { transform: translate(-20px, 30px) scale(.95); }
}
.grain-overlay {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 1; text-align: center; max-width: 820px;
}
.hero-eyebrow {
    font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    color: var(--emerald-700); margin-bottom: 20px;
    background: rgba(255,255,255,.6); backdrop-filter: blur(6px);
    display: inline-block; padding: 6px 16px; border-radius: 100px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 4.5vw, 3.125rem);
    font-weight: 600; line-height: 1.25;
    color: var(--stone-900); margin-bottom: 24px;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--stone-600); line-height: 1.75; max-width: 600px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pill {
    font-size: .8125rem; font-weight: 500;
    color: var(--emerald-800);
    background: rgba(255,255,255,.7); backdrop-filter: blur(6px);
    border: 1px solid rgba(6,95,70,.12);
    padding: 6px 16px; border-radius: 100px;
}
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--stone-400); font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
}
.scroll-line { width: 1px; height: 40px; background: var(--stone-300); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--emerald-600);
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown { 0%{top:-100%} 50%{top:0} 100%{top:100%} }

/* ── Products ───────────────────────────────────── */
.products { background: var(--cream-50); }
.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card-img {
    position: relative; height: 260px;
    background-size: cover; background-position: center;
}
.product-tag {
    position: absolute; bottom: 16px; left: 16px;
    font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--emerald-800);
    background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
    padding: 5px 12px; border-radius: 100px;
}
.product-card-body { padding: 28px; }
.product-card-title {
    font-family: var(--font-display);
    font-size: 1.375rem; font-weight: 600; color: var(--stone-900); margin-bottom: 10px;
}
.product-card-desc { font-size: .9375rem; color: var(--stone-500); line-height: 1.7; }

/* ── About ──────────────────────────────────────── */
.about { background: var(--cream-100); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-float {
    position: absolute; bottom: -40px; right: -30px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-100);
}
.about-img-float img { width: 100%; display: block; }
.about-accent {
    position: absolute; top: -20px; left: -20px;
    color: var(--emerald-400); opacity: .5;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--stone-600); margin-bottom: 16px; line-height: 1.75; }
.about-stats {
    display: flex; align-items: center; gap: 24px; margin-top: 36px;
    padding-top: 36px; border-top: 1px solid var(--stone-200);
}
.stat { text-align: center; }
.stat-number {
    display: block; font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600; color: var(--emerald-700);
}
.stat-label { font-size: .8125rem; color: var(--stone-500); }
.stat-divider { width: 1px; height: 40px; background: var(--stone-200); }

/* ── Visit ──────────────────────────────────────── */
.visit { background: var(--cream-50); }
.visit-card {
    display: grid; grid-template-columns: 1fr 1fr;
    background: #fff; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.visit-content { padding: 60px; display: flex; flex-direction: column; }
.visit-desc { color: var(--stone-500); margin-bottom: 36px; line-height: 1.7; }
.visit-details { display: flex; flex-direction: column; gap: 20px; }
.visit-detail-label {
    font-size: .6875rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: var(--stone-400); margin-bottom: 4px;
}
.visit-detail dd { font-size: 1rem; color: var(--stone-700); line-height: 1.6; }
.visit-detail a {
    color: var(--emerald-700); font-weight: 500;
    transition: color var(--transition);
}
.visit-detail a:hover { color: var(--emerald-500); }
.visit-map { min-height: 400px; }
.visit-map iframe { display: block; }

/* ── Contact ────────────────────────────────────── */
.contact { background: var(--cream-100); }
.contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-text .section-title { margin-bottom: 16px; }
.contact-text p { color: var(--stone-500); line-height: 1.75; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: .9375rem; color: var(--stone-800);
    background: #fff;
    border: 1.5px solid var(--stone-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16,185,129,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-400); }
.form-note { font-size: .8125rem; color: var(--stone-400); text-align: center; }
.form-success {
    display: flex; align-items: center; gap: 10px;
    font-size: .9375rem; font-weight: 500; color: var(--emerald-700);
    background: var(--emerald-50); border: 1px solid var(--emerald-200);
    border-radius: var(--radius-sm); padding: 14px 18px;
}

/* ── Footer ─────────────────────────────────────── */
#site-footer {
    background: var(--stone-900); color: rgba(255,255,255,.6);
    padding: 60px 0 32px;
}
.logo--light .logo-mark { color: var(--emerald-400); }
.logo--light .logo-text { color: #fff; }
.footer-top { margin-bottom: 40px; }
.footer-tagline { max-width: 360px; font-size: .9375rem; line-height: 1.7; margin-top: 12px; }
.footer-bottom {
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: .8125rem;
}
.footer-bottom a { color: var(--emerald-400); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--emerald-300); }

/* ── Scroll reveal ──────────────────────────────── */
.reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-map { min-height: 300px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .menu-toggle { display: flex; }
    .nav-list {
        position: fixed; top: 0; right: 0; bottom: 0; width: 280px;
        flex-direction: column; justify-content: center; gap: 24px;
        background: var(--cream-50);
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 105;
    }
    .nav-list.open { transform: translateX(0); }
    .nav-list a { font-size: 1.125rem; }

    .hero { padding: 100px 20px 60px; }
    .hero-title { font-size: clamp(1.375rem, 6vw, 2rem); }
    .hero-actions { flex-direction: column; align-items: center; }

    .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img-float { right: 0; bottom: -24px; }
    .about-stats { flex-wrap: wrap; justify-content: center; }
    .visit-content { padding: 36px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-pills { gap: 8px; }
    .pill { font-size: .75rem; padding: 4px 12px; }
}
