/* ============================================================
   Manolya Pastaneleri — sıfırdan, tek dosya stil
   Palet: logodan örneklenmiş yeşil + altın + krem
   ============================================================ */
:root {
  --green-900: #002b20;
  --green-800: #003a2b;
  --green-700: #004838;   /* logo çekirdek yeşili */
  --green-600: #0d5a44;
  --green-100: #d5e6dd;
  --green-50:  #eef5f1;

  --gold-700: #907737;
  --gold-500: #b19544;    /* vurgu altını */
  --gold-300: #d6c089;
  --gold-100: #f3ecd6;

  --cream-50:  #fdf7ef;   /* sayfa zemini */
  --cream-100: #f9ede1;
  --cream-200: #f6ead9;

  --ink:   #1a1512;
  --ink-2: #3d342c;
  --ink-3: #6b5e53;
  --line:  #e4d9c9;
  --paper: #fdfbf7;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius: 14px;
  --shadow: 0 10px 30px rgba(26, 21, 18, .08);
  --shadow-lg: 0 18px 50px rgba(26, 21, 18, .16);
  --header-h: 90px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 100% - 40px); margin-inline: auto; }

/* ---------- Ortak parçalar ---------- */
.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .18em;
  color: var(--green-600); text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold-300); }
.gold-line {
  width: 64px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border: none; border-radius: 999px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary { background: var(--green-700); color: #fff; }
.btn--primary:hover { background: var(--green-800); }
.btn--gold { background: var(--gold-500); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-300); }
.arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 247, 239, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: min(1180px, 100% - 40px); margin-inline: auto;
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
}
.logo { margin-left: clamp(0px, 9vw, 175px); }
.logo img { height: 74px; width: auto; }
.nav { display: flex; gap: 6px; margin-inline: auto; }
.nav__link {
  padding: 10px 14px; border-radius: 999px;
  font-size: .9rem; font-weight: 500; color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--green-50); color: var(--green-700); }
.nav__link.is-active { background: var(--green-700); color: #fff; }
.header__social { display: flex; gap: 6px; }
.social {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green-700); border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease;
}
.social:hover { background: var(--green-700); color: #fff; }
.burger { display: none; background: none; border: none; padding: 8px; }
.burger span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: var(--green-700); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (koyu, tam genişlik; kartlar alta hafif biner) ---------- */
.hero { position: relative; overflow: hidden; background: var(--green-900); }
.hero__slide {
  position: relative; display: none;
  min-height: clamp(460px, 62vh, 640px);
  align-items: center;
}
.hero__slide.is-active { display: flex; animation: heroFade .8s ease; }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0, 43, 32, .82) 0%, rgba(0, 43, 32, .55) 45%, rgba(0, 43, 32, .15) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 640px;
  margin-left: max(calc((100% - 1180px) / 2), 20px);
  padding: 64px 20px 120px 0;
  color: var(--cream-100);
}
.hero__eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .22em;
  color: var(--gold-300); margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5.6vw, 4rem); line-height: 1.08;
  margin: 0 0 18px;
}
.hero__body { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--cream-200); margin: 0 0 30px; max-width: 46ch; }
.hero__dots {
  position: absolute; z-index: 2; bottom: 86px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.hero__dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255, 255, 255, .38); transition: background .2s, transform .2s;
}
.hero__dot.is-active { background: var(--gold-300); transform: scale(1.25); }

/* ---------- Değerler ---------- */
.valueprops { padding: 0 0 72px; position: relative; z-index: 2; margin-top: -64px; }
.valueprops__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.valueprop {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.valueprop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.valueprop__icon {
  width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center;
}
.valueprop__icon svg { width: 28px; height: 28px; }
.valueprop h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 10px; color: var(--green-800); }
.valueprop p { margin: 0; color: var(--ink-3); font-size: .95rem; }

/* ---------- Bölüm başlığı ---------- */
.section { padding: 24px 0 80px; }
.section__header { text-align: center; margin-bottom: 44px; }
.section__header .gold-line { margin: 18px auto 0; }
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 10px 0 0; color: var(--green-900);
}

/* ---------- Kategoriler ---------- */
.catgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.catcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 20px 22px; text-align: center; color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.catcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.catcard__icon {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--cream-100); color: var(--green-700);
  display: grid; place-items: center; font-size: 26px;
}
.catcard__label { font-weight: 600; margin-bottom: 6px; }
.catcard__arr { font-size: .8rem; color: var(--gold-700); }

/* ---------- Şube CTA (dar, yatay bant) ---------- */
.storecta {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: var(--cream-100);
}
.storecta::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.storecta__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 44px 0;
}
.storecta__title {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin: 0;
}
.storecta__drizzle { width: 190px; height: 22px; margin: 12px 0 10px; display: block; }
.storecta__drizzle path { stroke-dasharray: 1; stroke-dashoffset: 1; }
.storecta__text.in .storecta__drizzle path { animation: drawDrizzle 1.2s .25s ease-out forwards; }
.storecta__body { color: var(--green-100); margin: 0; font-size: .95rem; }
.storecta .btn { flex: none; }
.storecta__spark {
  position: absolute; right: 4%; top: 14px;
  font-size: 26px; color: var(--gold-300); opacity: .45;
  animation: sparkle 3.4s ease-in-out infinite;
}
@keyframes sparkle { 0%, 100% { transform: scale(1) rotate(0); opacity: .3; } 50% { transform: scale(1.2) rotate(18deg); opacity: .6; } }

/* ---------- Sayfa başlığı: editoryal hayalet yazı + çikolata sosu ---------- */
.ph-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  border-bottom: 1px solid var(--line);
}
.ph-hero__in {
  position: relative; z-index: 1;
  width: min(1180px, 100% - 40px); margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 26px 0 24px;
}
.ph-hero__title {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.55rem, 3vw, 2.3rem); line-height: 1.08;
  margin: 0; color: var(--green-900);
  animation: fadeUp .6s .08s ease both;
}
.ph-hero__drizzle { width: 170px; height: 20px; margin: 12px auto 0; display: block; }
.ph-hero__drizzle path {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: drawDrizzle 1.2s .4s ease-out forwards;
}
@keyframes drawDrizzle { to { stroke-dashoffset: 0; } }
.ph-hero__body {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(.96rem, 1.5vw, 1.15rem); line-height: 1.65;
  color: var(--ink-2); margin: 12px 0 0; max-width: 52ch;
  text-align: center;
  animation: fadeUp .6s .2s ease both;
}

/* ---------- Kurumsal ---------- */
.about__intro { max-width: 780px; padding: 48px 0 30px; }
.lead { font-size: 1.2rem; color: var(--ink-2); font-weight: 400; line-height: 1.7; }
.body-text { color: var(--ink-3); }
.timeline { padding: 50px 0 20px; }
.timeline__title {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 8px 0 0; color: var(--green-900);
}
.timeline__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.timeline__item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.timeline__item::before {
  content: ''; position: absolute; top: 0; left: 26px; right: 26px; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent); border-radius: 2px;
}
.timeline__year {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold-700); font-style: italic;
}
.timeline__item h3 { margin: 8px 0 10px; color: var(--green-800); }
.timeline__item p { margin: 0; color: var(--ink-3); font-size: .95rem; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 40px 0 90px; }
.valuecard {
  background: var(--green-700); color: var(--cream-100);
  border-radius: var(--radius); padding: 34px 28px;
}
.valuecard:nth-child(2) { background: var(--green-800); }
.valuecard:nth-child(3) { background: var(--green-900); }
.valuecard__icon {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 16px;
  background: rgba(255, 255, 255, .1); color: var(--gold-300);
  display: grid; place-items: center;
}
.valuecard__icon svg { width: 26px; height: 26px; }
.valuecard h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 10px; }
.valuecard p { margin: 0; color: var(--green-100); font-size: .95rem; }

/* ---------- Ürünler ---------- */
.prod-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 44px 0 40px; }
.prod-filter {
  border: 1px solid var(--line); background: var(--paper); color: var(--ink-2);
  padding: 9px 18px; border-radius: 999px; font-size: .85rem; font-weight: 500;
  transition: background .15s, color .15s, border-color .15s;
}
.prod-filter:hover { border-color: var(--green-600); color: var(--green-700); }
.prod-filter.is-active { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 90px; }
.prod-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prod-card__img {
  height: 190px; display: grid; place-items: center;
  color: rgba(255, 255, 255, .85); font-size: 52px;
}
.prod-card__body { padding: 20px 22px 24px; }
.prod-card__cat { font-size: .72rem; letter-spacing: .14em; color: var(--gold-700); text-transform: uppercase; font-weight: 600; }
.prod-card__name { font-family: var(--font-display); font-size: 1.3rem; margin: 6px 0 8px; color: var(--green-900); }
.prod-card__desc { margin: 0; color: var(--ink-3); font-size: .92rem; }

/* ---------- Şubeler: madalyonlu zarif kartlar ---------- */
.br-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 48px 0 90px; }
.br-card {
  position: relative;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 20px; cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.br-card::before {
  content: ''; position: absolute; inset: 0 auto 0 0; width: 3px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: linear-gradient(180deg, var(--gold-500), transparent 70%);
  opacity: 0; transition: opacity .22s ease;
}
.br-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.br-card:hover::before { opacity: 1; }
.br-card__top { display: flex; align-items: center; gap: 16px; }
.br-card__medal {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--gold-300); background: var(--cream-100);
  display: grid; place-items: center; color: var(--green-700);
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.br-card__flower { height: 34px; width: auto; }
.br-card:hover .br-card__medal { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.br-card__name {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.4rem; margin: 0; color: var(--green-900); line-height: 1.15;
}
.br-card__divider {
  height: 1px; margin: 18px 0 16px;
  background: linear-gradient(90deg, var(--gold-300), transparent);
}
.br-card__rows { min-height: 74px; }
.br-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .9rem; color: var(--ink-3); }
.br-row svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--green-600); }
.br-card__actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 6px; padding-top: 14px; border-top: 1px dashed var(--line);
}
.br-card__call {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid var(--green-100); background: var(--green-50);
  font-size: .85rem; font-weight: 600; color: var(--green-800);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.br-card__call svg { width: 14px; height: 14px; }
.br-card__call:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.br-detay { font-size: .85rem; font-weight: 600; color: var(--gold-700); transition: transform .18s ease; }
.br-card:hover .br-detay { transform: translateX(3px); }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(26, 21, 18, .55); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 20px;
}
.modal[hidden] { display: none; }
.modal__box {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: min(560px, 100%); max-height: 90vh; overflow: auto; position: relative;
  animation: modalIn .25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .2); color: #fff; font-size: 15px;
}
.modal__head { background: var(--green-700); color: #fff; padding: 26px 28px; }
.modal__head h3 { margin: 0; font-family: var(--font-display); font-size: 1.5rem; }
.modal__body { padding: 24px 28px 28px; color: var(--ink-2); font-size: .95rem; }
.modal__row { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.modal__row svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--green-600); }
.modal__map { margin-top: 18px; }
.modal__map iframe { width: 100%; height: 260px; border: 0; border-radius: 10px; }
.modal__maplink {
  display: inline-flex; gap: 8px; align-items: center; margin-bottom: 10px;
  font-size: .85rem; font-weight: 600; color: var(--green-700);
}


/* ---------- Ürün penceresi ---------- */
#prodModal { display: flex; align-items: center; justify-content: center; gap: 18px; }
#prodModal[hidden] { display: none; }
.prod-card { cursor: pointer; }
.pmodal {
  position: relative;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  width: min(940px, 100%); max-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden;
  animation: modalIn .25s ease;
}
.pmodal__media {
  background: var(--cream-100); min-height: 380px;
  display: grid; place-items: center; overflow: hidden;
}
.pmodal__media img { width: 100%; height: 100%; object-fit: cover; }
.pmodal__media .pmodal__emoji { font-size: 110px; }
.pmodal__body { padding: 56px 44px; align-self: center; }
.pmodal__cat {
  font-size: .75rem; font-weight: 600; letter-spacing: .2em;
  color: var(--gold-700); text-transform: uppercase; margin-bottom: 14px;
}
.pmodal__cat::before { content: '— '; }
.pmodal__title {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--green-800);
  margin: 0 0 14px; line-height: 1.15;
}
.pmodal__desc { color: var(--ink-3); margin: 0; line-height: 1.7; }
.pmodal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); font-size: 15px;
  box-shadow: var(--shadow);
  transition: background .15s, color .15s;
}
.pmodal__close:hover { background: var(--green-700); color: #fff; }
.pmodal__count {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--green-700); color: #fff;
  font-size: .8rem; font-weight: 600; padding: 6px 14px; border-radius: 999px;
}
.pmodal__nav {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, .92); color: var(--ink-2);
  font-size: 26px; line-height: 1; box-shadow: var(--shadow);
  transition: background .15s, color .15s, transform .15s;
}
.pmodal__nav:hover { background: var(--gold-500); color: var(--green-900); transform: scale(1.06); }
@media (max-width: 760px) {
  #prodModal { gap: 0; padding: 14px; }
  #prodModal[hidden] { display: none; }
  .pmodal { grid-template-columns: 1fr; max-height: 86vh; overflow: auto; }
  .pmodal__media { min-height: 230px; aspect-ratio: 16 / 10; }
  .pmodal__body { padding: 26px 22px 60px; }
  .pmodal__nav {
    position: fixed; top: 50%; transform: translateY(-50%); z-index: 101;
  }
  .pmodal__nav--prev { left: 8px; }
  .pmodal__nav--next { right: 8px; }
}

/* ---------- Yenilikler ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 48px 0 90px; }
.news-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card__date { font-size: .78rem; letter-spacing: .1em; color: var(--gold-700); font-weight: 600; text-transform: uppercase; }
.news-card h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 8px 0 10px; color: var(--green-900); }
.news-card p { margin: 0; color: var(--ink-3); font-size: .93rem; }

/* ---------- İletişim ---------- */
.contact__wrap { display: grid; grid-template-columns: 340px 1fr; gap: 32px; padding: 48px 0 90px; align-items: start; }
.contact__info {
  background: var(--green-700); color: var(--cream-100);
  border-radius: var(--radius); padding: 32px 28px;
}
.contact__info h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 24px; }
.contact__row { display: flex; gap: 14px; margin-bottom: 22px; }
.contact__icon {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: rgba(255, 255, 255, .1); color: var(--gold-300);
  display: grid; place-items: center;
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__h { font-weight: 600; margin-bottom: 4px; }
.contact__p { font-size: .9rem; color: var(--green-100); }
.contact__p a { color: var(--green-100); text-decoration: underline; text-underline-offset: 3px; }
.contact__forms { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact__tabs { display: flex; gap: 8px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.contact__tab {
  background: none; border: none; padding: 12px 16px;
  font-size: .92rem; font-weight: 600; color: var(--ink-3);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.contact__tab.is-active { color: var(--green-700); border-bottom-color: var(--gold-500); }
.form__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: block; margin-bottom: 16px; }
.form__field span { display: block; font-size: .82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.form__field input, .form__field select, .form__field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: #fff; font-family: inherit; font-size: .95rem; color: var(--ink);
}
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  outline: 2px solid var(--green-600); outline-offset: 1px; border-color: var(--green-600);
}
.form__note { margin: 14px 0 0; padding: 12px 16px; border-radius: 10px; background: var(--green-50); color: var(--green-800); font-size: .9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--green-900); color: var(--cream-200); margin-top: auto; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding: 60px 0 44px;
}
.footer__logo { height: 70px; width: auto; margin-bottom: 20px; }
.footer__contact { list-style: none; margin: 0; padding: 0; font-size: .9rem; }
.footer__contact li { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--gold-300); }
.footer__contact a { color: var(--cream-200); }
.footer__contact a:hover { color: var(--gold-300); }
.footer__h { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-300); margin: 6px 0 16px; font-weight: 500; }
.footer__list { list-style: none; margin: 0; padding: 0; font-size: .9rem; }
.footer__list li { margin-bottom: 9px; }
.footer__list a { color: var(--cream-200); transition: color .15s; }
.footer__list a:hover { color: var(--gold-300); }
.footer__branches { columns: 2; }
.footer__bar { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer__bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: .85rem; color: var(--green-100);
}
.footer__top {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .25);
  background: none; color: #fff; font-size: 16px;
  transition: background .15s;
}
.footer__top:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }


/* ---------- Animasyonlar ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
/* Kartlarda hafif sıralı geliş */
.valueprops__grid .reveal:nth-child(2), .prod-grid .reveal:nth-child(3n+2), .br-grid .reveal:nth-child(3n+2), .news-grid .reveal:nth-child(3n+2), .timeline__track .reveal:nth-child(2), .values .reveal:nth-child(2) { transition-delay: .1s; }
.valueprops__grid .reveal:nth-child(3), .prod-grid .reveal:nth-child(3n), .br-grid .reveal:nth-child(3n), .news-grid .reveal:nth-child(3n), .timeline__track .reveal:nth-child(3), .values .reveal:nth-child(3) { transition-delay: .2s; }

/* Hero: yumuşak yakınlaşma + sıralı yazı girişi */
.hero__slide.is-active .hero__bg { animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero__slide.is-active .hero__eyebrow { animation: fadeUp .6s ease both; }
.hero__slide.is-active .hero__title   { animation: fadeUp .7s .12s ease both; }
.hero__slide.is-active .hero__body    { animation: fadeUp .7s .24s ease both; }
.hero__slide.is-active .btn           { animation: fadeUp .7s .36s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Üst çubuk: kaydırınca gölge */
.header.is-scrolled { box-shadow: 0 6px 24px rgba(26, 21, 18, .08); }

/* ---------- Erişilebilirlik ---------- */
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .ph-hero__drizzle path, .storecta__drizzle path { stroke-dashoffset: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .catgrid { grid-template-columns: repeat(3, 1fr); }
  .prod-grid, .br-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact__wrap { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 78px; }
  .logo { margin-left: 0; }
  .logo img { height: 58px; }
  .header__social { display: none; }
  .burger { display: block; margin-left: auto; }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 4px; padding: 16px 20px 22px;
    background: var(--cream-50); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 13px 16px; font-size: 1rem; }

  .valueprops { padding: 0 0 48px; margin-top: -48px; }
  .storecta__inner { flex-direction: column; text-align: center; gap: 20px; padding: 40px 0; }
  .storecta__drizzle { margin-inline: auto; }
  .valueprops__grid, .timeline__track, .values { grid-template-columns: 1fr; }
  .hero__slide { min-height: 420px; }
  .hero__content { padding: 48px 20px 104px 0; }
  .hero__dots { bottom: 70px; }
}

@media (max-width: 560px) {
  .catgrid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid, .br-grid, .news-grid { grid-template-columns: 1fr; }
  .form__row2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 32px; }
  .footer__bar-inner { flex-direction: column; gap: 12px; }
  .ph-hero__in { padding: 22px 0 24px; }
  .contact__forms { padding: 20px 16px; }
  .contact__tabs { flex-direction: column; border: none; gap: 4px; }
  .contact__tab { text-align: left; border-left: 2px solid transparent; border-bottom: none; }
  .contact__tab.is-active { border-left-color: var(--gold-500); background: var(--green-50); border-radius: 0 8px 8px 0; }
}

/* ============ Bakım Modu (Yakında ekranı) ============ */
.mnl-maint{--font-sans:Inter,ui-sans-serif,system-ui,sans-serif;--font-serif:"Playfair Display",Georgia,serif;--font-display:"Playfair Display",Georgia,serif;--font-script:"Playfair Display",Georgia,serif;--accent:#b19544;--fg-on-dark:#f9ede1;--fg-on-dark-2:#d5e6dd;--manolya-gold-300:#d6c089;position:fixed;inset:0;z-index:200;overflow:auto;}

  * { box-sizing: border-box; }
  
  .mnl-maint {
    font-family: var(--font-sans);
    color: var(--fg-on-dark);
    background:
      radial-gradient(120% 80% at 50% 35%, #0d5a44 0%, #003a2b 50%, #001c15 100%);
    overflow-x: hidden;
    position: relative;
  }

  /* subtle texture */
  .mnl-maint::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 10% 10%, rgba(177, 149, 68, 0.08) 0%, transparent 40%),
      radial-gradient(circle at 90% 90%, rgba(177, 149, 68, 0.06) 0%, transparent 40%);
    pointer-events: none;
  }

  /* layout */
  .cs {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 48px 32px;
    position: relative;
    z-index: 1;
  }

  /* decorative corners */
  .cs__corner {
    position: absolute;
    color: var(--accent);
    font-size: 20px;
    opacity: 0.55;
    font-family: var(--font-serif);
  }
  .cs__corner--tl { top: 40px; left: 40px; }
  .cs__corner--tr { top: 40px; right: 40px; }
  .cs__corner--bl { bottom: 40px; left: 40px; }
  .cs__corner--br { bottom: 40px; right: 40px; }

  /* top: small eyebrow / status */
  .cs__top {
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }
  .cs__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(177, 149, 68, 0.35);
    border-radius: 999px;
    font: 600 11px/1 var(--font-sans);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(0, 28, 21, 0.35);
    backdrop-filter: blur(8px);
  }
  .cs__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(177, 149, 68, 0.5);
    animation: cs-pulse 2s ease-in-out infinite;
  }
  @keyframes cs-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(177, 149, 68, 0.5); }
    50%      { box-shadow: 0 0 0 10px rgba(177, 149, 68, 0); }
  }

  /* middle: logo + thin gold rule + title */
  .cs__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding: 40px 16px;
  }

  .cs__logo {
    width: clamp(220px, 28vw, 380px);
    height: auto;
    display: block;
    /* Invert dark-green logo to cream for readability on dark bg */
    filter:
      brightness(0) invert(94%) sepia(15%) saturate(500%)
      hue-rotate(340deg) brightness(101%) contrast(94%)
      drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
    animation: cs-fade-up 1s var(--ease-out, cubic-bezier(.2,.8,.2,1)) both;
  }

  .cs__rule {
    width: 80px;
    height: 1px;
    background: var(--accent);
    margin: 40px 0 36px;
    animation: cs-grow 900ms .3s var(--ease-out, cubic-bezier(.2,.8,.2,1)) both;
    transform-origin: center;
  }

  .cs__eyebrow {
    font: 600 13px/1 var(--font-sans);
    letter-spacing: 0.44em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    animation: cs-fade-up 900ms .5s var(--ease-out, cubic-bezier(.2,.8,.2,1)) both;
  }

  .cs__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--manolya-cream-100, #FDF7EF);
    margin: 0;
    text-wrap: balance;
    animation: cs-fade-up 1s .55s var(--ease-out, cubic-bezier(.2,.8,.2,1)) both;
  }

  .cs__script {
    font-family: var(--font-script);
    font-size: clamp(40px, 5vw, 72px);
    color: var(--accent);
    line-height: 0.9;
    margin-top: 8px;
    animation: cs-fade-up 1s .7s var(--ease-out, cubic-bezier(.2,.8,.2,1)) both;
  }

  .cs__lead {
    font: italic 400 clamp(17px, 1.6vw, 22px)/1.55 var(--font-serif);
    color: var(--manolya-cream-300, #E4D9C9);
    opacity: 0.9;
    max-width: 620px;
    margin: 32px auto 0;
    animation: cs-fade-up 1s .85s var(--ease-out, cubic-bezier(.2,.8,.2,1)) both;
  }

  /* bottom: footer meta */
  .cs__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
    border-top: 1px solid rgba(177, 149, 68, 0.18);
    padding-top: 24px;
    font: 12px/1.4 var(--font-sans);
    color: var(--manolya-cream-300, #E4D9C9);
    opacity: 0.8;
    animation: cs-fade 1s 1s both;
  }
  .cs__since {
    font-family: var(--font-serif);
    font-style: italic;
    letter-spacing: 0.04em;
  }
  .cs__contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .cs__contact a {
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.08em;
    font-size: 12px;
  }
  .cs__contact a:hover { color: var(--manolya-cream-100, #FDF7EF); }
  .cs__social {
    display: flex;
    gap: 8px;
  }
  .cs__social a {
    width: 32px; height: 32px;
    border: 1px solid rgba(177, 149, 68, 0.35);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 200ms ease;
  }
  .cs__social a:hover {
    background: var(--accent);
    color: #002b20;
    border-color: var(--accent);
  }
  .cs__social svg { width: 14px; height: 14px; }

  @keyframes cs-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cs-fade {
    from { opacity: 0; } to { opacity: 0.8; }
  }
  @keyframes cs-grow {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 1; }
  }

  @media (max-width: 720px) {
    .cs__corner { font-size: 14px; }
    .cs__corner--tl, .cs__corner--tr { top: 24px; }
    .cs__corner--tl, .cs__corner--bl { left: 24px; }
    .cs__corner--tr, .cs__corner--br { right: 24px; }
    .cs__corner--bl, .cs__corner--br { bottom: 24px; }
    .cs__bottom { flex-direction: column; text-align: center; }
    .cs__contact { justify-content: center; }
    .cs__rule { margin: 28px 0 24px; }
  }

/* ============ BAKIM EKRANI — KESİN KONUMLANDIRMA (en sonda, her kuralı ezer) ============ */
.mnl-maint {
  position: fixed !important;
  inset: 0 !important;
  z-index: 200 !important;
  overflow: auto !important;
  display: block;
}
.mnl-maint[hidden] { display: none !important; }
