/* ============================================================
   Ekler&ekler — Sıcak Vitrin
   Palet (5 renk, kısıtlı):
   --krem    #F6EFE5  zemin
   --cikolata#2E1B10  koyu bölümler / metin
   --sut     #E5D5C0  ara ton, kart zeminleri
   --karamel #C8842C  vurgu (büyük yüzeyler)
   --karamel-koyu #8F5B1A  küçük metin vurgusu (AA kontrast)
   Tipografi: Fraunces (display) · Figtree (body) · Caveat (script)
   ============================================================ */

:root {
  --krem: #F6EFE5;
  --krem-acik: #FCF8F1;
  --cikolata: #2E1B10;
  --cikolata-2: #3B2417;
  --sut: #E5D5C0;
  --karamel: #C8842C;
  --karamel-koyu: #8F5B1A;
  --display: "Fraunces", Georgia, serif;
  --body: "Figtree", "Segoe UI", sans-serif;
  --script: "Caveat", cursive;
  --r-lg: 28px;
  --r-md: 18px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--krem);
  color: var(--cikolata);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* hidden yerine clip: scroll konteyneri yaratmadan yatay taşmayı keser */
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--karamel);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--karamel); color: var(--krem-acik); }

/* ---------- ortak parçalar ---------- */

.eyebrow {
  font-family: var(--script);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--karamel-koyu);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: .25rem;
}
.eyebrow--light { color: var(--sut); }

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--karamel-koyu);
}
.section-title--light { color: var(--krem-acik); }
.section-title--light em { color: var(--karamel); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--solid {
  background: var(--cikolata);
  color: var(--krem-acik);
  box-shadow: 0 4px 14px rgba(46, 27, 16, .25);
}
.btn--solid:hover { background: var(--cikolata-2); box-shadow: 0 8px 22px rgba(46, 27, 16, .3); }

.btn--ghost {
  background: transparent;
  color: var(--cikolata);
  border: 1.5px solid rgba(46, 27, 16, .25);
}
.btn--ghost:hover { border-color: var(--cikolata); }

.btn--big { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn--amber { background: var(--karamel); color: var(--cikolata); box-shadow: 0 6px 18px rgba(200, 132, 44, .35); }
.btn--amber:hover { background: #D89438; }
.btn--cream { background: var(--krem-acik); color: var(--cikolata); }

/* Çikolata plaketi — markanın imzası */
.plaket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  color: rgba(246, 239, 229, .85);
  background:
    radial-gradient(120% 160% at 30% 20%, #5A3A22 0%, #3B2417 55%, #2A1409 100%);
  padding: .55em 1.4em;
  border-radius: 999px;
  box-shadow:
    inset 0 2px 3px rgba(255, 235, 205, .25),
    inset 0 -3px 5px rgba(0, 0, 0, .45),
    0 6px 14px rgba(46, 27, 16, .35);
  text-shadow: 0 -1px 1px rgba(0, 0, 0, .6);
}
.plaket--white {
  color: rgba(90, 58, 34, .9);
  background:
    radial-gradient(120% 160% at 30% 20%, #FFF8EA 0%, #F0E2CB 55%, #DCC9AB 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, .8),
    inset 0 -3px 5px rgba(150, 120, 80, .35),
    0 6px 14px rgba(46, 27, 16, .18);
  text-shadow: 0 1px 1px rgba(255, 255, 255, .7);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .9rem clamp(1rem, 4vw, 3rem);
  transition: background .35s, box-shadow .35s, padding .35s;
}
.nav.is-scrolled {
  background: rgba(246, 239, 229, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(46, 27, 16, .08);
  padding-block: .6rem;
}

.nav__brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(46, 27, 16, .18);
}
.footer .nav__logo { width: 56px; height: 56px; }
.nav__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.2rem;
}
.nav__name em { color: var(--karamel-koyu); font-style: normal; }

.nav__links { display: flex; gap: 1.6rem; margin-inline: auto; }
/* Masaüstünde linkler kalan boşluğa değil, sayfanın gerçek merkezine oturur */
@media (min-width: 901px) {
  .nav__links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
}
.nav__links a {
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--karamel);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: flex; gap: .6rem; margin-left: auto; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: .6rem;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--cikolata);
  transition: transform .3s, opacity .3s;
}

/* ============ HERO ============ */
.hero { height: 280vh; position: relative; }
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* alttaki 20px: video hiçbir pencere boyutunda ekran altından kesilmez */
  padding: 12vh 0 20px;
  /* animasyonun ikinci yarısında tüm hero sahnesi yukarı süzülür,
     kareler oynamaya devam eder */
  transform: translateY(calc(max(0, var(--p, 0) - .5) * -56vh));
}

.hero__bg-grain {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 75% 30%, rgba(200, 132, 44, .12), transparent 70%),
    radial-gradient(50% 40% at 20% 80%, rgba(229, 213, 192, .5), transparent 70%);
  pointer-events: none;
}
.hero__bg-grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero__title {
  position: relative;
  z-index: 3;
  text-align: center;
  font-family: var(--display);
  line-height: .92;
  pointer-events: none;
  /* italik satır videonun üstüne bilinçli taşar; layout alanı yemez */
  margin-bottom: calc(min(clamp(4.2rem, 14vw, 11.5rem), 22vh) * -0.45);
}
.hero__line { display: block; }
/* Tipografi de ekler gibi "çözülür": scroll ilerledikçe harf araları
   açılır, satırlar zıt yönlere savrulup silinir */
.hero__line--1 {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--karamel-koyu);
  transform: rotate(-2.5deg) translateY(calc(var(--p, 0) * -9vh));
  opacity: calc(1 - var(--p, 0) * 2.2);
  margin-bottom: .4rem;
}
.hero__line--2, .hero__line--3 {
  /* 22vh sınırı: kısa pencerede başlık ekranı yutmaz, videoya yer kalır */
  font-size: min(clamp(4.2rem, 14vw, 11.5rem), 22vh);
  font-weight: 700;
  font-variation-settings: "opsz" 144, "SOFT" 75;
  letter-spacing: calc(.01em + var(--p, 0) * .38em);
}
.hero__line--2 {
  transform: translate(calc(var(--p, 0) * -7vw), calc(var(--p, 0) * -7vh));
  opacity: calc(1 - max(0, var(--p, 0) - .25) * 2.1);
}
.hero__line--3 {
  font-style: italic;
  font-weight: 500;
  /* videoyla kesişen satır: krem kontur okunurluğu korur */
  text-shadow:
    2px 2px 0 var(--krem), -2px 2px 0 var(--krem),
    2px -2px 0 var(--krem), -2px -2px 0 var(--krem),
    0 4px 18px rgba(246, 239, 229, .6);
  transform: translate(calc(var(--p, 0) * 7vw), calc(var(--p, 0) * 3vh));
  opacity: calc(1 - max(0, var(--p, 0) - .32) * 2.1);
}
.hero__dot { color: var(--karamel); }

.hero__script {
  position: absolute;
  z-index: 4;
  bottom: 17vh;
  font-family: var(--script);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--cikolata);
  background: var(--krem-acik);
  padding: .2em 1em;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(46, 27, 16, .15);
  transform: rotate(2deg) translateY(calc(var(--p, 0) * 14vh));
  opacity: calc(1 - var(--p, 0) * 1.8);
}

/* Sahne: başlıktan artan dikey alanı doldurur; video bu alana sığar */
.hero__stage {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: grid;
  place-items: center;
}
.hero__canvas {
  /* absolute + inset 0 + margin auto: sahnenin ortasında, doğal 16:9
     oranını koruyarak hem genişlik hem yükseklik sınırına sığar */
  position: absolute;
  inset: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: min(86vw, 1150px);
  max-height: 100%;
  /* multiply: videonun açık stüdyo zemini krem zemine kaynaşır,
     ekler kart içinde değil doğrudan sayfada duruyormuş gibi görünür */
  mix-blend-mode: multiply;
  opacity: var(--fade, 1);
  transform: scale(calc(1 + var(--p, 0) * .05));
  /* oval vinyet: dört kenar da krem zemine eriyerek biter, keskin
     sınır kalmaz; ekler gövdesi tam opak bölgede kalır */
  -webkit-mask-image: radial-gradient(50% 56% at 50% 52%, #000 70%, transparent 97%);
  mask-image: radial-gradient(50% 56% at 50% 52%, #000 70%, transparent 97%);
}

.hero__fallback { position: relative; }
.hero__photo {
  width: min(46vh, 72vw);
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  border-radius: 50% 50% var(--r-lg) var(--r-lg) / 42% 42% var(--r-lg) var(--r-lg);
  box-shadow: 0 30px 70px rgba(46, 27, 16, .3);
  transform: translateY(calc(var(--p, 0) * -5vh)) scale(calc(.94 + var(--p, 0) * .1));
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(calc(1.15 - var(--p, 0) * .12));
}

/* Plaketler scroll ile uçuşur */
.plaket--float {
  position: absolute;
  font-size: .8rem;
  opacity: calc((var(--p, 0) - .25) * 3);
}
.plaket--p1 {
  top: 12%; left: -16%;
  transform: translate(calc(var(--p, 0) * -7vw), calc(var(--p, 0) * -4vh)) rotate(-12deg);
}
.plaket--p2 {
  top: 42%; right: -22%;
  transform: translate(calc(var(--p, 0) * 7vw), calc(var(--p, 0) * -2vh)) rotate(9deg);
}
.plaket--p3 {
  bottom: 8%; left: -10%;
  transform: translate(calc(var(--p, 0) * -5vw), calc(var(--p, 0) * 5vh)) rotate(6deg);
}

/* Çikolata akışı — scroll'un son çeyreğinde yukarıdan süzülür */
.hero__pour {
  position: absolute;
  z-index: -1; /* fotoğrafın arkasında, fon şeridi olarak akar */
  top: -30%;
  left: 50%;
  width: 26%;
  height: calc(var(--pour, 0) * 160%);
  translate: -50% 0;
  background: linear-gradient(180deg, #1F0F06, #3B2417 70%, #5A3A22);
  border-radius: 0 0 999px 999px;
  opacity: .85;
  filter: blur(1px);
}

.hero__badges {
  position: absolute;
  z-index: 4;
  bottom: 7vh;
  display: flex;
  gap: .6rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  padding-inline: 1rem;
}
.hero__badges {
  opacity: calc(1 - max(0, var(--p, 0) - .45) * 2.4);
}
.hero__badges li {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1.5px solid rgba(46, 27, 16, .25);
  border-radius: 999px;
  padding: .35em 1em;
  background: rgba(252, 248, 241, .65);
  backdrop-filter: blur(6px);
}

.hero__scroll-hint {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 7vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .7;
}
.hero__wheel { animation: wheel 1.6s ease-in-out infinite; }
@keyframes wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(7px); opacity: .3; }
}

/* Çok kısa pencereler: script rozeti küçülen videoyu kapatmasın */
@media (max-height: 620px) {
  .hero__script { display: none; }
  .hero__badges { bottom: 4vh; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--cikolata);
  color: var(--krem);
  overflow: hidden;
  padding: 1.1rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  /* video eriken site içeriği hero'nun kuyruğu üzerinden erken gelsin */
  margin-block: -55vh 0;
  position: relative;
  z-index: 5;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  white-space: nowrap;
  align-items: center;
}
.marquee__track i { color: var(--karamel); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ NEDEN ============ */
.neden {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
}
.neden__diagram {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px) 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  align-items: center;
}
.neden__photo {
  grid-column: 2;
  grid-row: 1 / 3;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 24px 60px rgba(46, 27, 16, .25);
  border: 6px solid var(--krem-acik);
}
.neden__photo img { width: 100%; height: 100%; object-fit: cover; }

.callout {
  text-align: left;
  background: var(--krem-acik);
  border-radius: var(--r-md);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 10px 26px rgba(46, 27, 16, .08);
  position: relative;
}
.callout::before {
  /* noktalı bağlantı çizgisi */
  content: "";
  position: absolute;
  top: 50%;
  width: 3.2rem;
  border-top: 2px dotted var(--karamel);
}
.callout--1, .callout--3 { justify-self: end; }
.callout--1::before, .callout--3::before { right: -3.6rem; }
.callout--2, .callout--4 { justify-self: start; }
.callout--2::before, .callout--4::before { left: -3.6rem; }
.callout--1 { grid-area: 1 / 1; }
.callout--2 { grid-area: 1 / 3; }
.callout--3 { grid-area: 2 / 1; }
.callout--4 { grid-area: 2 / 3; }

.callout h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: .3rem;
  color: var(--karamel-koyu);
}
.callout p { font-size: .92rem; }

/* ============ MENÜ ============ */
.menu {
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(200, 132, 44, .12), transparent 60%),
    var(--cikolata);
  color: var(--krem);
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.menu__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.menu__note { color: var(--sut); font-size: .95rem; }

.menu__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.kart {
  background: rgba(252, 248, 241, .05);
  border: 1px solid rgba(229, 213, 192, .15);
  border-radius: var(--r-lg);
  padding: .9rem .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  transition: transform .35s var(--ease-out), background .35s, border-color .35s;
}
.kart:hover {
  transform: translateY(-6px);
  background: rgba(252, 248, 241, .09);
  border-color: rgba(200, 132, 44, .45);
}

/* Vitrin: ürün fotoğrafının yüzdüğü yumuşak köşeli sahne */
.kart__vitrin {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.kart[data-tone="dark"] .kart__vitrin {
  background: radial-gradient(120% 120% at 50% 0%, #4A2E1B 0%, #34200F 60%, #2A1409 100%);
}
.kart[data-tone="light"] .kart__vitrin {
  background: radial-gradient(120% 120% at 50% 0%, #F3E7D2 0%, #E5D5C0 60%, #D4BFA2 100%);
}
.kart__vitrin img {
  width: 84%;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(20, 10, 4, .4));
  transition: transform .45s var(--ease-out);
}
.kart:hover .kart__vitrin img { transform: scale(1.07) rotate(-3deg); }

/* Vitrindeki küçük plaket etiketi (foto varken köşede durur) */
.kart__vitrin .plaket {
  position: absolute;
  left: .8rem;
  bottom: .8rem;
  font-size: .62rem;
  transition: transform .35s var(--ease-out);
}
.kart:hover .kart__vitrin .plaket { transform: rotate(-6deg) scale(1.1); }

/* Fotoğraf henüz yoksa: plaket vitrinin ortasında büyük durur */
.kart__vitrin.foto-yok img { display: none; }
.kart__vitrin.foto-yok .plaket {
  position: static;
  font-size: .95rem;
  padding: .8em 1.8em;
}

.kart h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--krem-acik);
  padding-inline: .3rem;
}
.kart p {
  font-size: .88rem;
  color: var(--sut);
  flex: 1;
  padding-inline: .3rem;
}

/* Alt şerit: fiyat pili + yuvarlak sipariş butonu */
.kart__alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: .3rem;
  margin-top: .3rem;
}
.kart__fiyat {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cikolata);
  background: var(--krem-acik);
  padding: .25em 1em;
  border-radius: 999px;
}
.kart__ekle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--karamel);
  color: var(--cikolata);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform .3s var(--ease-out), background .3s;
}
.kart__ekle:hover { transform: scale(1.12) rotate(90deg); background: #D89438; }

.kart--ozel { background: linear-gradient(140deg, rgba(200, 132, 44, .18), rgba(252, 248, 241, .04)); }

.menu__mevsim {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--sut);
  font-size: .95rem;
}
.menu__mevsim strong { color: var(--karamel); }

/* ============ ÜRETİM ============ */
.uretim {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
}
.uretim__text p { max-width: 46ch; }

.uretim__stats {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin-top: 2rem;
}
.uretim__stats li { display: flex; flex-direction: column; }
.uretim__stats strong {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--karamel-koyu);
  line-height: 1;
}
.uretim__stats span { font-size: .85rem; }

.uretim__collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.uretim__collage figure {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(46, 27, 16, .18);
}
.uretim__collage figure:nth-child(odd) { transform: translateY(1.4rem) rotate(-1deg); }
.uretim__collage figure:nth-child(even) { transform: translateY(-.6rem) rotate(1deg); }
.uretim__collage img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.uretim__collage figure:hover img { transform: scale(1.06); }

/* ============ ŞUBELER ============ */
.subeler {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 4rem);
  text-align: center;
  background: var(--sut);
  border-radius: var(--r-lg);
  margin: 0 clamp(.5rem, 2vw, 2rem);
}
.subeler__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}
.sube {
  background: var(--krem-acik);
  border-radius: var(--r-md);
  padding: 2rem 1.6rem;
  text-align: left;
  box-shadow: 0 10px 26px rgba(46, 27, 16, .1);
  transition: transform .3s var(--ease-out);
}
.sube:hover { transform: translateY(-5px); }
.sube h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: .5rem;
}
.sube__adres { font-size: .92rem; }
.sube__saat { font-size: .85rem; color: var(--karamel-koyu); font-weight: 600; margin-top: .3rem; }
.sube__link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border-bottom: 2px solid var(--karamel);
  padding-bottom: 2px;
}

/* ============ SİPARİŞ ============ */
.siparis {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4rem);
  background: var(--cikolata-2);
  color: var(--krem-acik);
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.siparis h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
}
.siparis h2 em { color: var(--karamel); font-weight: 400; }
.siparis p { margin-top: .8rem; color: var(--sut); }
.siparis__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--cikolata);
  color: var(--sut);
  padding: 3.5rem clamp(1rem, 5vw, 4rem) 6rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer__brand p { margin-top: 1rem; font-family: var(--script); font-size: 1.3rem; }
.footer__col { display: flex; flex-direction: column; gap: .5rem; }
.footer__col h4 {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  color: var(--karamel);
  margin-bottom: .4rem;
}
.footer__col a { text-decoration: none; font-size: .95rem; }
.footer__col a:hover { color: var(--krem-acik); }
.footer__fine {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(229, 213, 192, .15);
  padding-top: 1.4rem;
  font-size: .8rem;
}

/* ============ MOBİL CTA ============ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(246, 239, 229, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 -4px 20px rgba(46, 27, 16, .12);
  gap: .6rem;
}
.mobile-cta .btn { flex: 1; }

/* ============================================================
   MOBİL — küçültülmüş masaüstü değil, telefon için kurgu
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }

  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--krem);
    z-index: -1;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.6rem;
    font-family: var(--display);
  }
  .nav.is-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

  /* Hero mobilde daha kısa scroll, plaketler içeride kalır */
  .hero { height: 200vh; }
  .marquee { margin-block: -35vh 0; }
  .hero__line--2, .hero__line--3 { font-size: clamp(3.4rem, 17vw, 5.5rem); }
  .hero__photo { width: min(34vh, 78vw); }
  .plaket--p1 { left: -4%; }
  .plaket--p2 { right: -6%; }
  .plaket--p3 { left: 0; }
  .hero__scroll-hint { display: none; }
  /* alttaki sabit sipariş çubuğunun üstünde kalsın; script rozeti
     pill'lerin bir kat üstünde durur, çakışmazlar */
  .hero__badges { bottom: calc(76px + 4vh); }
  .hero__script { bottom: calc(76px + 4vh + 62px); }

  /* Neden: diyagram yerine dikey akış */
  .neden__diagram { grid-template-columns: 1fr; grid-template-rows: none; }
  .neden__photo { grid-column: 1; grid-row: auto; max-width: 320px; margin: 0 auto; }
  .callout { grid-area: auto !important; justify-self: stretch !important; }
  .callout::before { display: none; }

  /* Menü: yatay kaydırmalı vitrin */
  .menu__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    margin-inline: -1rem;
    padding-inline: 1rem;
    scrollbar-width: none;
  }
  .menu__grid::-webkit-scrollbar { display: none; }
  .kart { scroll-snap-align: center; }

  .uretim { grid-template-columns: 1fr; }
  .uretim__stats { flex-wrap: wrap; gap: 1.4rem; }

  .footer { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .mobile-cta { display: flex; }
  .siparis { padding-bottom: 7rem; }
}

@media (max-width: 480px) {
  .menu__grid { grid-auto-columns: 86%; }
}

/* ============ ERİŞİLEBİLİRLİK ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee { margin-block: 0; }
  .hero { height: auto; }
  .hero__sticky { position: relative; height: auto; min-height: 100vh; padding-block: 7rem 4rem; }
  .hero__photo, .hero__photo img, .plaket--float { transform: none; opacity: 1; }
  .hero__pour { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__wheel { animation: none; }
}
