/* Lezzet-i Baki — kurumsal: petrol yeşili + altın varak */
:root {
  --petrol: #0c3d42;
  --petrol-deep: #072c30;
  --petrol-mid: #14545a;
  --petrol-soft: #1e6b72;
  --petrol-mist: #e8f0f0;
  --gold: #c9a227;
  --gold-bright: #e0c35a;
  --gold-deep: #9a7b1a;
  --gold-grad: linear-gradient(135deg, #8a6d14 0%, #c9a227 35%, #f0d978 50%, #c9a227 65%, #a6851c 100%);
  --bg: #f3f6f5;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --ink: #0a2e31;
  --ink-muted: #4d6568;
  --line: rgba(12, 61, 66, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #f7f9f8;
  min-height: 100vh;
  line-height: 1.55;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 1.15rem clamp(1.5rem, 4vw, 3rem);
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-cluster {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 1.5rem;
  width: 100%;
  max-width: 1280px;
}

.logo {
  display: flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
  background: transparent;
  opacity: 0;
  animation: drop-in 0.65s var(--ease) 0.08s forwards;
}

.logo img {
  height: clamp(3.2rem, 6.5vw, 4.4rem);
  width: auto;
  max-width: min(280px, 38vw);
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: flex;
  gap: 0.15rem 1.85rem;
  align-items: center;
  justify-content: center;
  justify-self: center;
  flex-wrap: nowrap;
  margin: 0;
  opacity: 0;
  animation: drop-in 0.65s var(--ease) 0.08s forwards;
}

.site-nav .nav-link {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 600;
  color: #3a3a3a;
  padding: 0.4rem 0.1rem;
  transition: color 0.25s var(--ease);
  white-space: nowrap;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active,
.nav-dropdown.is-active > .nav-dropdown-toggle {
  color: var(--petrol);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.nav-chevron {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.2s var(--ease);
}

.nav-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 13.5rem;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: 0 16px 36px rgba(12, 61, 66, 0.14);
  display: none;
  z-index: 50;
}

/* Hover ile menü kapanmasın diye boşluk köprüsü */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
  gap: 0.15rem;
  transform: translateX(-50%) translateY(0);
}

/* Masaüstünde hover ile açılsın (tıklama gerekmez) */
@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    gap: 0.15rem;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .nav-chevron,
  .nav-dropdown:focus-within .nav-chevron {
    transform: rotate(180deg);
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 0.55rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: rgba(201, 162, 39, 0.12);
  color: var(--petrol);
}

.btn-qr-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0.72rem 1.45rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  background: var(--petrol);
  border: 1px solid var(--petrol-deep);
  border-radius: 999px;
  white-space: nowrap;
  margin: 0;
  opacity: 0;
  animation: drop-in 0.65s var(--ease) 0.08s forwards;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-qr-nav:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  background: var(--petrol-deep);
}

@keyframes drop-in {
  from { opacity: 0; transform: translateY(-1.35rem); }
  to { opacity: 1; transform: none; }
}

/* Mobile dock + fullscreen sheet — desktop gizli */
.mobile-dock,
.mobile-sheet {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    justify-content: flex-start;
    padding: 0.7rem 1rem 0.7rem 1.25rem;
  }

  .header-cluster {
    display: flex;
    justify-content: flex-start;
  }

  .site-nav,
  .btn-qr-nav {
    display: none;
  }

  .logo img {
    max-width: min(220px, 58vw);
    height: 3.2rem;
  }

  body {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-dock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    position: fixed;
    left: 50%;
    bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: min(420px, calc(100% - 1.4rem));
    z-index: 60;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(12, 61, 66, 0.18);
    padding: 0.45rem 0.55rem 0.55rem;
    border: 1px solid var(--line);
  }

  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0.2rem;
    border: 0;
    background: transparent;
    color: var(--ink-muted);
    font: inherit;
    font-size: 0.62rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0.85rem;
  }

  .dock-item svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .dock-item.is-active {
    color: var(--petrol);
    background: rgba(201, 162, 39, 0.16);
  }

  .dock-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    margin: -1.15rem auto 0;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(12, 61, 66, 0.14);
    overflow: hidden;
  }

  .dock-logo img {
    width: 2.6rem;
    height: 2.6rem;
    object-fit: contain;
  }

  .mobile-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(7, 44, 48, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }

  .mobile-sheet.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-sheet[hidden] {
    display: none;
  }

  .mobile-sheet.is-open[hidden] {
    display: block;
  }

  .sheet-panel {
    position: absolute;
    inset: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.1rem 1.4rem;
    transform: translateY(8%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }

  .mobile-sheet.is-open .sheet-panel {
    transform: translateY(0);
    opacity: 1;
  }

  .sheet-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .sheet-logo img {
    height: 2.8rem;
    width: auto;
  }

  .sheet-close {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #f3f6f5;
    position: relative;
    cursor: pointer;
  }

  .sheet-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1rem;
    height: 2px;
    background: var(--petrol);
    display: block;
  }

  .sheet-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .sheet-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .sheet-nav {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    overflow: auto;
  }

  .sheet-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--petrol);
    background: #fff;
    opacity: 0;
    transform: translateY(-14px);
    transition: background 0.2s, border-color 0.2s, opacity 0.45s var(--ease), transform 0.45s var(--ease);
  }

  .mobile-sheet.is-open .sheet-link {
    opacity: 1;
    transform: none;
    transition-delay: 0.1s;
  }

  .sheet-link.is-active {
    background: rgba(201, 162, 39, 0.14);
    border-color: rgba(201, 162, 39, 0.45);
    color: var(--gold-deep);
  }

  .sheet-link span {
    color: var(--ink-muted);
    font-size: 1.2rem;
  }

  .sheet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 1.25rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s var(--ease) 0.38s, transform 0.45s var(--ease) 0.38s;
  }

  .mobile-sheet.is-open .sheet-actions {
    opacity: 1;
    transform: none;
  }

  .sheet-actions .btn {
    width: 100%;
  }

  .sheet-actions .btn-outline {
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .site-nav,
  .btn-qr-nav {
    animation: none;
    opacity: 1;
  }
}

/* Hero — full-bleed photo */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: var(--petrol-deep);
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 44, 48, 0.28) 0%, rgba(7, 44, 48, 0.42) 45%, rgba(7, 44, 48, 0.82) 100%);
  pointer-events: none;
}

/* Şef + şiş fotoğrafı: sağda aksiyon, solda metin alanı */
.hero-chef {
  min-height: min(94vh, 820px);
}

.hero-chef .hero-media-chef {
  background-image: var(--hero-desk);
  background-position: 76% center;
  background-size: cover;
  animation: none;
  transform: none;
}

.hero-chef .hero-media::after {
  background:
    linear-gradient(
      105deg,
      rgba(5, 28, 32, 0.88) 0%,
      rgba(5, 28, 32, 0.72) 28%,
      rgba(5, 28, 32, 0.28) 52%,
      rgba(5, 28, 32, 0.12) 68%,
      rgba(5, 28, 32, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(5, 28, 32, 0.15) 0%, rgba(5, 28, 32, 0.55) 100%);
}

@media (max-width: 720px) {
  .hero-chef {
    min-height: min(88vh, 640px);
    align-items: end;
  }

  .hero-chef .hero-media-chef {
    /* Mobilde kırpılmış görsel: şef + döner net */
    background-image: var(--hero-mob);
    background-position: center 22%;
    background-size: cover;
  }

  .hero-chef .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 28, 32, 0.25) 0%, rgba(5, 28, 32, 0.35) 35%, rgba(5, 28, 32, 0.92) 100%);
  }

  .hero-chef .hero-content-left {
    text-align: left;
    align-items: flex-start;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-chef .hero-content-left .hero-title {
    max-width: 14ch;
    font-size: clamp(2.2rem, 11vw, 3rem);
  }
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.06) translate(-1%, 0.8%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.hero-content-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-left {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6rem;
  padding-bottom: 4.5rem;
}

.hero-content-left .hero-title {
  max-width: 12ch;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.hero-content-left .hero-sub {
  max-width: 28ch;
}

.hero-content-left .hero-actions {
  justify-content: flex-start;
}

.hero-content-left .btn-ghost {
  color: #fff;
  border-color: rgba(240, 217, 120, 0.55);
}

.hero-content-left .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #f0d978;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: #fff;
  max-width: 16ch;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.35s forwards;
}

.hero-sub {
  margin: 0 0 1.75rem;
  color: rgba(243, 246, 245, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 36ch;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.55s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  opacity: 0;
  animation: rise 0.85s var(--ease) 0.75s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(1.4rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-title,
  .hero-sub,
  .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Scroll reveal — üstten düşme, birlikte */
[data-reveal-child],
.feature-item,
.photo-strip figure {
  opacity: 0;
  transform: translateY(-1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal-child].is-in,
.feature-item.is-in,
.photo-strip figure.is-in {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] .split-media {
  opacity: 0;
  transform: translateY(-1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-in .split-media {
  opacity: 1;
  transform: none;
  transition-delay: 0.08s;
}

.cta-band[data-reveal] > * {
  opacity: 0;
  transform: translateY(-1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.cta-band[data-reveal].is-in > * {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.section-head[data-reveal] > * {
  opacity: 0;
  transform: translateY(-1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.section-head[data-reveal].is-in > * {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

/* Split photo + text sections */
.split-section {
  display: grid;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }
  .split-reverse .split-media { order: 2; }
  .split-reverse .split-copy { order: 1; }
}

.split-media {
  min-height: 360px;
  overflow: hidden;
  background: var(--petrol-mist);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.split-section:hover .split-media img {
  transform: scale(1.04);
}

@media (min-width: 900px) {
  .split-media,
  .split-media img {
    min-height: 560px;
  }
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--petrol-deep);
}

@media (min-width: 720px) {
  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding: 0.65rem;
  }
}

.photo-strip figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.photo-strip figure:hover img {
  transform: scale(1.05);
}

@media (min-width: 900px) {
  .photo-strip figure,
  .photo-strip img {
    min-height: 280px;
    max-height: 360px;
  }
}

.promo-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.5rem;
  background: #fff;
}

.promo-band-head {
  margin-bottom: 2rem;
  text-align: center;
}

.promo-band-head .section-title {
  margin-bottom: 0;
}

.promo-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .promo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.promo-card {
  margin: 0;
  overflow: hidden;
  background: var(--petrol-deep);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 18px 40px rgba(12, 61, 66, 0.12);
  display: block;
  color: inherit;
  text-decoration: none;
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}

.promo-card:hover img {
  transform: scale(1.03);
}

.promo-card-ice {
  background: linear-gradient(180deg, #f7faf6, #eef5ee);
}

.promo-note {
  margin: 1.5rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.promo-note a {
  color: var(--gold-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(154, 123, 26, 0.35);
}

.promo-note a:hover {
  color: var(--petrol);
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.5rem;
  position: relative;
}

@media (min-width: 900px) {
  .split-copy {
    padding: 3.5rem 3.5rem;
  }
}

.split-copy .section-text {
  margin-bottom: 1.75rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--petrol);
  background: transparent;
  border: 1px solid var(--petrol);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-outline:hover {
  background: var(--petrol);
  color: #fff;
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold-grad);
  color: var(--petrol-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent;
  color: #f3f6f5;
  border-color: rgba(224, 195, 90, 0.45);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.section .btn-ghost {
  color: var(--petrol);
  border-color: var(--line);
}

.section .btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.75rem;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--petrol);
}

.section-text {
  max-width: 42ch;
  color: var(--ink-muted);
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

.story {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .story { grid-template-columns: 1.1fr 0.9fr; }
}

.story-visual {
  min-height: 320px;
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.2), transparent 45%),
    linear-gradient(to top, rgba(7, 44, 48, 0.55), transparent 60%),
    linear-gradient(160deg, var(--petrol-mid), var(--petrol-deep));
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 16px 40px rgba(12, 61, 66, 0.12);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  position: relative;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 18% 16%;
  background: url("../img/logo-on-dark.png") center / contain no-repeat;
  opacity: 0.95;
}

.story-visual.is-in { opacity: 1; transform: none; }

.featured-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .featured-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-item {
  border-top: 2px solid transparent;
  border-image: var(--gold-grad) 1;
  background: var(--surface);
  padding: 1.15rem 1rem 1.25rem;
  box-shadow: 0 8px 24px rgba(12, 61, 66, 0.06);
}

.feature-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1rem;
  background: var(--petrol-mist);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
  font-weight: 600;
  color: var(--petrol);
}

.feature-item .price {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-item p {
  margin: 0.5rem 0 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.showcase-section {
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}

.showcase-ice {
  background: linear-gradient(180deg, rgba(12, 61, 66, 0.035), transparent 42%);
}

.showcase-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.quality-section {
  padding-top: 1rem;
}

.quality-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 1.75rem;
}

@media (min-width: 640px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .quality-grid { grid-template-columns: repeat(4, 1fr); }
}

.quality-card {
  padding: 1.35rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(12, 61, 66, 0.05);
}

.quality-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--petrol);
}

.quality-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.quality-leaf { border-color: rgba(47, 122, 74, 0.28); background: linear-gradient(165deg, #eef8f1, #fff 55%); }
.quality-ban { border-color: rgba(196, 92, 38, 0.28); background: linear-gradient(165deg, #fff4ec, #fff 55%); }
.quality-milk { border-color: rgba(61, 126, 166, 0.28); background: linear-gradient(165deg, #eef6fc, #fff 55%); }
.quality-beet { border-color: rgba(201, 162, 39, 0.35); background: linear-gradient(165deg, #fbf6e8, #fff 55%); }

.cta-band {
  margin: 2rem 1.5rem 0;
  padding: 3.5rem 1.5rem;
  background:
    linear-gradient(125deg, rgba(201, 162, 39, 0.15), transparent 40%),
    linear-gradient(160deg, var(--petrol) 0%, var(--petrol-deep) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  text-align: center;
  color: #f3f6f5;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.75rem;
  color: var(--gold-bright);
}

.cta-band p {
  color: rgba(243, 246, 245, 0.8);
  margin: 0 0 1.5rem;
}

.contact-block {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .contact-block { grid-template-columns: 1fr 1fr; }
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 0.5rem 1.25rem;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child { border-bottom: 0; }

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
}

.page-hero {
  padding: 4rem 1.5rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 0.75rem;
  line-height: 1.05;
  color: var(--petrol);
}

.page-hero p {
  color: var(--ink-muted);
  max-width: 40ch;
  margin: 0;
  font-size: 1.1rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--petrol-deep);
  color: rgba(243, 246, 245, 0.85);
  border-top: 1px solid rgba(201, 162, 39, 0.28);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.25rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 2rem;
  }
}

@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.6fr 0.9fr 0.85fr 1.15fr;
    gap: 2.5rem;
  }
}

.footer-logo {
  height: clamp(3.8rem, 8vw, 5.25rem);
  width: auto;
  max-width: min(440px, 100%);
  margin: 0 0 1.15rem;
  object-fit: contain;
  background: transparent;
  display: block;
}

.footer-about-text {
  margin: 0 0 1rem;
  color: rgba(243, 246, 245, 0.72);
  font-size: 0.95rem;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-social {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(224, 195, 90, 0.35);
  padding-bottom: 0.15rem;
}

.footer-social:hover { color: #f0d978; }

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-bright);
}

.footer-nav,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li,
.footer-contact li {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: rgba(243, 246, 245, 0.75);
}

.footer-nav a,
.footer-contact a {
  color: rgba(243, 246, 245, 0.8);
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(243, 246, 245, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(243, 246, 245, 0.55);
  text-align: center;
}

/* Dondurma sayfası */
.ice-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
}

@media (min-width: 900px) {
  .ice-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
  }
}

.ice-hero .section-title {
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.ice-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.ice-badges span {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.ice-hero-media {
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 18px 40px rgba(12, 61, 66, 0.12);
}

.ice-hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.ice-bubbles-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.ice-bubbles {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .ice-bubbles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .ice-bubbles {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
  }
}

.ice-bubble {
  position: relative;
  padding: 1.6rem 1.2rem 1.4rem;
  border-radius: 1.75rem;
  text-align: center;
  overflow: hidden;
  border: 2px solid transparent;
  box-shadow: 0 14px 32px rgba(12, 61, 66, 0.1);
  background: #fff;
}

.ice-bubble::before {
  content: "";
  position: absolute;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  top: -2.2rem;
  right: -1.8rem;
  opacity: 0.22;
  background: currentColor;
}

.ice-bubble::after {
  content: "";
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  bottom: 0.8rem;
  left: 0.7rem;
  opacity: 0.14;
  background: currentColor;
}

.ice-bubble-milk { color: #3d7ea6; background: linear-gradient(160deg, #eaf5fc, #fff 55%); border-color: rgba(61, 126, 166, 0.25); }
.ice-bubble-ban { color: #c45c26; background: linear-gradient(160deg, #fff1e8, #fff 55%); border-color: rgba(196, 92, 38, 0.25); }
.ice-bubble-leaf { color: #2f7a4a; background: linear-gradient(160deg, #e8f7ee, #fff 55%); border-color: rgba(47, 122, 74, 0.25); }
.ice-bubble-beet { color: #9a3d55; background: linear-gradient(160deg, #fceef2, #fff 55%); border-color: rgba(154, 61, 85, 0.25); }

.ice-bubble-icon {
  position: relative;
  z-index: 1;
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.ice-bubble-icon svg {
  width: 2.35rem;
  height: 2.35rem;
}

.ice-bubble h3,
.ice-bubble p {
  position: relative;
  z-index: 1;
}

.ice-bubble h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--petrol);
}

.ice-bubble p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.ice-flavor {
  position: relative;
  padding: 1.45rem 1.1rem 1.25rem 1.1rem;
  background: linear-gradient(165deg, #fff 0%, var(--ice-tint, #f7faf9) 100%);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  min-height: 168px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 61, 66, 0.05);
}

.ice-flavor.has-photo {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  min-height: 0;
  padding: 1rem 1.1rem;
}

.ice-flavor-photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 50% 40%, #f7fbfa 0%, #e8f1f0 70%, #d5e4e3 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
  grid-column: 1;
  grid-row: 1 / span 4;
}

.ice-flavor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.ice-flavor.has-photo .ice-flavor-num,
.ice-flavor.has-photo h3,
.ice-flavor.has-photo p {
  grid-column: 2;
}

.ice-flavor.has-photo .ice-flavor-num { margin-bottom: 0.2rem; }
.ice-flavor.has-photo h3 { margin-bottom: 0.25rem; }

.ice-flavor::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ice-glow, rgba(201, 162, 39, 0.18)), transparent 70%);
  pointer-events: none;
}

.ice-flavor.has-photo::before { display: none; }

.ice-scoop-wrap {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 3.4rem;
  height: 4.2rem;
  pointer-events: none;
}

.ice-scoop {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2.55rem;
  height: 2.55rem;
  margin-left: -1.275rem;
  border-radius: 50%;
  box-shadow: inset -4px -6px 10px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.ice-scoop::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 0.4rem;
  width: 0.7rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.ice-cone {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 0;
  margin-left: -0.85rem;
  border-left: 0.85rem solid transparent;
  border-right: 0.85rem solid transparent;
  border-top: 1.55rem solid #c9843a;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}

.ice-tone-pistachio {
  --ice-tint: #f3f9eb;
  --ice-glow: rgba(127, 173, 74, 0.28);
}
.ice-tone-melon {
  --ice-tint: #fff8e8;
  --ice-glow: rgba(240, 180, 41, 0.28);
}
.ice-tone-berry {
  --ice-tint: #fff0f4;
  --ice-glow: rgba(232, 93, 138, 0.25);
}
.ice-tone-plain {
  --ice-tint: #fffaf2;
  --ice-glow: rgba(232, 213, 176, 0.35);
}
.ice-tone-choco {
  --ice-tint: #f7f0ea;
  --ice-glow: rgba(74, 44, 26, 0.2);
}
.ice-tone-caramel {
  --ice-tint: #fff6e8;
  --ice-glow: rgba(198, 134, 43, 0.28);
}
.ice-tone-lemon {
  --ice-tint: #fffce8;
  --ice-glow: rgba(232, 209, 46, 0.3);
}

.ice-tone-pistachio .ice-scoop { background: linear-gradient(145deg, #c8e6a0, #7fad4a); }
.ice-tone-melon .ice-scoop { background: linear-gradient(145deg, #ffe29a, #f0b429); }
.ice-tone-berry .ice-scoop { background: linear-gradient(145deg, #ffb3c7, #e85d8a); }
.ice-tone-plain .ice-scoop { background: linear-gradient(145deg, #fff8ea, #f0e0c0); }
.ice-tone-choco .ice-scoop { background: linear-gradient(145deg, #8b5a3c, #4a2c1a); }
.ice-tone-caramel .ice-scoop { background: linear-gradient(145deg, #f0c27a, #c6862b); }
.ice-tone-lemon .ice-scoop { background: linear-gradient(145deg, #fff3a0, #e8d12e); }

.ice-flavor-grid-7 {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .ice-flavor-grid-7 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .ice-flavor-grid-7 {
    grid-template-columns: repeat(3, 1fr);
  }
  .ice-flavor-grid-7 .ice-flavor:last-child {
    grid-column: 2;
  }
}

.ice-promo-band {
  background: linear-gradient(180deg, #eef6fb 0%, #fff 55%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ice-flavor-num {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: var(--gold-deep);
  margin-bottom: 0.45rem;
}

.ice-flavor h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--petrol);
}

.ice-flavor p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  max-width: 22ch;
}

/* Kurumsal / yasal sayfalar */
.legal-page {
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem 4rem;
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-card {
  margin-top: 1.5rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--petrol);
}

.legal-card ol {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.legal-card li + li { margin-top: 0.45rem; }

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.legal-prose h2 {
  margin: 1.75rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--petrol);
}

.legal-prose p,
.legal-prose li {
  color: var(--ink-muted);
  line-height: 1.6;
}

.legal-prose ul {
  padding-left: 1.15rem;
}

.legal-prose a {
  color: var(--petrol);
  font-weight: 700;
}

.legal-updated {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.site-form {
  margin-top: 1.25rem;
  padding: 1.35rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.site-form label {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--petrol);
}

.site-form input,
.site-form textarea,
.site-form select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fbfcfc;
}

.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
  outline: 2px solid rgba(201, 162, 39, 0.45);
  border-color: rgba(201, 162, 39, 0.55);
  background: #fff;
}

.site-form textarea { resize: vertical; min-height: 120px; }

.site-form .form-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .site-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.site-form .legal-actions {
  margin-top: 1rem;
}

.form-alert {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.form-alert-ok {
  background: rgba(45, 106, 79, 0.12);
  border: 1px solid #2d6a4f;
  color: #1b4332;
}

.form-alert-err {
  background: rgba(155, 34, 38, 0.1);
  border: 1px solid #9b2226;
  color: #7a171a;
}
