/* ==========================================================================
   Güverte Sofrası — Gastronomi · Mavi Yolculuk
   Palette: warm sand + tomato red + olive green + deep Aegean sea
   Headings: Fraunces italic (opsz) · Body: Work Sans
   ========================================================================== */

:root {
  --bg: #F3EDE3;
  --surface: #FFFFFF;
  --surface-2: #EFE5D5;
  --surface-3: #E8DBC6;
  --ink: #2A211A;
  --ink-soft: #6B5C4C;
  --ink-faint: #8B7C6B;
  --accent: #B23A2E;      /* domates kırmızısı */
  --accent-dark: #8E2C22;
  --accent-2: #6E8B3D;    /* zeytin yeşili */
  --accent-2-dark: #566E2E;
  --line: rgba(42, 33, 26, 0.12);
  --line-strong: rgba(42, 33, 26, 0.24);
  --gold: #B8874A;
  --sea: #235E6B;        /* Ege mavisi — mavi yolculuk */
  --sea-deep: #16414B;
  --sea-soft: #6FA0A8;

  /* type system */
  --font-display: 'Fraunces', 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', system-ui, -apple-system, sans-serif;

  --header-h: 76px;
  --maxw: 1400px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-2: cubic-bezier(.4, 0, .2, 1);

  --shadow-soft: 0 18px 40px -28px rgba(42, 33, 26, 0.45);
  --shadow-warm: 0 24px 60px -30px rgba(142, 44, 34, 0.4);
  --shadow-lift: 0 38px 80px -40px rgba(142, 44, 34, 0.55), 0 8px 24px -18px rgba(42, 33, 26, 0.3);
  --shadow-sea: 0 34px 74px -40px rgba(22, 65, 75, 0.5);

  interpolate-size: allow-keywords;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; transition: color .24s var(--ease-2); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
strong { font-weight: 600; }

.long, .long a { word-break: break-word; overflow-wrap: anywhere; }

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
main { padding-top: var(--header-h); }
section { position: relative; }
.section-pad { padding: clamp(56px, 8vw, 118px) 0; }
.section-pad-sm { padding: clamp(40px, 6vw, 80px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .24s var(--ease-2), color .24s var(--ease-2),
              transform .24s var(--ease-2), box-shadow .24s var(--ease-2), border-color .24s var(--ease-2);
  will-change: transform;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-dark); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-warm);
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-2px);
}
.btn-olive { background: var(--accent-2); color: #fff; border-color: var(--accent-2); }
.btn-olive:hover, .btn-olive:focus-visible { background: var(--accent-2-dark); color: #fff; transform: translateY(-2px); }
.btn .arrow { transition: transform .24s var(--ease-2); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--bg);
  padding: 10px 18px; border-radius: 8px; z-index: 2000;
  transition: top .2s var(--ease-2);
}
.skip-link:focus { top: 12px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 237, 227, 0.92);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background .24s var(--ease-2), box-shadow .24s var(--ease-2),
              height .24s var(--ease-2), border-color .24s var(--ease-2);
}
.site-header.is-scrolled {
  background: rgba(243, 237, 227, 0.98);
  box-shadow: 0 8px 24px -16px rgba(42, 33, 26, 0.28);
  border-color: var(--line);
  height: 66px;
}
.header-inner {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; flex-shrink: 0;
  color: var(--accent);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 21px; color: var(--ink); letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--font-body); font-style: normal; font-weight: 600;
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent-2); margin-top: 3px;
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-desktop a {
  position: relative; font-weight: 500; font-size: 15px; color: var(--ink-soft);
  padding: 6px 0;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--accent); transition: width .28s var(--ease);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--ink); }
.header-cta { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
}
.nav-desktop .nav-cta::after { display: none; }

/* hamburger */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; margin-right: -6px;
  background: transparent; border: 0; cursor: pointer; z-index: 1100; position: relative;
}
.nav-toggle span {
  display: block; height: 2px; width: 24px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease-2);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* ---------- drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(20, 14, 10, 0.55);
  opacity: 0; visibility: hidden; transition: opacity .24s var(--ease-2), visibility .24s; z-index: 1040;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.2, .7, .2, 1);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 12px) 28px 32px;
  box-shadow: -20px 0 60px -30px rgba(42, 33, 26, 0.5);
  overflow-y: auto;
}
.drawer.is-open { transform: translateX(0); }
.drawer nav { display: flex; flex-direction: column; gap: 4px; }
.drawer a {
  font-family: var(--font-display); font-style: italic; font-size: 24px; font-weight: 500;
  color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line);
}
.drawer a:hover, .drawer a.is-active { color: var(--accent); }
.drawer .drawer-cta {
  margin-top: 24px; font-family: var(--font-body); font-style: normal;
  border-bottom: 0; text-align: center;
}
.drawer a.nav-cta, .drawer .drawer-cta {
  background: var(--accent); color: #fff !important; border-radius: 999px;
  padding: 15px 20px; font-size: 15px; font-weight: 600;
}
.drawer a.nav-cta:hover, .drawer .drawer-cta:hover { background: var(--accent-dark); color: #fff !important; }
.drawer-meta { margin-top: auto; padding-top: 28px; font-size: 13.5px; color: var(--ink-soft); }
.drawer-meta a { font-family: var(--font-body); font-style: normal; font-size: 13.5px; border: 0; padding: 2px 0; display: inline; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 18, 12, 0.42) 0%, rgba(30, 18, 12, 0.12) 34%, rgba(30, 18, 12, 0.66) 100%);
}
/* steam / heat signature */
.hero-steam { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-steam span {
  position: absolute; bottom: 8%; width: 120px; height: 320px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 248, 236, 0.28), rgba(255, 248, 236, 0) 68%);
  filter: blur(14px);
  opacity: 0;
  animation: steamRise 9s ease-in-out infinite;
}
.hero-steam span:nth-child(1) { left: 22%; animation-delay: 0s; }
.hero-steam span:nth-child(2) { left: 44%; width: 90px; animation-delay: 2.4s; }
.hero-steam span:nth-child(3) { left: 63%; width: 140px; animation-delay: 4.1s; }
.hero-steam span:nth-child(4) { left: 78%; width: 80px; animation-delay: 1.2s; }
@keyframes steamRise {
  0% { opacity: 0; transform: translateY(40px) scaleX(1); }
  25% { opacity: .8; }
  60% { opacity: .5; }
  100% { opacity: 0; transform: translateY(-180px) scaleX(1.5); }
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 8vw, 96px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.24em; text-transform: uppercase; color: #f3d9c6; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 30px; height: 1px; background: #f3d9c6; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 0.98;
  max-width: 14ch;
  margin-bottom: 22px;
  text-shadow: 0 4px 40px rgba(20, 10, 6, 0.4);
}
.hero-sub {
  max-width: 46ch; font-size: clamp(1.05rem, 2.2vw, 1.35rem); color: #f4e8dc; margin-bottom: 32px;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 34px;
  font-size: 13px; color: #f0ddca;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent-2); flex-shrink: 0; }

/* scroll hint */
.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: #f0ddca;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 34px;
  background: linear-gradient(#f0ddca, transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .3; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ==========================================================================
   Reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
html.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-media img { animation: none; }
  .hero-steam span { animation: none; opacity: .3; }
}

/* image zoom-on-reveal */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 1.1s var(--ease); transform: scale(1.06); }
.img-zoom.is-in img { transform: scale(1); }

/* ==========================================================================
   Section heading block
   ========================================================================== */
.sec-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.sec-head p { color: var(--ink-soft); font-size: clamp(1.02rem, 1.8vw, 1.15rem); }

/* ==========================================================================
   Intro / cover-table split
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split.reverse > .split-media { order: 2; } }
.split-media {
  border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body .stat-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px; }
.stat { }
.stat b {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--accent); display: block; line-height: 1;
}
.stat span { font-size: 13px; color: var(--ink-soft); letter-spacing: .02em; }

/* ==========================================================================
   Full-bleed image band
   ========================================================================== */
.image-band {
  position: relative; height: clamp(340px, 52vw, 560px); overflow: hidden;
  display: flex; align-items: center;
}
.image-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,18,12,.7), rgba(30,18,12,.15)); }
.image-band .band-caption { position: relative; z-index: 2; color: #fff; max-width: 560px; }
.image-band .band-caption h3 { color: #fff; font-size: clamp(1.8rem, 4vw, 3rem); }
.image-band .band-caption p { color: #f2e6d9; }

/* ==========================================================================
   Menu gallery (günün menüsü)
   ========================================================================== */
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}
.menu-card {
  position: relative; background: var(--surface); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); }
.menu-card-media { position: relative; aspect-ratio: 5 / 4; overflow: hidden; }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.menu-card:hover .menu-card-media img { transform: scale(1.05); }
.menu-card-media .shine {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.28) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.menu-card:hover .menu-card-media .shine { transform: translateX(120%); }
.price-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 15px;
  background: rgba(255, 250, 243, 0.95); color: var(--accent-dark);
  padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(178, 58, 46, 0.25);
  box-shadow: 0 6px 14px -8px rgba(42,33,26,.4);
}
.menu-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-card-body .tag {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 8px;
}
.menu-card-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.menu-card-body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }

/* ==========================================================================
   Chef corner (şefin köşesi) — editorial
   ========================================================================== */
.chef {
  display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 60px); align-items: center;
}
@media (min-width: 920px) { .chef { grid-template-columns: 0.85fr 1.15fr; } }
.chef-portrait { position: relative; }
.chef-portrait .frame {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow-soft);
}
.chef-portrait .frame img { width: 100%; height: 100%; object-fit: cover; }
.chef-portrait .badge {
  position: absolute; bottom: -18px; right: -10px; background: var(--accent);
  color: #fff; padding: 14px 20px; border-radius: 12px; box-shadow: var(--shadow-warm);
  max-width: 200px;
}
.chef-portrait .badge b { font-family: var(--font-display); font-style: italic; display: block; font-size: 1.1rem; }
.chef-portrait .badge span { font-size: 12px; opacity: .9; }
.chef-quote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.28; color: var(--ink);
  border-left: 3px solid var(--accent); padding-left: 22px; margin: 0 0 26px;
}
.chef-sign { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.chef-sign .who b { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; }
.chef-sign .who span { display: block; font-size: 13px; color: var(--ink-soft); }

/* ==========================================================================
   Feature / route breaks (bağ & pazar molaları)
   ========================================================================== */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(18px, 2.4vw, 26px);
}
.feature-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(110,139,61,.4); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); margin-bottom: 18px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; }
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; }

/* ==========================================================================
   Route timeline (editorial, non-grid)
   ========================================================================== */
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--accent), var(--accent-2)); opacity: .35;
}
.tl-item { position: relative; padding: 0 0 34px 58px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--accent); display: grid; place-items: center;
  color: var(--accent); font-family: var(--font-display); font-style: italic; font-size: 12px; font-weight: 700;
}
.tl-item h3 { font-size: 1.35rem; margin-bottom: 4px; }
.tl-item .when { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); font-weight: 600; margin-bottom: 8px; display: block; }
.tl-item p { color: var(--ink-soft); font-size: 15px; margin-bottom: 0; }

/* ==========================================================================
   Pricing (masa ayırt / packages)
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 2.6vw, 30px); align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.price-card.featured { border: 1.5px solid var(--accent); box-shadow: var(--shadow-warm); position: relative; }
.price-card.featured::before {
  content: "En çok tercih edilen"; position: absolute; top: -13px; left: 28px;
  background: var(--accent); color: #fff; font-family: var(--font-body); font-size: 11px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px;
}
.price-card .p-name { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-bottom: 4px; }
.price-card .p-desc { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; min-height: 40px; }
.price-card .p-amount { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.price-card .p-amount small { font-size: 1rem; font-weight: 500; color: var(--ink-soft); }
.price-card .p-unit { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; }
.price-card ul.incl { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price-card ul.incl li { font-size: 14.5px; padding-left: 26px; position: relative; color: var(--ink-soft); }
.price-card ul.incl li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 9px;
  border-left: 2px solid var(--accent-2); border-bottom: 2px solid var(--accent-2); transform: rotate(-45deg);
}
.price-card ul.incl li.excl { color: var(--ink-faint); }
.price-card ul.incl li.excl::before { border: 0; content: "—"; top: 0; color: var(--ink-faint); font-weight: 700; }
.price-note { text-align: center; margin-top: 26px; font-size: 13px; color: var(--ink-faint); font-style: italic; }

/* ==========================================================================
   Reservation / CTA band
   ========================================================================== */
.cta-band { background: var(--ink); color: #fbf3e8; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #e7d8c6; }
.cta-inner { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
@media (min-width: 900px) { .cta-inner { grid-template-columns: 1.2fr .8fr; } }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--surface); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 620px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span.lab {
  font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--ink);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  padding: 13px 15px; width: 100%; transition: border-color .2s var(--ease-2), box-shadow .2s var(--ease-2);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(178,58,46,.14);
}
.field.kvkk { flex-direction: row; align-items: flex-start; gap: 11px; }
.field.kvkk label { font-weight: 400; font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 18px; height: 18px; min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0; accent-color: var(--accent); flex-shrink: 0;
}
.form-actions { margin-top: 22px; }
.form-actions .btn { width: 100%; justify-content: center; }
@media (min-width: 620px) { .form-actions .btn { width: auto; } }
.hp { position: absolute; left: -9999px; opacity: 0; width: 1px; height: 1px; overflow: hidden; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-hero { background: var(--surface-2); }
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.channel-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.channel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.channel-ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface-2); color: var(--accent); margin-bottom: 16px;
}
.channel-ico svg { width: 24px; height: 24px; }
.channel-card h3 { font-size: 1.15rem; margin-bottom: 5px; }
.channel-card a, .channel-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 3px; word-break: break-word; }
.channel-card a:hover { color: var(--accent); }
.channel-card .sub { font-size: 12.5px; color: var(--ink-faint); }

.hours-grid { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.hours-row { display: flex; justify-content: space-between; padding: 13px 20px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row:nth-child(odd) { background: var(--surface); }
.hours-row:nth-child(even) { background: var(--surface-2); }
.hours-row.today { background: rgba(178,58,46,.08); font-weight: 600; }
.hours-row .day { color: var(--ink); }
.hours-row .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-style: normal; font-size: 26px; color: var(--accent);
  transition: transform .3s var(--ease-2);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .answer {
  height: 0; padding: 0 0; overflow: hidden;
  transition: height .36s var(--ease-2), padding-block-end .36s var(--ease-2);
}
.faq-item .answer p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }
.faq-item[open] .answer { height: auto; padding-block-end: 24px; }
@media (prefers-reduced-motion: reduce) { .faq-item .answer { transition: none; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column;
}
.testi-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }
.testi-card blockquote {
  margin: 0 0 18px; font-size: 15.5px; color: var(--ink); line-height: 1.6; flex: 1;
}
.testi-card .who { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 14px; }
.testi-card .who b { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.testi-card .who span { font-size: 12.5px; color: var(--ink-soft); }

/* ==========================================================================
   Notes / recent
   ========================================================================== */
.notes-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.notes-list li { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.notes-list time { font-size: 12.5px; letter-spacing: .06em; color: var(--accent-2); font-weight: 600; flex-shrink: 0; width: 110px; }
.notes-list p { margin: 0; font-size: 15px; }

/* ==========================================================================
   Manifesto quote block
   ========================================================================== */
.manifesto { background: var(--accent); color: #fff; }
.manifesto .q {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.6rem, 4.4vw, 3rem); line-height: 1.24; max-width: 20ch; margin: 0 auto; text-align: center;
}
.manifesto .cite { text-align: center; margin-top: 20px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

/* ==========================================================================
   Trust strip / badges
   ========================================================================== */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--ink-soft);
}
.badge svg { width: 15px; height: 15px; color: var(--accent-2); }

/* ==========================================================================
   Tables
   ========================================================================== */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0;
  border: 1px solid var(--line); border-radius: 10px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; border-collapse: collapse; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table th, table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 14.5px; }
table th { background: var(--surface-2); font-weight: 600; font-size: 13px; }
table tr:last-child td { border-bottom: 0; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  background: var(--surface-2); border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 84px) 0 clamp(32px, 4vw, 52px);
}
.page-hero .inner { max-width: 780px; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 5.4vw, 3.3rem); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); font-size: clamp(1.02rem, 1.8vw, 1.18rem); margin-bottom: 0; max-width: 62ch; }
.crumbs { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; letter-spacing: .02em; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--accent); }
.crumbs span { margin: 0 8px; opacity: .6; }

/* ==========================================================================
   Doc / legal pages
   ========================================================================== */
.doc { max-width: 748px; margin: 0 auto; }
.doc h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 46px; }
.doc h3 { font-size: 1.2rem; margin-top: 30px; }
.doc p, .doc li { color: var(--ink-soft); line-height: 1.75; }
.doc > p:first-of-type { margin-top: 0; }
.doc ul, .doc ol { margin: 0 0 1.1em; padding-left: 1.25em; }
.doc li { margin-bottom: .5em; }
.doc a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
.doc a:hover { color: var(--accent); }
.doc .updated { font-size: 13px; color: var(--ink-faint); margin-bottom: 30px; }
.toc { background: var(--surface-2); border-radius: 12px; padding: 24px 28px; margin-bottom: 34px; }
.toc ul { margin: 8px 0 0; }
.toc a { color: var(--accent-dark); }
.toc a:hover { color: var(--accent); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #221A14; color: #d8c9b8; padding: clamp(48px, 7vw, 84px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 34px; margin-bottom: 44px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #b8a894; font-size: 14.5px; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { font-family: var(--font-body); font-style: normal; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: #a5937f; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #d8c9b8; font-size: 14.5px; }
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: #b8a894; font-size: 14px; margin-bottom: 8px; word-break: break-word; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: 13px; color: #a5937f;
}
.footer-bottom a { color: #a5937f; }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 520px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 22px 24px; box-shadow: 0 24px 60px -20px rgba(42,33,26,.5);
  transform: translateY(140%); opacity: 0;
  transition: transform .28s var(--ease), opacity .24s var(--ease-2);
  z-index: 9999;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
@media (min-width: 720px) { .cookie-banner { left: 24px; right: auto; max-width: 420px; } }
.cookie-banner h3 { font-size: 1.2rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions button {
  flex: 1; min-width: 110px; min-height: 44px; border-radius: 999px; font-family: var(--font-body);
  font-weight: 600; font-size: 14px; cursor: pointer; border: 1.5px solid var(--line-strong);
  transition: background .2s var(--ease-2), color .2s var(--ease-2), border-color .2s;
}
.cookie-actions .c-accept { background: var(--accent); color: #fff; border-color: var(--accent); }
.cookie-actions .c-accept:hover { background: var(--accent-dark); color: #fff; }
.cookie-actions .c-reject { background: transparent; color: var(--ink); }
.cookie-actions .c-reject:hover { background: var(--surface-2); color: var(--ink); }
.cookie-actions .c-settings { background: transparent; color: var(--ink-soft); border-color: transparent; flex-basis: 100%; min-width: 0; }
.cookie-actions .c-settings:hover { color: var(--accent); }

/* cookie settings modal */
.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.is-open { display: flex; }
.cookie-modal-backdrop { position: absolute; inset: 0; background: rgba(20,14,10,.6); }
.cookie-modal-card {
  position: relative; background: var(--surface); border-radius: 16px; padding: clamp(24px,4vw,36px);
  max-width: 520px; width: 100%; box-shadow: var(--shadow-soft); max-height: 90vh; overflow-y: auto;
}
.cookie-modal-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.cookie-toggle { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cookie-toggle:last-of-type { border-bottom: 0; }
.cookie-toggle .ct-text b { font-size: 15px; display: block; }
.cookie-toggle .ct-text span { font-size: 13px; color: var(--ink-soft); }
.switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; margin-top: 3px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--line-strong); border-radius: 999px; transition: background .2s; cursor: pointer; }
.switch .slider::before { content: ""; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; }
.switch input:checked + .slider { background: var(--accent-2); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { background: var(--accent-2); opacity: .55; cursor: not-allowed; }
.cookie-modal-actions { margin-top: 24px; display: flex; justify-content: flex-end; gap: 10px; }

/* ==========================================================================
   404 / thank-you
   ========================================================================== */
.mini-hero {
  min-height: calc(70vh - var(--header-h)); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 60px 20px;
}
.mini-hero .big { font-size: clamp(4rem, 16vw, 9rem); color: var(--accent); line-height: 1; margin-bottom: 10px; }
.mini-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
.mini-hero p { max-width: 44ch; color: var(--ink-soft); margin-bottom: 28px; }

/* ==========================================================================
   Decorative spice particles (ambient)
   ========================================================================== */
.spice-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.spice-field i {
  position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent-2); opacity: .18;
  animation: spiceDrift 14s linear infinite;
}
.spice-field i:nth-child(3n) { background: var(--accent); width: 4px; height: 4px; }
.spice-field i:nth-child(2n) { background: var(--gold); }
@keyframes spiceDrift {
  0% { transform: translateY(20px) translateX(0); opacity: 0; }
  20% { opacity: .2; }
  100% { transform: translateY(-120px) translateX(30px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .spice-field { display: none; } }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 88vh; }
  .feature-card, .price-card, .channel-card, .testi-card, .menu-card-body { }
  .feature-icon { width: 46px; height: 46px; }
  .stat-row { gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: clamp(2rem, 10vw, 2.4rem); }
  .cookie-actions button { flex-basis: 100%; }
}

.scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--accent),var(--sea));z-index:9998;transition:width 80ms linear;pointer-events:none}

/* header-cta-padding-guard v1 */
.nav-desktop a.nav-cta, header a.nav-cta, .site-header a.nav-cta {
  padding: 10px 18px;
}

/* ==========================================================================
   ═══  PREMIUM ART-DIRECTION LAYER  ═══
   Fraunces display · warm Aegean sand + tomato + olive · deep-sea accent
   ========================================================================== */

/* ---------- display type polish ---------- */
h1, h2, h3, h4 { font-variation-settings: "SOFT" 0, "WONK" 0; }
.hero h1, .sec-head h2, .page-hero h1 { letter-spacing: -0.02em; }
.lead { line-height: 1.55; }

/* selection */
::selection { background: var(--accent); color: #fff; }

/* ---------- eyebrow: refined kicker with sea dot ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  gap: 12px;
}
.eyebrow::before {
  width: 30px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  height: 1.5px;
}
.sec-head.center .eyebrow::after {
  content: "";
  width: 30px; height: 1.5px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  display: inline-block;
}

/* ---------- section heading rhythm + index numerals ---------- */
.sec-head h2 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.02; }
.sec-head p { margin-top: 4px; }
.sec-head { position: relative; }
.sec-index {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .03em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.sec-index b { color: var(--accent); font-weight: 600; font-size: 15px; }

/* ---------- hairline / wave separators ---------- */
.sep {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: clamp(8px, 3vw, 30px) 0 0;
  color: var(--line-strong);
}
.sep::before, .sep::after {
  content: ""; height: 1px; flex: 1; max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.sep::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.sep svg { width: 34px; height: 20px; color: var(--sea); opacity: .8; flex-shrink: 0; }

/* ---------- buttons: crisper premium ---------- */
.btn { padding: 15px 28px; letter-spacing: .01em; }
.btn-primary { box-shadow: 0 10px 26px -16px rgba(178,58,46,.7); }
.btn-primary:hover, .btn-primary:focus-visible { box-shadow: var(--shadow-lift); }
.btn-sea { background: var(--sea); color: #fff; border-color: var(--sea); }
.btn-sea:hover, .btn-sea:focus-visible { background: var(--sea-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sea); }

/* ---------- reveal: smoother, blur-in ---------- */
.reveal { transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { transform: none; }

/* ---------- generic card lift unification ---------- */
.menu-card, .feature-card, .price-card, .testi-card, .channel-card {
  border-radius: var(--radius);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s var(--ease);
}
.menu-card:hover, .feature-card:hover, .price-card:hover, .testi-card:hover, .channel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

/* ---------- menu gallery: editorial polish + asymmetry ---------- */
.menu-grid { grid-template-columns: repeat(auto-fill, minmax(clamp(260px, 30%, 340px), 1fr)); }
.menu-card { border-color: rgba(42,33,26,.09); }
.menu-card-media { aspect-ratio: 4 / 3; }
.menu-card-media::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(28,18,12,.28));
}
.price-tag {
  top: auto; bottom: 14px; left: 14px;
  font-size: 15.5px; padding: 7px 15px;
  background: rgba(255,250,243,.94); backdrop-filter: blur(2px);
}
.menu-card-body { padding: 22px 24px 26px; }
.menu-card-body h3 { font-size: 1.5rem; }
.menu-card-body .tag { color: var(--sea); }
.menu-card-body .tag::before {
  content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; vertical-align: middle;
}
/* featured wide tile — breaks the uniform grid */
@media (min-width: 760px) {
  .menu-card.is-wide { grid-column: span 2; }
  .menu-card.is-wide .menu-card-media { aspect-ratio: 16 / 9; }
  .menu-card.is-wide .menu-card-body h3 { font-size: 1.8rem; }
}

/* ---------- feature cards: numbered, hairline top ---------- */
.feature-card { position: relative; padding: 32px 28px; overflow: hidden; }
.feature-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .45s var(--ease);
}
.feature-card:hover::before { width: 100%; }
.feature-icon {
  border-radius: 16px;
  background: linear-gradient(150deg, var(--surface-2), var(--surface-3));
  box-shadow: inset 0 0 0 1px rgba(42,33,26,.05);
}
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -14px rgba(178,58,46,.7); }
.feature-card h3 { font-size: 1.4rem; }

/* ---------- timeline: sea-to-tomato spine ---------- */
.timeline::before { background: linear-gradient(var(--sea), var(--accent-2), var(--accent)); opacity: .5; width: 2px; }
.tl-dot { border-color: var(--sea); color: var(--sea); box-shadow: 0 0 0 5px var(--surface-2); }
.tl-item h3 { font-size: 1.4rem; }
/* scroll-lit highlight (does NOT use reveal's is-in) */
.tl-item.is-lit .tl-dot { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.08); transition: transform .3s var(--ease); }

/* ---------- pricing: refined + featured elevation ---------- */
.price-card { padding: 34px 30px; border-color: rgba(42,33,26,.1); }
.price-card.featured { transform: none; }
.price-card.featured:hover { transform: translateY(-8px); }
@media (min-width: 900px) { .price-card.featured { transform: scale(1.03); } .price-card.featured:hover { transform: scale(1.03) translateY(-8px); } }
.price-card .p-name { font-size: 1.7rem; color: var(--sea-deep); }
.price-card .p-amount { font-size: 2.9rem; }
.price-card ul.incl li::before { border-color: var(--accent-2); }

/* ---------- testimonials: quote mark + polish ---------- */
.testi-card { position: relative; padding: 32px 30px; overflow: hidden; }
.testi-card::before {
  content: "\201C"; position: absolute; top: 6px; right: 20px;
  font-family: var(--font-display); font-style: italic; font-size: 6rem; line-height: 1;
  color: var(--accent); opacity: .1;
}
.testi-card blockquote { font-size: 16px; }
.testi-card .stars { letter-spacing: 3px; }

/* ---------- channel cards ---------- */
.channel-ico { background: linear-gradient(150deg, var(--surface-2), var(--surface-3)); border-radius: 14px; }
.channel-card:hover .channel-ico { background: var(--accent); color: #fff; transition: background .3s var(--ease); }

/* ---------- image band: refined caption ---------- */
.image-band::after { background: linear-gradient(100deg, rgba(20,42,48,.78), rgba(30,18,12,.35) 60%, rgba(30,18,12,.1)); }
.image-band .band-caption h3 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); }

/* ---------- manifesto: layered warmth ---------- */
.manifesto { background: var(--accent); position: relative; overflow: hidden; }
.manifesto::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 100% at 15% 0%, rgba(255,255,255,.12), transparent 60%),
    radial-gradient(50% 100% at 100% 100%, rgba(22,65,75,.35), transparent 55%);
  pointer-events: none;
}
.manifesto .container { position: relative; z-index: 1; }
.manifesto .q { line-height: 1.2; }

/* ---------- CTA band: sea depth ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(55% 90% at 100% 0%, rgba(35,94,107,.42), transparent 60%),
    radial-gradient(45% 80% at 0% 100%, rgba(178,58,46,.28), transparent 60%);
}
.cta-band .container { position: relative; z-index: 1; }

/* ---------- page hero: subtle depth ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface-2), var(--bg)); }
.page-hero::before {
  content: ""; position: absolute; right: -6%; top: -40%; width: 46%; height: 180%;
  background: radial-gradient(closest-side, rgba(35,94,107,.1), transparent 70%);
  pointer-events: none;
}

/* ---------- FAQ: refined rows ---------- */
.faq-item { border-color: rgba(42,33,26,.1); transition: padding .3s var(--ease); }
.faq-item summary { transition: color .24s var(--ease-2); }
.faq-item summary:hover { color: var(--accent); }
.faq-item[open] > summary { color: var(--accent-dark); }

/* ---------- footer: top hairline accent ---------- */
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--sea));
}

/* ---------- hero: harmonized kicker/scroll (photo untouched) ---------- */
.hero-eyebrow { letter-spacing: .28em; }
.hero h1 { font-weight: 600; }

/* ---------- stat numerals ---------- */
.stat b { letter-spacing: -.01em; }

/* ==========================================================================
   Motion safety for the premium layer
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .feature-card::before { transition: none; }
  .menu-card, .feature-card, .price-card, .testi-card, .channel-card { transition: none; }
  .tl-item.is-lit .tl-dot { transition: none; }
}

/* ==========================================================================
   Responsive polish
   ========================================================================== */
@media (max-width: 640px) {
  .sec-head h2 { font-size: clamp(1.9rem, 8.5vw, 2.5rem); }
  .menu-card-body h3, .feature-card h3, .tl-item h3 { font-size: 1.32rem; }
  .testi-card::before { font-size: 4.5rem; }
  .sep::before, .sep::after { max-width: 90px; }
}
@media (max-width: 400px) {
  .price-card .p-amount { font-size: 2.4rem; }
}
