/* ============================================================
   SEB GLOBAL ORMANCILIK — Kurumsal Web Sitesi
   Tasarım sistemi: orman yeşili + metalik altın paleti
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Greens */
  --green-950: #0f2417;
  --green-900: #16301f;
  --green-800: #1d3d28;
  --green-700: #265234;
  --green-600: #316a40;
  --green-500: #3f7d46;
  --green-400: #5a9760;

  /* Golds / Bronze (logodan) */
  --gold-100: #f1e7d2;
  --gold-300: #ddc89c;
  --gold-400: #cdb27e;
  --gold-500: #b8965a;
  --gold-600: #a07d46;
  --gold-700: #846438;

  /* Neutrals */
  --cream: #f8f4ec;
  --sand: #efe7d7;
  --paper: #ffffff;
  --ink: #1a1c18;
  --ink-soft: #3a3d36;
  --muted: #6b6e63;
  --line: #e3dccd;

  /* Effects */
  --gold-gradient: linear-gradient(135deg, #846438 0%, #b8965a 35%, #e8d4a8 55%, #b8965a 75%, #846438 100%);
  --green-gradient: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  --shadow-sm: 0 2px 10px rgba(20, 40, 25, 0.06);
  --shadow-md: 0 14px 40px rgba(20, 40, 25, 0.12);
  --shadow-lg: 0 30px 70px rgba(15, 36, 23, 0.22);

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-paper { background: var(--paper); }
.bg-green { background: var(--green-900); color: var(--cream); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--green-900); letter-spacing: -0.01em; }
.bg-green h1, .bg-green h2, .bg-green h3 { color: var(--cream); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: 1.4rem; }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold-gradient); }
.bg-green .eyebrow { color: var(--gold-400); }

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-top: 18px; font-size: 1.12rem; color: var(--muted); }
.bg-green .section-head .lead { color: rgba(248,244,236,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: var(--gold-gradient); color: #2a1f10;
  box-shadow: 0 10px 26px rgba(132, 100, 56, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(132,100,56,0.45); }
.btn-green { background: var(--green-700); color: var(--cream); }
.btn-green:hover { background: var(--green-600); transform: translateY(-3px); }
.btn-outline { border: 1.5px solid rgba(248,244,236,0.5); color: var(--cream); }
.btn-outline:hover { background: rgba(248,244,236,0.1); border-color: var(--cream); }
.btn-ghost { color: var(--green-800); padding: 12px 0; }
.btn-ghost svg { transition: transform .3s var(--ease); }
.btn-ghost:hover { color: var(--gold-700); }
.btn-ghost:hover svg { transform: translateX(5px); }

/* ============================================================
   TOP BAR + HEADER
   ============================================================ */
.topbar {
  background: var(--green-950); color: rgba(248,244,236,0.72);
  font-size: 0.82rem; border-bottom: 1px solid rgba(184,150,90,0.18);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar a:hover { color: var(--gold-400); }
.topbar-left { display: flex; gap: 26px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 14px; height: 14px; color: var(--gold-500); }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { display: inline-flex; }
.topbar-social svg { width: 15px; height: 15px; }
.lang { display: inline-flex; gap: 6px; align-items: center; font-weight: 600; }
.lang span { opacity: 0.4; }
.lang a.active { color: var(--gold-400); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,244,236,0.0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header.solid {
  background: rgba(248,244,236,0.95);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; transition: height .4s var(--ease); }
.site-header.solid .nav { height: 74px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 56px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18)); }
.site-header.solid .brand img { height: 48px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-head); font-size: 1.18rem; color: var(--green-900); letter-spacing: 0.02em; }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
/* On transparent hero, brand text light */
.site-header:not(.solid) .brand-text strong { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
.site-header:not(.solid) .brand-text span { color: var(--gold-300); }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu > li > a {
  display: block; padding: 10px 16px; font-weight: 500; font-size: 0.96rem;
  color: var(--ink-soft); border-radius: 8px; position: relative;
}
.site-header:not(.solid) .nav-menu > li > a { color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--gold-gradient); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.current::after { transform: scaleX(1); }
.nav-menu > li > a:hover { color: var(--gold-700); }
.site-header:not(.solid) .nav-menu > li > a:hover { color: #fff; }

.nav-cta-mobile { display: none; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green-900); transition: .3s var(--ease); }
.site-header:not(.solid) .nav-toggle span { background: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  margin-top: -130px; padding-top: 130px;
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,36,23,0.92) 0%, rgba(22,48,31,0.72) 45%, rgba(22,48,31,0.25) 100%),
    linear-gradient(to top, rgba(15,36,23,0.85) 0%, rgba(15,36,23,0) 40%);
}
.hero__inner { max-width: 760px; padding: 80px 0; }
.hero h1 { color: #fff; margin: 22px 0; text-shadow: 0 6px 30px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; }
.hero__lead { font-size: 1.22rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.4); border-radius: 14px; position: relative; }
.hero__scroll .mouse::before { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: var(--gold-400); border-radius: 4px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 5; margin-top: -1px;
  background: rgba(15,36,23,0.55); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(184,150,90,0.25);
}
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stat { padding: 30px 24px; text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; }
.hero-stat .num .text-gold { display: inline; }
.hero-stat .lbl { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ============================================================
   INTRO / ABOUT SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.split__media .badge {
  position: absolute; bottom: -28px; right: -22px;
  background: var(--green-gradient); color: var(--cream); padding: 26px 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid rgba(184,150,90,0.3);
}
.split__media .badge .b-num { font-family: var(--font-head); font-size: 2.6rem; line-height: 1; color: var(--gold-400); }
.split__media .badge .b-lbl { font-size: 0.84rem; color: rgba(248,244,236,0.85); margin-top: 4px; }
.split__media .frame { position: absolute; top: -22px; left: -22px; width: 60%; height: 60%; border: 2px solid var(--gold-400); border-radius: var(--radius-lg); z-index: -1; opacity: 0.6; }
.prose p + p { margin-top: 18px; }
.prose .lead { font-size: 1.18rem; color: var(--ink); margin-bottom: 22px; }

.checklist { display: grid; gap: 14px; margin: 28px 0; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: rgba(63,125,70,0.12); display: grid; place-items: center; margin-top: 3px; }
.checklist .ico svg { width: 15px; height: 15px; color: var(--green-600); }
.checklist b { color: var(--green-900); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-gradient); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__ico {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  margin-bottom: 24px; box-shadow: 0 10px 24px rgba(38,82,52,0.28);
}
.card__ico svg { width: 30px; height: 30px; color: var(--gold-300); }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.98rem; }
.card__link { margin-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; color: var(--gold-700); }
.card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(5px); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.product img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.product::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(15,36,23,0.92) 0%, rgba(15,36,23,0.35) 55%, rgba(15,36,23,0.1) 100%); }
.product:hover img { transform: scale(1.07); }
.product__body { padding: 32px 30px; width: 100%; }
.product__tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-300); font-weight: 600; }
.product h3 { color: #fff; margin: 8px 0 6px; font-size: 1.5rem; }
.product p { color: rgba(255,255,255,0.78); font-size: 0.94rem; margin-bottom: 4px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s; }
.product:hover p { max-height: 80px; opacity: 1; margin-bottom: 4px; }

/* Solid product card variant (texture bg, no photo) */
.product--texture img { filter: saturate(0.9) brightness(0.7); }

/* ============================================================
   FEATURE / WHY US BAND
   ============================================================ */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 50px; }
.feature { display: flex; gap: 20px; }
.feature__ico { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(184,150,90,0.14); border: 1px solid rgba(184,150,90,0.3); }
.feature__ico svg { width: 26px; height: 26px; color: var(--gold-500); }
.feature h3 { font-size: 1.18rem; margin-bottom: 6px; }
.bg-green .feature h3 { color: #fff; }
.feature p { font-size: 0.96rem; }
.bg-green .feature p { color: rgba(248,244,236,0.72); }

/* ============================================================
   STATS COUNTER BAND
   ============================================================ */
.statband { position: relative; color: #fff; overflow: hidden; }
.statband__bg { position: absolute; inset: 0; z-index: -2; }
.statband__bg img { width: 100%; height: 100%; object-fit: cover; }
.statband__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,36,23,0.94), rgba(38,82,52,0.82)); }
.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.statgrid .num { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.6rem); line-height: 1; color: var(--gold-400); }
.statgrid .lbl { margin-top: 10px; font-size: 0.92rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); }
.statgrid .item { padding: 10px; border-left: 1px solid rgba(255,255,255,0.12); }
.statgrid .item:first-child { border-left: none; }

/* ============================================================
   SUSTAINABILITY
   ============================================================ */
.susta-points { display: grid; gap: 22px; margin-top: 30px; }
.susta-point { display: flex; gap: 18px; align-items: flex-start; }
.susta-point .n { font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-500); line-height: 1; flex: 0 0 auto; width: 42px; }
.susta-point h4 { color: var(--green-900); font-size: 1.1rem; margin-bottom: 4px; }
.bg-green .susta-point h4 { color: #fff; }

/* ============================================================
   GLOBAL / EXPORT MAP BAND
   ============================================================ */
.regions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.region-chip {
  padding: 9px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 500;
  border: 1px solid rgba(184,150,90,0.4); color: rgba(248,244,236,0.9);
  background: rgba(184,150,90,0.08);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative; overflow: hidden; text-align: center; color: #fff; padding: 96px 0;
}
.cta__bg { position: absolute; inset: 0; z-index: -2; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(15,36,23,0.9), rgba(15,36,23,0.9)); }
.cta h2 { color: #fff; max-width: 720px; margin: 16px auto 18px; }
.cta p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 34px; font-size: 1.1rem; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero { position: relative; color: #fff; padding: 150px 0 90px; margin-top: -130px; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(15,36,23,0.94), rgba(22,48,31,0.6)); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--gold-400); }
.page-hero .breadcrumb span { color: var(--gold-400); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card .ico { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--green-gradient); }
.contact-card .ico svg { width: 22px; height: 22px; color: var(--gold-300); }
.contact-card h4 { color: var(--green-900); font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.96rem; }
.contact-card a:hover { color: var(--gold-700); }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--green-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 0.96rem; color: var(--ink); background: var(--cream);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(184,150,90,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; padding: 16px; border-radius: 10px; background: rgba(63,125,70,0.12); color: var(--green-700); font-weight: 600; text-align: center; margin-bottom: 18px; }
.form-success.show { display: block; }
.form-error { display: none; padding: 16px; border-radius: 10px; background: rgba(176,58,46,0.10); color: #a13228; font-weight: 600; text-align: center; margin-bottom: 18px; }
.form-error.show { display: block; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) saturate(0.9); }

/* ============================================================
   VALUES / TIMELINE (about)
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value { text-align: center; padding: 36px 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value__ico { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(184,150,90,0.14); border: 1px solid rgba(184,150,90,0.3); }
.value__ico svg { width: 28px; height: 28px; color: var(--gold-600); }
.value h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value p { font-size: 0.93rem; }

.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--gold-400), var(--green-600)); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -40px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-gradient); box-shadow: 0 0 0 5px rgba(184,150,90,0.15); }
.tl-year { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-700); }
.tl-item h4 { color: var(--green-900); margin: 4px 0 6px; font-size: 1.15rem; }

/* ============================================================
   PARTNERS / LOGO STRIP
   ============================================================ */
.partners { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.partner { padding: 18px 30px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 0.04em; background: var(--paper); opacity: 0.75; transition: opacity .3s, color .3s; }
.partner:hover { opacity: 1; color: var(--green-800); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-950); color: rgba(248,244,236,0.7); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 50px; padding-bottom: 56px; }
.footer-brand img { height: 70px; margin-bottom: 18px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); }
.footer-brand p { color: rgba(248,244,236,0.6); font-size: 0.95rem; max-width: 300px; }
.footer-col h4 { color: var(--gold-400); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: rgba(248,244,236,0.68); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 0.94rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold-500); flex: 0 0 auto; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(184,150,90,0.3); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer-social a:hover { background: rgba(184,150,90,0.18); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: var(--gold-400); }
.footer-bottom { border-top: 1px solid rgba(184,150,90,0.16); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.86rem; color: rgba(248,244,236,0.5); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards, .products { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 920px) {
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--green-900); flex-direction: column; align-items: stretch;
    padding: 100px 28px 40px; gap: 4px; transform: translateX(100%);
    transition: transform .4s var(--ease); box-shadow: var(--shadow-lg); z-index: 90; overflow-y: auto;
  }
  .nav-menu.open { transform: none; }
  .nav-menu > li > a { color: rgba(248,244,236,0.9) !important; text-shadow: none !important; padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-menu > li > a::after { display: none; }
  .nav-cta-mobile { display: block; margin-top: 18px; }
  .nav-cta-mobile a { display: block; text-align: center; }
  .nav-actions > .btn-gold { display: none; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(10,20,14,0.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 80; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .split { grid-template-columns: 1fr; gap: 50px; }
  .split--reverse .split__media { order: 0; }
  .split__media img { min-height: 340px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .statgrid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .statgrid .item:nth-child(2) { border-left: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .cards, .products, .values, .features, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats .container { grid-template-columns: 1fr; }
  .hero-stat { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .statgrid { grid-template-columns: 1fr; }
  .statgrid .item { border-left: none; }
  .form { padding: 28px 22px; }
  .split__media .badge { right: 0; padding: 20px 22px; }
  .brand-text { display: none; }
}
