/* ============================================================
   Vapurlu Süt — Yaratıcı & modern kurumsal tasarım
   Palet: derin orman yeşili · taze lime · tereyağı sarısı · krem
   ============================================================ */

:root {
    --ink: #0a2417;
    --ink-2: #1c3d2c;
    --cream: #f4f8e6;
    --cream-2: #e8f0cf;
    --paper: #ffffff;
    --green: #0b7a45;
    --green-2: #10a15b;
    --lime: #8ae526;
    --lime-2: #c2f53f;
    --butter: #ffcf2e;
    --clay: #ff7a3c;
    --coral: #ff5d73;
    --berry: #e0489a;
    --sky: #17c0c9;
    --grape: #8b5cf6;
    --muted: #5a6b58;
    --line: #dfe8c8;

    --grad-hero: linear-gradient(140deg, #10a15b 0%, #0b7a45 45%, #075c33 100%);
    --grad-lime: linear-gradient(120deg, var(--lime) 0%, var(--lime-2) 100%);
    --grad-warm: linear-gradient(120deg, #ffcf2e 0%, #ff7a3c 100%);
    --grad-text: linear-gradient(100deg, #10a15b 0%, #8ae526 60%, #ffcf2e 100%);
    --shadow-xl: 0 30px 60px -20px rgba(10, 60, 35, .40);
    --shadow: 0 18px 40px -18px rgba(10, 60, 35, .28);
    --shadow-sm: 0 8px 20px -10px rgba(10, 60, 35, .22);

    --r-lg: 28px;
    --r-md: 18px;
    --r-sm: 12px;
    --maxw: 1200px;

    --f-display: "Sora", "Segoe UI", system-ui, sans-serif;
    --f-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--f-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color .18s ease; }

h1, h2, h3, h4 {
    font-family: var(--f-display);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ink);
    margin: 0 0 .5em;
    font-weight: 800;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: 1.35rem; letter-spacing: -.01em; }

p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--green); color: #fff; padding: 10px 16px; z-index: 300; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--f-display); font-weight: 800; font-size: .76rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--green);
    background: linear-gradient(120deg, rgba(138,229,38,.22), rgba(255,207,46,.22));
    padding: .4rem .95rem; border-radius: 50px; border: 1px solid rgba(138,229,38,.4);
}
.section-dark .eyebrow { color: var(--lime); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.text-lime { color: var(--lime); }
.grad-text {
    background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.highlight { position: relative; white-space: nowrap; display: inline-block; padding: 0 .12em; z-index: 0; }
.highlight::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .42em;
    background: var(--grad-warm); z-index: -1; border-radius: 6px; transform: rotate(-1.5deg);
    box-shadow: 0 6px 16px -6px rgba(255,122,60,.7);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
    font-family: var(--f-display); font-weight: 700; font-size: 1rem;
    padding: .95rem 1.7rem; border-radius: 60px; border: 2px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--ink); color: var(--lime-2); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green); color: #fff; box-shadow: 0 16px 34px -14px rgba(16,161,91,.8); }
.btn-lime { background: var(--grad-lime); color: var(--ink); box-shadow: 0 14px 34px -12px rgba(138,229,38,.85); }
.btn-lime:hover { color: var(--ink); box-shadow: 0 20px 40px -12px rgba(138,229,38,1); }
.btn-warm { background: var(--grad-warm); color: #fff; box-shadow: 0 14px 34px -12px rgba(255,122,60,.75); }
.btn-warm:hover { color: #fff; box-shadow: 0 20px 42px -12px rgba(255,122,60,.95); }
.btn-outline { border-color: currentColor; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--lime-2); border-color: var(--ink); }
.btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; padding: .7rem 0; transition: background .2s ease, box-shadow .2s ease; }
.site-header.scrolled { background: rgba(247,243,232,.85); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; color: var(--green); }
.brand-tag { font-size: .7rem; color: var(--muted); margin-top: 3px; }

.site-nav { display: flex; align-items: center; gap: .4rem; }
.site-nav a { font-family: var(--f-display); font-weight: 600; color: var(--ink); font-size: .95rem; padding: .55rem .9rem; border-radius: 40px; }
.site-nav a:hover { background: rgba(15,92,63,.08); color: var(--green); }
.site-nav .nav-cta { background: var(--ink); color: var(--lime-2); margin-left: .3rem; }
.site-nav .nav-cta:hover { background: var(--green); color: #fff; }

.nav-toggle-label { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 210; }
.nav-toggle-label span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 6rem); overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .8; z-index: 0; animation: float 9s ease-in-out infinite; }
.blob-1 { width: 480px; height: 480px; background: radial-gradient(circle at 30% 30%, var(--lime), transparent 68%); top: -130px; right: -90px; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle at 30% 30%, var(--butter), transparent 68%); bottom: -150px; left: -110px; animation-delay: -3s; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle at 30% 30%, var(--sky), transparent 68%); top: 30%; left: 40%; opacity: .5; animation-delay: -5s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .55rem; background: var(--paper); border: 1px solid var(--line);
    padding: .5rem 1rem; border-radius: 60px; font-family: var(--f-display); font-weight: 700;
    font-size: .82rem; box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(168,224,95,.35); }
.hero h1 { margin-bottom: 1.1rem; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-2); max-width: 48ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 2.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-trust .t strong { display: block; font-family: var(--f-display); font-size: 2rem; color: var(--green); line-height: 1; }
.hero-trust .t span { font-size: .85rem; color: var(--muted); }

/* Hero görsel sahnesi */
.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-orb {
    position: absolute; inset: 6% 6% 6% 6%; border-radius: 50%;
    background: var(--grad-hero); box-shadow: var(--shadow-xl);
    display: grid; place-items: center; overflow: hidden;
}
.hero-orb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.18), transparent 45%); }
.hero-orb img { width: 78%; height: 78%; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(0,0,0,.35)); }
.float-card {
    position: absolute; background: var(--paper); border-radius: var(--r-md); padding: .8rem 1rem;
    box-shadow: var(--shadow); display: flex; align-items: center; gap: .7rem; font-weight: 700;
    font-family: var(--f-display); font-size: .9rem; animation: float 7s ease-in-out infinite;
}
.float-card .ic { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem; }
.float-card small { display: block; font-family: var(--f-body); font-weight: 500; color: var(--muted); font-size: .74rem; }
.fc-1 { top: 4%; left: -4%; }
.fc-2 { bottom: 12%; left: -8%; animation-delay: -2s; }
.fc-3 { bottom: 2%; right: -2%; animation-delay: -4s; }

/* ---------- Marquee ---------- */
.marquee { background: var(--grad-lime); color: var(--ink); overflow: hidden; padding: 1.05rem 0; transform: rotate(-1.5deg); margin: 2.5rem 0; box-shadow: var(--shadow); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scroll 26s linear infinite; }
.marquee-track span { font-family: var(--f-display); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .08em; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::before { content: "✦"; color: var(--green); }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track, .blob, .float-card { animation: none; } }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section-mint { background: linear-gradient(180deg, #eaf7d4 0%, #f4f8e6 100%); }
.section-butter { background: linear-gradient(180deg, #fff4cf 0%, #f4f8e6 100%); }
.section-dark { background: var(--grad-hero); color: var(--cream); position: relative; overflow: hidden; }
.section-dark::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, var(--lime), transparent 70%); opacity: .25; top: -120px; right: -80px; }
.section-dark::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--sky), transparent 70%); opacity: .22; bottom: -120px; left: -60px; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .container { position: relative; z-index: 1; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { margin-top: .4rem; }
.section:not(.section-dark) .section-head h2 {
    background: linear-gradient(100deg, #0b7a45 0%, #10a15b 50%, #62b81c 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-head p { color: rgba(255,255,255,.75); }

/* ---------- Features (numbered) ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.feature {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 1.6rem;
    position: relative; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature .num { font-family: var(--f-display); font-weight: 800; font-size: 3.4rem; -webkit-text-stroke: 2px var(--cream-2); color: transparent; position: absolute; top: .2rem; right: 1rem; line-height: 1; }
.feature .f-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--grad-lime); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.feature:nth-child(1) .f-icon { background: var(--grad-lime); }
.feature:nth-child(2) .f-icon { background: var(--grad-warm); }
.feature:nth-child(3) { }
.feature:nth-child(3) .f-icon { background: linear-gradient(120deg, var(--sky), #66e0d6); }
.feature:nth-child(4) .f-icon { background: linear-gradient(120deg, var(--grape), #b794f6); }
.feature:hover { border-color: transparent; }
.feature:nth-child(1):hover { box-shadow: 0 20px 40px -18px rgba(138,229,38,.6); }
.feature:nth-child(2):hover { box-shadow: 0 20px 40px -18px rgba(255,122,60,.55); }
.feature:nth-child(3):hover { box-shadow: 0 20px 40px -18px rgba(23,192,201,.5); }
.feature:nth-child(4):hover { box-shadow: 0 20px 40px -18px rgba(139,92,246,.5); }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.7rem; }
.card {
    background: var(--paper); border-radius: var(--r-lg); overflow: hidden; position: relative;
    box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column; border: 1px solid var(--line);
}
.card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: var(--shadow-xl); }
.card-media { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.08) rotate(1deg); }
.card-badge {
    position: absolute; top: .9rem; left: .9rem; z-index: 2; background: var(--ink); color: var(--lime-2);
    font-family: var(--f-display); font-weight: 700; font-size: .72rem; letter-spacing: .04em;
    padding: .35rem .8rem; border-radius: 40px; text-transform: uppercase;
}
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin-bottom: .5rem; font-size: 1.25rem; }
.card h3 a { color: var(--ink); }
.card h3 a:hover { color: var(--green); }
.card p { color: var(--muted); font-size: .93rem; margin: 0 0 1.2rem; flex: 1; }
.card-link { font-family: var(--f-display); font-weight: 700; color: var(--green); align-self: flex-start; display: inline-flex; align-items: center; gap: .4rem; }
.card-link span { transition: transform .2s ease; }
.card:hover .card-link span { transform: translateX(5px); }

/* ---------- Category pills ---------- */
.cat-filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 3rem; }
.cat-pill {
    font-family: var(--f-display); font-weight: 600; font-size: .92rem; padding: .6rem 1.3rem; border-radius: 50px;
    border: 2px solid var(--line); background: var(--paper); color: var(--ink); transition: all .18s ease;
}
.cat-pill:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.cat-pill.active { background: var(--ink); color: var(--lime-2); border-color: var(--ink); }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.cat-card {
    position: relative; border-radius: var(--r-lg); padding: 2rem 1.8rem; overflow: hidden;
    background: var(--paper); border: 1px solid var(--line); transition: transform .22s ease, box-shadow .22s ease; display: block;
}
.cat-card::before { content: ""; position: absolute; inset: auto -30% -60% auto; width: 190px; height: 190px; border-radius: 50%; background: var(--grad-lime); opacity: .35; transition: transform .3s ease; }
.cat-card:nth-child(1)::before { background: var(--grad-lime); }
.cat-card:nth-child(2)::before { background: var(--grad-warm); }
.cat-card:nth-child(3)::before { background: linear-gradient(120deg, var(--sky), #66e0d6); }
.cat-card:nth-child(4)::before { background: linear-gradient(120deg, var(--berry), #ff8ec2); }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.cat-card:hover::before { transform: scale(1.5); opacity: .5; }
.cat-card .cat-icon { font-size: 2.8rem; margin-bottom: .6rem; position: relative; }
.cat-card h3 { color: var(--green); margin-bottom: .3rem; position: relative; }
.cat-card p { color: var(--muted); font-size: .92rem; margin: 0 0 .8rem; }
.cat-card .cat-count { font-family: var(--f-display); font-weight: 700; font-size: .85rem; color: var(--ink); display: inline-flex; align-items: center; gap: .35rem; }

/* ---------- Process (dark section) ---------- */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 2rem 1.6rem; }
.step .step-no { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); background: var(--lime); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem; }
.step h3 { color: #fff; margin-bottom: .4rem; }
.step p { color: rgba(255,255,255,.72); font-size: .93rem; margin: 0; }

/* ---------- Product detail ---------- */
.breadcrumb { font-family: var(--f-display); font-size: .85rem; color: var(--muted); padding: 1.6rem 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span.sep { margin: 0 .45rem; opacity: .5; }
.detail-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.5rem; align-items: start; padding: 2rem 0 3.5rem; }
.detail-media { position: relative; }
.detail-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); position: sticky; top: 100px; }
.detail-media .frame::before { content: ""; position: absolute; inset: auto -20% -30% -20%; height: 60%; background: var(--grad-lime); filter: blur(40px); opacity: .5; z-index: -1; }
.detail-media img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.detail-region { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; color: var(--clay); margin-bottom: .8rem; }
.detail-body h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: .7rem; }
.detail-lead { font-size: 1.2rem; color: var(--ink-2); margin-bottom: 1.5rem; }
.detail-body p { color: var(--ink-2); }
.detail-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.2rem 0 1.8rem; }
.chip { background: var(--cream-2); border-radius: 50px; padding: .4rem 1rem; font-size: .85rem; font-weight: 600; font-family: var(--f-display); }
.detail-specs { list-style: none; padding: 0; margin: 1.8rem 0; }
.detail-specs li { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px dashed var(--line); }
.detail-specs .k { color: var(--muted); font-weight: 600; }
.detail-specs .v { font-family: var(--f-display); font-weight: 700; text-align: right; }
.detail-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-hero); color: #fff; border-radius: var(--r-lg); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; box-shadow: var(--shadow-xl); }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; }
.cta-band::before { width: 260px; height: 260px; background: radial-gradient(circle, var(--lime), transparent 70%); opacity: .35; top: -80px; left: -60px; }
.cta-band::after { width: 300px; height: 300px; background: radial-gradient(circle, var(--butter), transparent 70%); opacity: .3; bottom: -120px; right: -80px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 52ch; margin: .6rem auto 1.8rem; position: relative; font-size: 1.1rem; }
.cta-band .btn { position: relative; }

/* ---------- Page hero (inner) ---------- */
.page-hero { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); text-align: center; }
.page-hero .blob { opacity: .35; }
.page-hero .eyebrow { margin-bottom: .6rem; }
.page-hero p { color: var(--muted); max-width: 58ch; margin: .6rem auto 0; font-size: 1.1rem; position: relative; z-index: 1; }
.page-hero h1 { position: relative; z-index: 1; }

/* ---------- About / Contact ---------- */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { color: var(--ink-2); font-size: 1.08rem; }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; margin-top: 2.5rem; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; transition: transform .2s ease, box-shadow .2s ease; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .f-icon { width: 54px; height: 54px; border-radius: 15px; background: var(--grad-lime); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: .8rem; }
.value-card h3 { color: var(--green); }

/* About intro (two-column) */
.about-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.2rem; align-items: center; }
.about-copy .eyebrow { margin-bottom: .8rem; }
.about-copy h2 { margin: 0 0 1.2rem; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.about-copy p { color: var(--ink-2); font-size: 1.06rem; margin-bottom: 1.1rem; }
.about-copy p:last-child { margin-bottom: 0; }

.about-visual { position: relative; }
.about-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-frame::before { content: ""; position: absolute; inset: auto -18% -28% -18%; height: 60%; background: var(--grad-lime); filter: blur(42px); opacity: .5; z-index: -1; }
.about-frame img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-badge {
    position: absolute; bottom: -22px; left: -22px; background: var(--paper); border-radius: var(--r-md);
    box-shadow: var(--shadow); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .8rem;
    border: 1px solid var(--line);
}
.about-badge .ab-year { font-family: var(--f-display); font-weight: 800; font-size: 2rem; color: var(--green); line-height: 1; }
.about-badge .ab-text { font-family: var(--f-display); font-weight: 600; font-size: .82rem; color: var(--muted); line-height: 1.25; }

/* About stats band */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 4rem; }
.about-stat {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 1.6rem 1.2rem; text-align: center; box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-stat strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.9rem; line-height: 1; color: var(--green); margin-bottom: .5rem; }
.about-stat span { color: var(--muted); font-size: .9rem; }

.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; position: relative; }

/* About closing banner (split) */
.about-cta { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 2.5rem; text-align: left; padding: clamp(2.2rem, 5vw, 3.4rem); }
.about-cta .cta-text { position: relative; z-index: 1; }
.about-cta .cta-text h2 { text-align: left; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.about-cta .cta-text p { margin: .6rem 0 1.8rem; text-align: left; max-width: 46ch; }
.about-cta .cta-actions { justify-content: flex-start; }
.about-cta .cta-visual { position: relative; z-index: 1; }
.about-cta .cta-visual img { width: 100%; max-width: 360px; margin-left: auto; display: block; border-radius: var(--r-lg); box-shadow: var(--shadow-xl); }

/* Quick-action cards */
.contact-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.contact-action {
    position: relative; overflow: hidden; display: flex; flex-direction: column; gap: .15rem;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); color: var(--ink);
    transition: transform .22s ease, box-shadow .22s ease;
}
.contact-action:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.contact-action .ca-icon {
    width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
    font-size: 1.5rem; margin-bottom: .7rem; box-shadow: var(--shadow-sm);
}
.contact-action.ca-call .ca-icon { background: var(--grad-lime); }
.contact-action.ca-wa   .ca-icon { background: linear-gradient(120deg, #25d366, #10a15b); }
.contact-action.ca-mail .ca-icon { background: var(--grad-warm); }
.contact-action .ca-label { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; }
.contact-action .ca-value { color: var(--muted); font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: stretch; }
.contact-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem 2.1rem; box-shadow: var(--shadow-sm); }
.contact-panel h2 { margin-bottom: .4rem; }
.contact-info { list-style: none; padding: 0; margin: 0; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.1rem 0; border-bottom: 1px dashed var(--line); }
.contact-info li:last-child { border-bottom: none; }
.contact-info .ci-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--cream-2); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info .ci-label { font-family: var(--f-display); font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

.contact-social { margin-top: 1.4rem; }
.contact-social .cs-label { display: block; font-family: var(--f-display); font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .7rem; }
.contact-social .cs-links { display: flex; flex-wrap: wrap; gap: .6rem; }
.contact-social .cs-links a {
    font-family: var(--f-display); font-weight: 700; font-size: .9rem; color: var(--ink);
    padding: .55rem 1.1rem; border-radius: 50px; border: 2px solid var(--line); transition: all .18s ease;
}
.contact-social .cs-links a:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.contact-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); min-height: 360px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-family: var(--f-display); font-weight: 600; margin-bottom: .4rem; font-size: .9rem; }
.form-row input, .form-row textarea { width: 100%; padding: .9rem 1.1rem; border: 2px solid var(--line); border-radius: var(--r-sm); font-family: inherit; font-size: 1rem; background: var(--cream); transition: border-color .15s ease, background .15s ease; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .8rem; }

.empty { text-align: center; color: var(--muted); padding: 4rem 0; font-size: 1.1rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c9d6cd; margin-top: 4rem; position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: -100px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, var(--green-2), transparent 70%); opacity: .4; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.7fr 1fr 1.4fr; gap: 2.5rem; padding: 3.5rem 0 2rem; }
.footer-brand img { width: 50px; height: 50px; margin-bottom: 1rem; }
.footer-name { font-family: var(--f-display); font-weight: 800; color: #fff; margin: 0 0 .5rem; font-size: 1.05rem; }
.footer-desc { font-size: .92rem; color: #9fb3a8; margin: 0; max-width: 40ch; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .65rem; }
.site-footer a { color: #c9d6cd; }
.site-footer a:hover { color: var(--lime); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; margin-bottom: .7rem; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; font-family: var(--f-display); font-weight: 700; font-size: .8rem; transition: background .18s ease, color .18s ease; }
.footer-social a:hover { background: var(--lime); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; font-size: .85rem; color: #8ba397; text-align: center; position: relative; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .hero-grid, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
    .contact-actions { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { max-width: 460px; margin: 0 auto; }
    .about-badge { left: 12px; }
    .about-cta { grid-template-columns: 1fr; text-align: center; }
    .about-cta .cta-text h2, .about-cta .cta-text p { text-align: center; }
    .about-cta .cta-text p { margin-inline: auto; }
    .about-cta .cta-actions { justify-content: center; }
    .about-cta .cta-visual { order: -1; }
    .about-cta .cta-visual img { margin-inline: auto; max-width: 300px; }
    .hero-visual { max-width: 460px; margin: 1rem auto 0; }
    .detail-media .frame { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .nav-toggle-label { display: flex; }
    .site-nav {
        position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: var(--paper);
        flex-direction: column; align-items: stretch; justify-content: center; gap: .3rem;
        padding: 2rem; box-shadow: var(--shadow-xl); transform: translateX(100%); transition: transform .3s ease; z-index: 205;
    }
    .site-nav a { font-size: 1.15rem; padding: .9rem 1rem; }
    .nav-toggle:checked ~ .site-nav { transform: translateX(0); }
    .hero-trust { gap: 1.5rem; }
    .float-card { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}
