/* =========================================================
   Ali Fındık Firma — Karadeniz fındık ihracatçısı kimliği
   Çam yeşili + kavrulmuş fındık altını + sıcak kağıt
   Fraunces (display) + Hanken Grotesk (gövde)
   ========================================================= */

:root {
    /* Karadeniz yeşilleri */
    --pine-900: #14261c;
    --pine-800: #1c3728;
    --pine-700: #274c38;
    --pine-600: #356249;
    --pine-500: #4a7a5d;
    --moss-300: #9db99f;
    /* Kavrulmuş fındık altını */
    --gold-600: #9a6412;
    --gold-500: #bd7f22;
    --gold-400: #d69a3c;
    --gold-200: #eccf94;
    /* Logo bordosu (heritage aksan) */
    --wine-900: #350f18;
    --wine-800: #4a1420;
    --wine-700: #641b2b;
    /* Sıcak kağıt & çekirdek */
    --paper:    #f5efe3;
    --paper-2:  #efe6d4;
    --kernel:   #e7d9be;
    --ink:      #221c14;
    --muted:    #6d6353;
    --line:     #e2d6c0;
    --line-dk:  rgba(255,255,255,.14);
    --white:    #ffffff;
    --wa:       #1fa855;

    --shadow-sm: 0 1px 2px rgba(20,38,28,.06), 0 1px 3px rgba(20,38,28,.05);
    --shadow-md: 0 10px 30px rgba(20,38,28,.10);
    --shadow-lg: 0 30px 70px rgba(20,38,28,.20);
    --radius: 8px;
    --radius-lg: 18px;
    --maxw: 1200px;
    --display: "Fraunces", "Iowan Old Style", Georgia, serif;
    --sans: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    --ease: cubic-bezier(.22,.61,.24,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper);
    line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pine-700); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold-600); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; color: var(--pine-800); margin: 0 0 .5em; line-height: 1.1; letter-spacing: -.015em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; }

.section { padding: 92px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans);
    font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600);
    font-weight: 700; margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--gold-500); display: inline-block; }
.section-head .eyebrow { justify-content: center; }
.eyebrow.light { color: var(--gold-200); }
.eyebrow.light::before { background: var(--gold-400); }

/* ---------- Hareket (scroll reveal) ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; }
.reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; }
.reveal.d4 { transition-delay: .36s; }

/* ---------- İkonlar ---------- */
.ic { display: inline-block; vertical-align: middle; flex-shrink: 0; stroke: currentColor; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; gap: .55rem; padding: 14px 26px; border-radius: 999px;
    font-family: var(--sans); font-weight: 600; font-size: .96rem; cursor: pointer; border: 1.5px solid transparent;
    transition: transform .18s var(--ease), box-shadow .22s, background .22s, border-color .22s, color .22s;
    white-space: nowrap; letter-spacing: .005em; position: relative;
}
.btn .ic { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--pine-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--pine-800); color: #fff; box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: #2a1c05; }
.btn-gold:hover { background: var(--gold-400); color: #2a1c05; box-shadow: 0 10px 26px rgba(189,127,34,.35); }
.btn-outline { background: transparent; color: var(--pine-800); border-color: var(--line); }
.btn-outline:hover { background: rgba(20,38,28,.04); color: var(--pine-800); border-color: var(--pine-600); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #17924a; color: #fff; }
.btn-sm { padding: 9px 17px; font-size: .875rem; }
.btn-sm .ic { width: 16px; height: 16px; }

/* ---------- Üst bilgi şeridi ---------- */
.topbar { background: var(--pine-900); color: rgba(255,255,255,.78); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 24px; }
.topbar-left { display: flex; align-items: center; gap: 9px; font-weight: 500; }
.topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar a { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 7px; font-weight: 500; white-space: nowrap; }
.topbar a:hover { color: var(--gold-400); }
.topbar .ic { width: 15px; height: 15px; color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50; background: rgba(245,239,227,.9);
    backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(20,38,28,.02);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo-full { height: 56px; width: auto; display: block; }
.brand-logo-img { height: 52px; width: auto; display: block; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.32rem; color: var(--wine-800); line-height: 1.02; }
.brand-slogan { font-size: .68rem; color: var(--gold-600); letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a.navlink { position: relative; padding: 10px 15px; font-weight: 600; color: var(--pine-800); font-size: .95rem; }
.nav a.navlink::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease); }
.nav a.navlink:hover::after, .nav a.navlink.active::after { transform: scaleX(1); }
.nav a.navlink.active { color: var(--gold-600); }
.nav .btn { margin-left: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; padding: 8px; color: var(--pine-800); }

/* ---------- Hero Slider ---------- */
.hero { position: relative; }
.hero-slider { position: relative; height: min(84vh, 700px); min-height: 500px; overflow: hidden; background: var(--pine-900); }
.hero-track { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.1); transition: transform 8s var(--ease); }
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(100deg, rgba(20,38,28,.9) 0%, rgba(20,38,28,.66) 40%, rgba(20,38,28,.18) 72%, transparent 100%),
        linear-gradient(0deg, rgba(20,38,28,.6) 0%, transparent 42%);
}
.hero-slide-inner { position: relative; height: 100%; display: flex; align-items: center; z-index: 2; }
.hero-slide-content { max-width: 600px; color: #fff; }
.hero-slide-content h1 { color: #fff; margin-bottom: .3em; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero-slide-content .hero-lead { font-size: 1.18rem; color: rgba(255,255,255,.9); max-width: 520px; margin: 0 0 2.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero kademeli giriş animasyonu */
@keyframes heroUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-slide.active .eyebrow { animation: heroUp .7s .05s both var(--ease); }
.hero-slide.active h1 { animation: heroUp .8s .16s both var(--ease); }
.hero-slide.active .hero-lead { animation: heroUp .8s .3s both var(--ease); }
.hero-slide.active .hero-actions { animation: heroUp .8s .44s both var(--ease); }

.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .2s, transform .2s; }
.hero-arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: #2a1c05; }
.hero-arrow.prev { left: 24px; } .hero-arrow.next { right: 24px; }
.hero-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 11px; height: 11px; border-radius: 50%; cursor: pointer; border: 0; padding: 0; background: rgba(255,255,255,.4); transition: background .25s, width .25s, border-radius .25s; }
.hero-dot.active { background: var(--gold-400); width: 32px; border-radius: 999px; }

/* ---------- İmza: Hasat şeridi (marquee) ---------- */
.marquee { background: var(--pine-800); color: var(--gold-200); overflow: hidden; border-top: 3px solid var(--gold-500); }
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item { display: inline-flex; align-items: center; gap: 16px; padding: 15px 0; font-family: var(--display); font-size: 1.15rem; font-weight: 500; font-style: italic; letter-spacing: .01em; white-space: nowrap; }
.marquee__item::after { content: "✦"; margin: 0 26px; color: var(--gold-500); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Güven şeridi (künye) ---------- */
.trust-bar { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: 12px 42px; justify-content: center; padding: 20px 24px; }
.hero-badge { display: flex; align-items: center; gap: 11px; font-size: .92rem; font-weight: 600; color: var(--pine-800); }
.hero-badge .ic { width: 20px; height: 20px; color: var(--gold-600); }

/* ---------- Manifesto bandı ---------- */
.manifesto { background: var(--pine-800); color: #fff; position: relative; overflow: hidden; }
.manifesto::before {
    content: ""; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='6' cy='6' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
}
.manifesto .container { position: relative; }
.manifesto-quote { font-family: var(--display); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.28; color: #fff; max-width: 900px; margin: 0 0 6px; letter-spacing: -.01em; }
.manifesto-quote .hl { color: var(--gold-400); font-style: italic; }
.manifesto-sign { color: var(--moss-300); font-size: .95rem; margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.manifesto-sign::before { content: ""; width: 34px; height: 1px; background: var(--gold-500); }

/* ---------- Değer önermeleri (editoryal, kartsız) ---------- */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); max-width: 860px; margin: 0 auto; }
.value { padding: 8px 34px; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; }
.value:first-child { padding-left: 0; }
.value .v-ic { color: var(--gold-600); margin-bottom: 14px; }
.value .v-ic .ic { width: 30px; height: 30px; }
.value h3 { margin-bottom: .35em; font-size: 1.3rem; }
.value p { color: var(--muted); font-size: .96rem; margin: 0; }
.value .v-num { font-family: var(--display); font-size: .82rem; color: var(--gold-500); letter-spacing: .1em; display: block; margin-bottom: 18px; }

/* ---------- Ürün grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 28px; }
.product-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-thumb { aspect-ratio: 4/3; background: linear-gradient(155deg, var(--paper-2), var(--kernel)); display: grid; place-items: center; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-thumb img { transform: scale(1.07); }
.product-thumb .ph-illus { width: 46%; opacity: .85; }
.badge { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.94); color: var(--gold-600); border: 1px solid var(--gold-200); font-size: .72rem; font-weight: 700; letter-spacing: .03em; padding: 6px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px); }
.badge .ic { width: 13px; height: 13px; }
.badge.out { background: rgba(255,240,240,.95); color: #a13636; border-color: #eec9c9; }
.product-body { padding: 22px 22px 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.product-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-600); font-weight: 700; }
.product-title { font-family: var(--display); font-size: 1.34rem; font-weight: 600; color: var(--pine-800); margin: 0; }
.product-desc { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 15px; border-top: 1px solid var(--line); }
.product-price { display: inline-flex; flex-direction: column; line-height: 1.15; font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--pine-700); white-space: nowrap; min-width: 0; }
.product-price small { font-size: .74rem; font-weight: 600; color: var(--muted); font-family: var(--sans); white-space: nowrap; margin-top: 3px; }
.product-foot .btn { flex-shrink: 0; }

/* ---------- Filtre çubuğu ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 38px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 9px 18px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-family: var(--sans); font-weight: 600; font-size: .89rem; color: var(--pine-800); cursor: pointer; transition: .18s; }
.chip:hover { border-color: var(--pine-600); }
.chip.active { background: var(--pine-700); color: #fff; border-color: var(--pine-700); }
.search-box { display: flex; align-items: center; gap: 9px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; min-width: 240px; color: var(--muted); }
.search-box .ic { width: 18px; height: 18px; }
.search-box input { border: 0; outline: 0; background: transparent; font-size: .95rem; width: 100%; color: var(--ink); font-family: var(--sans); }

/* ---------- Hikaye bölümü ---------- */
.story { background: var(--paper-2); overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.story-media { position: relative; }
.story-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.story-media .ph-illus { width: 60%; }
.story-media .place { aspect-ratio: 4/5; border-radius: var(--radius-lg); background: linear-gradient(155deg, var(--pine-600), var(--pine-900)); display: grid; place-items: center; box-shadow: var(--shadow-lg); }
.story-badge {
    position: absolute; bottom: -26px; right: -18px; background: var(--gold-500); color: #2a1c05;
    border-radius: 14px; padding: 20px 24px; box-shadow: var(--shadow-md); max-width: 230px;
}
.story-badge b { font-family: var(--display); font-size: 2rem; display: block; line-height: 1; }
.story-badge span { font-size: .84rem; font-weight: 600; }
.story-text p { color: var(--muted); font-size: 1.06rem; }
.story-features { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.story-features li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--pine-800); }
.story-features .ic { width: 20px; height: 20px; color: var(--gold-600); }

/* ---------- Fındığın Faydaları ---------- */
.benefits-radial { display: grid; grid-template-columns: 1fr auto 1fr; gap: 44px 54px; align-items: center; }
.benefits-col { display: grid; gap: 46px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-ic { width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0; background: linear-gradient(150deg, var(--cream-50, #fbf8f3), var(--paper-2)); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-600); }
.benefit-ic .ic { width: 25px; height: 25px; }
.benefit-body h3 { font-family: var(--display); font-size: 1.18rem; color: var(--pine-800); margin: 0 0 5px; line-height: 1.2; }
.benefit-body p { color: var(--muted); font-size: .92rem; margin: 0; }
.benefits-col.left .benefit { flex-direction: row-reverse; text-align: right; }

.benefit-figure { position: relative; width: 320px; height: 320px; display: grid; place-items: center; margin: 0 auto; }
.benefit-photo { position: relative; z-index: 2; width: 268px; height: 268px; border-radius: 50%; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow-lg); }
.benefit-photo img { width: 100%; height: 100%; object-fit: cover; }
.benefit-figure::before { content: ""; position: absolute; z-index: 1; width: 300px; height: 300px; border-radius: 50%; border: 2px dashed var(--gold-200); }
.leaf { position: absolute; z-index: 1; filter: drop-shadow(0 6px 10px rgba(20,38,28,.18)); }
.leaf-a { top: -4px; left: 62px; transform: rotate(-28deg); }
.leaf-b { top: 2px; right: 60px; transform: rotate(26deg) scaleX(-1); }

/* ---------- Hikaye (Parallax) ---------- */
.story-parallax { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding: 132px 0; }
.story-parallax-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,38,28,.94) 0%, rgba(20,38,28,.74) 46%, rgba(20,38,28,.42) 100%); }
.story-parallax-inner { position: relative; z-index: 2; }
.story-parallax-content { max-width: 640px; color: #fff; }
.story-parallax-content h2 { color: #fff; }
.story-parallax-content p { color: rgba(255,255,255,.9); font-size: 1.07rem; }
.story-features.light li { color: #fff; }
.story-features.light .ic { color: var(--gold-400); }

/* ---------- Sipariş CTA kartı ---------- */
.order-cta { background: var(--paper); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }
.order-card { display: grid; grid-template-columns: 1.25fr .75fr; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: linear-gradient(120deg, var(--pine-800) 0%, var(--pine-600) 100%); position: relative; }
.order-card::before { content: ""; position: absolute; top: -40%; left: 40%; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(189,127,34,.28), transparent 70%); }
.order-card-body { position: relative; z-index: 2; padding: 60px 56px; color: #fff; }
.order-card-body h2 { color: #fff; font-size: clamp(1.9rem, 3.3vw, 2.7rem); margin-bottom: .3em; }
.order-card-body p { color: rgba(255,255,255,.85); max-width: 470px; margin: 0 0 30px; font-size: 1.05rem; }
.order-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.order-hours { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: var(--gold-200); font-size: .92rem; font-weight: 600; }
.order-hours .ic { width: 18px; height: 18px; color: var(--gold-400); }
.order-card-side { position: relative; z-index: 2; display: grid; place-items: center; padding: 32px; background: rgba(20,38,28,.32); border-left: 1px solid rgba(189,127,34,.22); }
.order-card-side img { width: 78%; max-width: 240px; }

/* ---------- Ürün detay ---------- */
.crumb { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 30px; font-size: .9rem; color: var(--muted); }
.crumb a { display: inline-flex; align-items: center; gap: 6px; } .crumb .ic { width: 15px; height: 15px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.detail-image { aspect-ratio: 1/1; border-radius: var(--radius-lg); background: linear-gradient(155deg, var(--paper-2), var(--kernel)); display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-image .ph-illus { width: 48%; }
.detail-price { font-family: var(--display); font-size: 2.4rem; font-weight: 600; color: var(--pine-700); margin: 14px 0; }
.detail-price small { font-size: 1rem; color: var(--muted); font-weight: 600; font-family: var(--sans); }
.price-ask { display: inline-flex; align-items: center; gap: 9px; margin: 16px 0; padding: 11px 17px; background: rgba(31,168,85,.08); border: 1px solid rgba(31,168,85,.28); border-radius: 12px; color: var(--pine-700); font-weight: 600; font-size: .96rem; }
.price-ask .ic { width: 19px; height: 19px; color: var(--wa); }
.detail-desc { color: var(--ink); font-size: 1.06rem; line-height: 1.8; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.stock-line { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; margin: 6px 0; }
.stock-line .ic { width: 17px; height: 17px; }
.stock-line.in { color: var(--pine-600); } .stock-line.out { color: #a13636; }
.trust-card { margin-top: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 8px 24px; box-shadow: var(--shadow-sm); }

/* ---------- Ortak: iletişim / hakkımızda ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ic-box { width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; background: var(--paper-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-600); }
.info-list .ic-box .ic { width: 20px; height: 20px; }
.info-list b { display: block; color: var(--pine-800); font-size: .95rem; margin-bottom: 1px; }
.info-list span.txt { color: var(--muted); }

/* ---------- CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--pine-800), var(--pine-600)); color: #fff; border-radius: var(--radius-lg); padding: 62px; text-align: center; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; top: -45%; right: -8%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(189,127,34,.32), transparent 70%); }
.cta-band h2 { color: #fff; position: relative; font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.45); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.7); }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-900); color: rgba(255,255,255,.7); padding: 0 0 30px; position: relative; }
.footer-hills { display: block; width: 100%; height: 60px; }
.footer-inner { padding-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 46px; margin-bottom: 42px; }
.site-footer h4 { font-family: var(--sans); color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 18px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--gold-400); }
.footer-logo { height: 96px; width: auto; display: block; margin-bottom: 12px; background: var(--paper); padding: 20px 28px; border-radius: 18px; box-shadow: 0 8px 22px rgba(0,0,0,.2); }
.footer-about { font-size: .92rem; max-width: 330px; margin: 18px 0 0; color: rgba(255,255,255,.58); line-height: 1.6; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: .93rem; }
.footer-links a { display: inline-flex; align-items: center; gap: 9px; }
.footer-links .ic { width: 16px; height: 16px; color: var(--gold-400); }
.footer-bottom { border-top: 1px solid var(--line-dk); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ---------- Boş durum ---------- */
.empty-state { text-align: center; padding: 74px 20px; color: var(--muted); }
.empty-state .ic { width: 46px; height: 46px; margin-bottom: 14px; color: var(--moss-300); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .detail-grid, .split, .footer-grid, .story-grid { grid-template-columns: 1fr; }
    .story-grid { gap: 60px; }
    .story-media { max-width: 440px; }
    .benefits-radial { grid-template-columns: 1fr; gap: 28px; }
    .benefit-figure { order: -1; margin: 0 auto 14px; }
    .benefits-col { gap: 26px; }
    .benefits-col.left .benefit { flex-direction: row; text-align: left; }
    .story-parallax { background-attachment: scroll; padding: 78px 0; }
    .story-parallax-content h2 { font-size: 1.9rem; }
    .order-card { grid-template-columns: 1fr; }
    .order-card-side { display: none; }
    .order-card-body { padding: 40px 28px; }
    .values { grid-template-columns: 1fr; }
    .value { border-right: 0; border-bottom: 1px solid var(--line); padding: 26px 0; }
    .value:last-child { border-bottom: 0; }
    .hero-slider { height: 74vh; min-height: 500px; }
    .hero-slide-content { max-width: 100%; }
    .hero-slide-content h1 { font-size: 1.95rem; }
    .hero-slide-content .hero-lead { font-size: 1rem; margin-bottom: 1.5rem; }
    .hero-actions .btn { padding: 11px 18px; font-size: .9rem; }
    .hero-arrow { width: 40px; height: 40px; } .hero-arrow.prev { left: 10px; } .hero-arrow.next { right: 10px; }
    .nav { position: absolute; top: 74px; right: 16px; left: 16px; flex-direction: column; align-items: stretch; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 12px; box-shadow: var(--shadow-lg); display: none; }
    .nav.open { display: flex; }
    .nav a.navlink::after { display: none; }
    .nav .btn { margin-left: 0; margin-top: 6px; justify-content: center; }
    .nav-toggle { display: inline-flex; }
    .section { padding: 64px 0; }
    .cta-band { padding: 42px 24px; }
    .about-card { padding: 28px; }
    .brand-logo-img { height: 44px; }
    .brand-logo-full { height: 44px; }
    .brand-name { font-size: 1.18rem; }
    .topbar { font-size: .78rem; }
    .topbar-left { display: none; }
    .topbar-inner { justify-content: center; padding: 8px 14px; }
    .topbar-right { gap: 16px; width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
    .tb-hide-sm { display: none; }
    .topbar { font-size: .74rem; }
    .topbar-inner { padding: 7px 12px; }
    .topbar-right { gap: 14px; }
    .topbar .ic { width: 14px; height: 14px; }
    .hero-arrow { display: none; }
    .hero-slider { min-height: 460px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-slide-bg { transform: none !important; }
    .marquee__track { animation: none; }
}
