/* ============================================
   TAN TARIM ÜRÜNLERİ — Badem Üretimi
   Stil dosyası
   ============================================ */

:root {
  --green-900: #1f3527;
  --green-800: #2d4a35;
  --green-700: #3a5a40;
  --green-600: #4a6b4a;
  --green-400: #7fa66a;
  --green-200: #a8c686;
  --cream:     #f7f3e9;
  --cream-2:   #efe7d4;
  --sand:      #e6c79c;
  --gold:      #c9a14a;
  --bloom:     #f3d9e2;
  --ink:       #25342b;
  --muted:     #6c7a6e;
  --white:     #ffffff;

  --shadow-sm: 0 4px 14px rgba(31, 53, 39, .08);
  --shadow-md: 0 14px 40px rgba(31, 53, 39, .14);
  --shadow-lg: 0 30px 70px rgba(31, 53, 39, .18);

  --radius:    18px;
  --radius-lg: 28px;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --max:  1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(70px, 10vw, 130px) 0; }

/* ---------- Tipografi ---------- */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; }
.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: -.5px;
}
.section__title em { font-style: italic; color: var(--gold); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); }
.section__tag {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green-600);
  padding: 7px 16px; margin-bottom: 18px;
  border: 1px solid rgba(58, 90, 64, .25);
  border-radius: 100px;
  background: rgba(168, 198, 134, .12);
}
.section__lead { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: 15px 32px; border-radius: 100px; cursor: pointer; border: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  position: relative; overflow: hidden; letter-spacing: .2px;
}
.btn--primary { background: var(--green-700); color: var(--cream); box-shadow: 0 10px 24px rgba(58,90,64,.3); }
.btn--primary:hover { background: var(--green-800); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(58,90,64,.4); }
.btn--ghost { background: transparent; color: var(--green-800); border: 1.5px solid rgba(58,90,64,.4); }
.btn--ghost:hover { background: var(--green-700); color: var(--cream); transform: translateY(-3px); border-color: var(--green-700); }
.btn--full { width: 100%; }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-800);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__leaf { color: var(--green-200); animation: leafSpin 1.4s var(--ease) infinite; }
.preloader__text { color: var(--cream); letter-spacing: 6px; font-size: .8rem; font-weight: 600; opacity: .85; }
@keyframes leafSpin {
  0% { transform: rotate(-20deg) scale(.85); opacity: .4; }
  50% { transform: rotate(20deg) scale(1.1); opacity: 1; }
  100% { transform: rotate(-20deg) scale(.85); opacity: .4; }
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s, padding .4s;
  padding: 18px 0;
}
.nav.is-scrolled {
  background: rgba(247, 243, 233, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px rgba(31,53,39,.08);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav__logo { display: inline-flex; align-items: center; gap: 11px; }
.nav__logo-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  background: var(--green-700); color: var(--cream); border-radius: 13px;
  transition: transform .5s var(--ease), background .3s;
}
.nav__logo:hover .nav__logo-mark { transform: rotate(-12deg) scale(1.05); }
.nav__logo-text { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--green-800); letter-spacing: -.3px; }
.nav__logo-text strong { color: var(--gold); font-weight: 600; }
.nav.is-scrolled .nav__logo-text { color: var(--green-800); }
.nav__logo-img { display: block; height: 50px; width: auto; transition: transform .5s var(--ease), height .4s var(--ease); }
.nav__logo:hover .nav__logo-img { transform: scale(1.04); }
.nav.is-scrolled .nav__logo-img { height: 44px; }
.footer__brand .nav__logo-img--light { height: 66px; filter: brightness(0) invert(1); opacity: .92; }

.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; font-weight: 500; font-size: .96rem; color: var(--green-800);
  padding: 9px 16px; border-radius: 100px; transition: color .3s, background .3s;
}
.nav__link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--green-600); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--green-700); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link--cta { background: var(--green-700); color: var(--cream); }
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--green-800); color: var(--cream); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2.5px; background: var(--green-800); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(180deg, #dfeccd 0%, #eef3e0 45%, var(--cream) 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__sun {
  position: absolute; top: 14%; right: 12%;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,243,210,.95) 0%, rgba(249,221,151,.5) 45%, transparent 70%);
  filter: blur(2px); animation: sunPulse 7s ease-in-out infinite;
}
@keyframes sunPulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.08); opacity: 1; } }

.hero__hills { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; }
.hero__hills--back  { fill: #c4d9a7; opacity: .7; transform: translateY(20px); }
.hero__hills--mid   { fill: #9cc07d; opacity: .8; }
.hero__hills--front { fill: var(--green-400); }

.hero__content { position: relative; z-index: 3; max-width: 820px; }
.hero__eyebrow {
  display: inline-block; font-weight: 600; letter-spacing: 1px; color: var(--green-700);
  background: rgba(255,255,255,.6); padding: 8px 18px; border-radius: 100px;
  margin-bottom: 26px; font-size: .92rem; box-shadow: var(--shadow-sm);
}
.hero__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 1.02;
  color: var(--green-900); letter-spacing: -1.5px;
}
.hero__title span { display: block; }
.hero__title-accent { color: var(--gold); font-style: italic; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--green-800); max-width: 600px; margin: 26px 0 38px; opacity: .9; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  color: var(--green-700); font-size: .74rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.hero__scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--green-700); border-radius: 14px; position: relative;
}
.hero__scroll-mouse::after {
  content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 7px; background: var(--green-700); border-radius: 2px;
  animation: scrollDot 1.7s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%, 12px); } }

/* Uçuşan yapraklar */
.petals { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute; top: -8%;
  width: 12px; height: 12px; background: var(--bloom); border-radius: 50% 0 50% 50%;
  opacity: .8; animation: fall linear infinite;
}
@keyframes fall {
  0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: .85; }
  100% { transform: translateY(110vh) translateX(60px) rotate(380deg); opacity: 0; }
}

/* ============================================
   STATS
   ============================================ */
.stats { background: var(--green-800); padding: 56px 0; color: var(--cream); position: relative; z-index: 5; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { position: relative; }
.stat::after { content: ''; position: absolute; right: -12px; top: 18%; height: 64%; width: 1px; background: rgba(255,255,255,.16); }
.stat:last-child::after { display: none; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; color: var(--green-200); }
.stat__suffix { font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--green-200); font-weight: 700; }
.stat__label { font-size: .9rem; letter-spacing: 1px; opacity: .82; margin-top: 4px; }

/* ============================================
   HAKKIMIZDA
   ============================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__visual { position: relative; }
.about__art {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #eef3e0, #dceac6);
  display: grid; place-items: center; box-shadow: var(--shadow-md); overflow: hidden;
}
.about__art::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,243,210,.6), transparent 50%);
}
.tree-art { width: 80%; height: 80%; position: relative; z-index: 1; animation: sway 6s ease-in-out infinite; transform-origin: bottom center; }
@keyframes sway { 0%,100% { transform: rotate(-1.2deg); } 50% { transform: rotate(1.2deg); } }
.tree-art__blooms circle { animation: bloomPulse 3s ease-in-out infinite; }
.tree-art__blooms circle:nth-child(2n) { animation-delay: .6s; }
.tree-art__blooms circle:nth-child(3n) { animation-delay: 1.2s; }
@keyframes bloomPulse { 0%,100% { opacity: .6; transform: scale(.9); } 50% { opacity: 1; transform: scale(1.15); } }

.about__badge {
  position: absolute; bottom: -22px; right: -8px;
  background: var(--white); padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.3;
}
.about__badge strong { font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.about__badge span { font-size: .78rem; color: var(--muted); }

.about__list { margin-top: 28px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--green-800); }
.about__check {
  display: grid; place-items: center; flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--green-200); color: var(--green-800); font-size: .8rem; font-weight: 800;
}
.about__text p { color: var(--muted); margin-top: 16px; }

/* ============================================
   ÇEŞİTLER (CARDS)
   ============================================ */
.varieties { background: linear-gradient(180deg, var(--cream) 0%, #f1ece0 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid rgba(58,90,64,.06);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  font-size: 1.9rem; margin-bottom: 22px;
  background: linear-gradient(145deg, var(--c1), var(--c2)); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card__title { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--green-800); margin-bottom: 10px; }
.card__desc { color: var(--muted); font-size: .98rem; }
.card__meta { display: flex; gap: 26px; margin-top: 22px; padding-top: 20px; border-top: 1px dashed rgba(58,90,64,.2); }
.card__meta li { font-weight: 700; color: var(--green-800); font-size: .95rem; }
.card__meta span { display: block; font-weight: 500; font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   ÜRETİM SÜRECİ (TIMELINE)
   ============================================ */
.process { background: var(--green-800); color: var(--cream); }
.process .section__title { color: var(--cream); }
.process .section__title em { color: var(--green-200); }
.process .section__tag { color: var(--green-200); border-color: rgba(168,198,134,.3); background: rgba(168,198,134,.08); }
.process .section__lead { color: rgba(247,243,233,.75); }

.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 31px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(var(--green-400), rgba(168,198,134,.15));
}
.tl-item { position: relative; padding-left: 86px; padding-bottom: 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item__dot {
  position: absolute; left: 0; top: 0; width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  background: var(--green-700); color: var(--green-200); border: 2px solid var(--green-400);
  box-shadow: 0 0 0 6px rgba(58,90,64,.4);
}
.tl-item__season { display: inline-block; font-size: .76rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green-200); font-weight: 700; margin-bottom: 6px; }
.tl-item__body h3 { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 8px; }
.tl-item__body p { color: rgba(247,243,233,.72); font-size: .98rem; }

/* ============================================
   FAYDALAR
   ============================================ */
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit {
  text-align: center; padding: 36px 24px; border-radius: var(--radius);
  background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.benefit:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.benefit__ico { font-size: 2.4rem; display: block; margin-bottom: 16px; transition: transform .5s var(--ease); }
.benefit:hover .benefit__ico { transform: scale(1.18) rotate(6deg); }
.benefit h4 { font-size: 1.18rem; color: var(--green-800); margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: .94rem; }

/* ============================================
   GALERİ
   ============================================ */
.gallery { background: linear-gradient(180deg, #f1ece0, var(--cream)); }

/* Carousel */
.carousel { position: relative; --per: 3; --gap: 18px; padding: 0 clamp(46px, 5vw, 62px); }
.carousel__viewport { overflow: hidden; border-radius: var(--radius); }
.carousel__track { display: flex; gap: var(--gap); transition: transform .6s var(--ease); will-change: transform; }
.c-slide {
  position: relative; flex: 0 0 calc((100% - var(--gap) * (var(--per) - 1)) / var(--per));
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: zoom-in; background: var(--green-900);
}
.g-art { position: absolute; inset: 0; transition: transform 1s var(--ease); }
.c-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; transition: transform 1s var(--ease); }
.c-slide:hover .g-art,
.c-slide:hover .c-img { transform: scale(1.08); }
.g-art--bloom   { background: linear-gradient(160deg, #f3d9e2, #d8a7b1 70%, #b07d4a); }
.g-art--orchard { background: linear-gradient(160deg, #c4d9a7, #7fa66a 60%, #3a5a40); }
.g-art--nut     { background: linear-gradient(160deg, #e9d8a6, #c9a14a 60%, #8a6a2f); }
.g-art--field   { background: linear-gradient(160deg, #f9dd97, #e6a85c 50%, #7fa66a); }
.g-art--harvest { background: linear-gradient(160deg, #e6c79c, #b07d4a 60%, #6b4f3a); }
.g-art::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.35) 0 3px, transparent 4px),
    radial-gradient(circle at 70% 50%, rgba(255,255,255,.25) 0 5px, transparent 6px),
    radial-gradient(circle at 45% 75%, rgba(255,255,255,.3) 0 4px, transparent 5px),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.2) 0 3px, transparent 4px);
  opacity: .7;
}
.c-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 30px 16px 14px; color: #fff; font-weight: 600; font-size: .95rem;
  background: linear-gradient(transparent, rgba(31,53,39,.82));
  transform: translateY(6px); opacity: 0; transition: transform .5s var(--ease), opacity .5s;
}
.c-slide:hover figcaption,
.c-slide:focus-visible figcaption { transform: translateY(0); opacity: 1; }
@media (hover: none) {
  .c-slide figcaption { transform: none; opacity: 1; }
}

/* Oklar */
.carousel__nav {
  position: absolute; top: calc(50% - 22px); transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--white); color: var(--green-800); box-shadow: var(--shadow-md);
  font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s, transform .3s var(--ease);
}
.carousel__nav:hover { background: var(--green-700); color: var(--cream); transform: translateY(-50%) scale(1.08); }
.carousel__nav--prev { left: 0; }
.carousel__nav--next { right: 0; }

/* Noktalar */
.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel__dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(58,90,64,.25); transition: background .3s var(--ease), transform .3s var(--ease);
}
.carousel__dot.is-active { background: var(--green-700); transform: scale(1.35); }
.carousel__dot:hover { background: var(--green-600); }

@media (max-width: 900px) { .carousel { --per: 2; } }
@media (max-width: 560px) {
  .carousel { --per: 1; padding: 0 40px; }
  .carousel__nav { width: 36px; height: 36px; font-size: 1.4rem; }
}

/* ============================================
   ALINTI
   ============================================ */
.quote { background: var(--green-900); color: var(--cream); text-align: center; }
.quote__inner { max-width: 820px; margin: 0 auto; position: relative; }
.quote__mark { font-family: var(--serif); font-size: 6rem; color: var(--green-400); line-height: .5; display: block; opacity: .5; }
.quote__text { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-style: italic; font-weight: 500; line-height: 1.35; margin: 10px 0 22px; }
.quote__author { color: var(--green-200); letter-spacing: 1px; font-weight: 600; }

/* ============================================
   İLETİŞİM
   ============================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact__info p { color: var(--muted); }
.contact__list { margin-top: 30px; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; background: var(--green-200);
}
.contact__list strong { color: var(--green-800); display: block; }
.contact__list p { font-size: .96rem; }
.contact__list a { color: var(--green-700); font-weight: 600; }
.contact__list a:hover { color: var(--gold); }

.contact__form {
  background: var(--white); padding: 38px 34px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); display: grid; gap: 22px;
}
.field { position: relative; }
.field input, .field textarea {
  width: 100%; padding: 18px 16px 8px; border: 1.5px solid rgba(58,90,64,.2); border-radius: 12px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fcfbf6; resize: vertical;
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { min-height: 120px; }
.field label {
  position: absolute; left: 16px; top: 16px; color: var(--muted); font-size: 1rem; pointer-events: none;
  transition: transform .25s var(--ease), font-size .25s, color .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green-400); box-shadow: 0 0 0 4px rgba(127,166,106,.15); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-12px); font-size: .72rem; color: var(--green-600); font-weight: 600;
}
.form-status { font-size: .92rem; font-weight: 600; min-height: 1.2em; text-align: center; }
.form-status.is-ok { color: var(--green-600); }
.form-status.is-err { color: #c0563f; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--green-900); color: rgba(247,243,233,.78); padding: 70px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__brand .nav__logo-text { color: var(--cream); }
.footer__brand p { margin-top: 16px; font-size: .96rem; max-width: 340px; }
.footer__col h4 { color: var(--cream); margin-bottom: 18px; font-size: 1.05rem; }
.footer__col a, .footer__col p { display: block; color: rgba(247,243,233,.7); font-size: .95rem; margin-bottom: 10px; transition: color .3s, transform .3s; }
.footer__col a:hover { color: var(--green-200); transform: translateX(4px); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-block: 24px; border-top: 1px solid rgba(247,243,233,.12); font-size: .88rem;
}

/* ============================================
   YUKARI ÇIK
   ============================================ */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-700); color: var(--cream); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.8);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { background: var(--green-800); transform: translateY(-4px); }

/* ============================================
   REVEAL ANİMASYONU
   ============================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tree-art, .hero__sun, .petal, .preloader__leaf { animation: none !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 460px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .stat:nth-child(2)::after { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    background: var(--cream); padding: 40px 32px; box-shadow: -10px 0 40px rgba(0,0,0,.18);
    transform: translateX(100%); transition: transform .5s var(--ease); z-index: 1001;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.15rem; width: 100%; }
  .nav__link--cta { margin-top: 10px; text-align: center; }
  .nav__toggle { display: flex; z-index: 1002; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item--wide { grid-column: span 2; }
  .g-item--tall { grid-row: span 1; }
}

@media (max-width: 540px) {
  .cards, .benefits__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__sun { width: 150px; height: 150px; }
  .about__badge { right: 50%; transform: translateX(50%); }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: center; text-align: center; }
  .video-embed__play { width: 64px; height: 64px; }
  .video-embed__play svg { width: 26px; height: 26px; }
}

/* ---------- Tanıtım Videosu ---------- */
.video { background: linear-gradient(180deg, var(--green-900), var(--green-800) 45%); color: var(--cream); }
.video .section__title { color: var(--cream); }
.video .section__title em { color: var(--green-200); }
.video .section__tag { color: var(--green-200); border-color: rgba(168,198,134,.3); background: rgba(168,198,134,.08); }
.video .section__lead { color: rgba(247,243,233,.75); }
.video__frame {
  max-width: 960px; margin: 0 auto; padding: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(168,198,134,.18);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.video-embed {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden; cursor: pointer;
  border-radius: var(--radius); background: var(--green-900);
}
.video-embed__thumb {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .4s;
}
.video-embed:hover .video-embed__thumb,
.video-embed:focus-visible .video-embed__thumb { transform: scale(1.05); filter: brightness(.82); }
.video-embed__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 84px; height: 84px; padding-left: 4px; border-radius: 50%;
  display: grid; place-items: center; color: var(--cream);
  background: rgba(58,90,64,.85); box-shadow: 0 10px 30px rgba(31,53,39,.4);
  transition: transform .4s var(--ease), background .3s;
}
.video-embed__play::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35); animation: videoPulse 2.4s ease-out infinite;
}
.video-embed:hover .video-embed__play,
.video-embed:focus-visible .video-embed__play { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@keyframes videoPulse { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.3); opacity: 0; } }

/* ---------- Hero "video izle" butonu (dikkat çekici nabız) ---------- */
.btn--play { position: relative; overflow: visible; display: inline-flex; align-items: center; gap: 10px; }
.btn--play .btn__play-ico {
  display: grid; place-items: center; width: 28px; height: 28px; flex: none;
  border-radius: 50%; background: rgba(255,255,255,.18);
}
.btn--play::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: -1;
  animation: btnPulse 2.2s var(--ease) infinite;
}
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,161,74,.55); }
  70%  { box-shadow: 0 0 0 18px rgba(201,161,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,161,74,0); }
}

/* ---------- Öne çıkarılmış video bölümü ---------- */
.video { position: relative; overflow: hidden; }
.video .container { position: relative; z-index: 1; }
.video__glow {
  position: absolute; top: 6%; left: 50%; transform: translateX(-50%);
  width: min(1000px, 92%); height: 78%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(168,198,134,.34), rgba(201,161,74,.14) 45%, transparent 70%);
  filter: blur(14px); animation: videoGlow 6s ease-in-out infinite;
}
@keyframes videoGlow {
  0%, 100% { opacity: .5;  transform: translateX(-50%) scale(1); }
  50%      { opacity: .95; transform: translateX(-50%) scale(1.06); }
}
.video__frame.is-featured { max-width: 1040px; position: relative; }
.video__frame.is-featured::before {
  content: ''; position: absolute; inset: -3px; z-index: 0;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(120deg, var(--green-400), var(--gold), var(--green-400));
  background-size: 220% 220%; opacity: .85; animation: videoRing 5s linear infinite;
}
@keyframes videoRing { 0% { background-position: 0% 50%; } 100% { background-position: 220% 50%; } }
.video__frame.is-featured .video-embed { position: relative; z-index: 1; }
.video-embed__hint {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 2;
  font-size: .82rem; font-weight: 600; letter-spacing: .3px; color: var(--cream);
  background: rgba(31,53,39,.6); padding: 7px 16px; border-radius: 100px;
  backdrop-filter: blur(4px); transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.video-embed:hover .video-embed__hint,
.video-embed:focus-visible .video-embed__hint { opacity: 0; transform: translateX(-50%) translateY(10px); }

@media (prefers-reduced-motion: reduce) {
  .video-embed__play::after, .btn--play::after, .video__glow, .video__frame.is-featured::before { animation: none; }
}

/* ---------- Modal & Lightbox ---------- */
.modal {
  position: fixed; inset: 0; z-index: 2000; display: none;
  align-items: center; justify-content: center; padding: clamp(16px, 4vw, 40px);
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(15, 25, 18, .85);
  backdrop-filter: blur(6px); animation: modalFade .3s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal__close {
  position: absolute; top: 0; right: 0; width: 42px; height: 42px; z-index: 3;
  border: none; border-radius: 50%; cursor: pointer; color: #fff; font-size: 1.7rem; line-height: 1;
  background: rgba(255,255,255,.14); display: grid; place-items: center;
  transition: background .3s var(--ease), transform .4s var(--ease);
}
.modal__close:hover { background: var(--gold); transform: rotate(90deg); }

/* Video modal */
.modal__dialog--video {
  position: relative; z-index: 1; width: 100%; max-width: 960px;
  animation: modalPop .4s var(--ease);
}
@keyframes modalPop { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.modal__dialog--video .modal__close { top: -50px; }
.modal__video {
  position: relative; aspect-ratio: 16 / 9; width: 100%; overflow: hidden;
  border-radius: var(--radius); background: #000; box-shadow: var(--shadow-lg);
}
.modal__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Foto lightbox */
.lightbox__stage {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  max-width: 92vw; animation: modalPop .4s var(--ease);
}
.lightbox__img {
  max-width: 92vw; max-height: 78vh; object-fit: contain;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); background: #0c140f;
}
.lightbox__stage .modal__close { top: -50px; }
.lightbox__cap {
  margin-top: 16px; color: var(--cream); font-family: var(--serif);
  font-size: 1.2rem; font-style: italic; text-align: center;
}
.lightbox__count { margin-top: 5px; color: rgba(247,243,233,.6); font-size: .82rem; letter-spacing: 2px; }
.lightbox__nav {
  position: relative; z-index: 2; flex: none; width: 54px; height: 54px; margin: 0 clamp(6px, 2vw, 18px);
  border: none; border-radius: 50%; cursor: pointer; color: #fff; font-size: 2rem; line-height: 1;
  background: rgba(255,255,255,.12); display: grid; place-items: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__nav:hover { background: var(--gold); transform: scale(1.08); }

@media (max-width: 600px) {
  .lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
  .lightbox__img { max-height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  .modal__backdrop, .modal__dialog--video, .lightbox__stage { animation: none; }
  .modal__close:hover { transform: none; }
}
