/* ============================================================
   VADİ CATERING — Master Stylesheet
   ------------------------------------------------------------
   Premium corporate catering. Editorial, dark, fluid.
   ============================================================ */

/* ------------------ Reset + Tokens ------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color */
  --bg-1: #0e0e0e;
  --bg-2: #161616;
  --bg-card: #1a1a1a;
  --bg-cream: #f5f2ec;
  --bg-cream-2: #ece7dc;
  --ink: #ffffff;
  --ink-2: #e8e8e8;
  --ink-3: #a8a39a;
  --ink-dark: #111111;
  --ink-dark-2: #4a4a4a;
  --green: #3d6b4f;
  --green-deep: #294a37;
  --green-glow: rgba(61, 107, 79, 0.45);
  --gold: #c8963e;
  --gold-soft: #d8aa4f;
  --gold-deep: #9c7325;
  --gold-glow: rgba(200, 150, 62, 0.35);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(17, 17, 17, 0.10);

  /* Type */
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius / Shadow */
  --r-sm: 4px;
  --r: 8px;
  --r-lg: 14px;
  --r-xl: 22px;
  --shadow-card: 0 20px 40px -20px rgba(0, 0, 0, 0.5),
    0 4px 12px -4px rgba(0, 0, 0, 0.2);
  --shadow-lift: 0 30px 60px -25px rgba(0, 0, 0, 0.75),
    0 8px 24px -8px rgba(0, 0, 0, 0.3);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-1);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg-1);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--bg-1);
}

/* ------------------ Type Scale ------------------ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-weight: 500;
}

h4 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.gold {
  color: var(--gold);
}
.cream { background: var(--bg-cream); color: var(--ink-dark); }
.cream h1, .cream h2, .cream h3, .cream h4 { color: var(--ink-dark); }
.cream p { color: var(--ink-dark-2); }
.cream .eyebrow { color: var(--green); }
.cream .eyebrow::before { background: var(--green); }

p { color: var(--ink-2); }
.cream p { color: #3a3a3a; }

.lead { font-size: 1.15rem; line-height: 1.75; color: var(--ink-2); }
.cream .lead { color: #2a2a2a; }

/* ------------------ Layout ------------------ */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--tight { padding: clamp(60px, 4vw, 96px) 4vw; }

/* ------------------ Buttons ------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.5s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: #1a1300;
  box-shadow: 0 10px 30px -10px var(--gold-glow);
}
.btn--gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--gold-glow);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}
.btn--green {
  background: var(--green);
  color: #fff;
}
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn--dark {
  background: var(--bg-1);
  color: #fff;
}
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn .arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* Underline link */
.ulink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  padding-bottom: 4px;
}
.ulink::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transform-origin: left;
  transition: transform 0.5s var(--ease), opacity 0.3s ease;
}
.ulink:hover::after { transform: scaleX(1.1); opacity: 1; }

/* ------------------ Navigation ------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease),
    backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
}
.nav--scrolled {
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}
.nav__logo svg { height: 42px; width: auto; }
.logo-light {
  height: 42px;
  width: auto;
  color: #fff;
  filter: brightness(0) invert(1);
}
.nav__logo img.logo-light { height: 44px; }
.footer__brand img.logo-light { height: 56px; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__menu a {
  position: relative;
  font-size: 0.95rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  padding: 4px 0;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.nav__menu a:hover { color: #fff; }
.nav__menu a:hover::after,
.nav__menu a.is-active::after { transform: scaleX(1); }
.nav__menu a.is-active { color: #fff; }
.nav__cta {
  padding: 11px 22px;
  font-size: 0.95rem;
}
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.is-open span::after  { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(14,14,14,0.98);
  backdrop-filter: blur(20px);
  padding: 120px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ------------------ Hero (homepage) ------------------ */
.hero {
  position: relative;
  min-height: 130vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 18vh;
  padding-top: 140px;
}
.hero__bg {
  display: none;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
}
.hero__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 14, 14, 0.38);
  backdrop-filter: blur(12px);
  color: #fff;
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}
.hero__loader__inner {
  text-align: center;
  padding: 24px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(14, 14, 14, 0.72);
}
.hero__loader__percent {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.hero__loader__text {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.hero.is-loaded .hero__loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 60% at 30% 80%, rgba(61,107,79,0.25), transparent 60%),
    linear-gradient(180deg, rgba(14,14,14,0.45) 0%, rgba(14,14,14,0.2) 30%, rgba(14,14,14,0.85) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, rgba(14,14,14,0.28) 40%, var(--bg-1) 100%);
  pointer-events: none;
  z-index: 1;
}
.section--with-sequence,
.sequence-group {
  position: relative;
  overflow: visible;
}
.section--with-sequence .wrap,
.sequence-group .wrap {
  position: relative;
  z-index: 1;
}
.sequence-group__bg,
.section-sequence-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.3;
}
.section-sequence-bg__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: none;
  transform: none;
}
.section-sequence-bg__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.section--with-sequence .wrap,
.section--with-sequence .menu-showcase__head,
.section--with-sequence .chef-callout__text,
.section--with-sequence .dashboard-block,
.section--with-sequence .tlist {
  position: relative;
  z-index: 1;
}
.hero__content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero__kicker .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  max-width: 16ch;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 900;
}
.hero__sub {
  max-width: 56ch;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 40px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: fit-content;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.hero__badge svg { color: var(--gold); flex-shrink: 0; }
.hero__badge strong { color: #fff; font-weight: 500; }

.hero__corner {
  position: absolute;
  right: 32px;
  bottom: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__corner .line {
  width: 60px; height: 1px; background: var(--gold);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll .bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ------------------ Logo Marquee ------------------ */
.marquee {
  background: var(--bg-2);
  padding: 36px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.marquee__track {
  display: flex;
  gap: 72px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 72px;
}
.marquee__item::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
  font-size: 0.8rem;
  opacity: 0.6;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ------------------ Generic split section ------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.split--image-left .split__image { order: 0; }
.split--image-left .split__text  { order: 1; }
.split__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.split__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.split__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
}
.split__caption .line {
  width: 36px; height: 1px; background: var(--gold);
}
.split__text h2 { margin-bottom: 24px; }
.split__text p + p { margin-top: 20px; }
.split__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cream .split__meta { border-top-color: rgba(0,0,0,0.1); }
.split__meta__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.split__meta__lbl {
  font-size: 0.82rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.cream .split__meta__lbl { color: #555; }

/* ------------------ Neden Vadi? — feature grid ------------------ */
.features {
  background: var(--bg-1);
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  width: 80%; max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  transform: translateX(-50%);
}
.features__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 72px;
}
.features__head p { max-width: 48ch; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 40px 32px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: -1;
}
.feature:hover::before { opacity: 1; }
.feature:hover { background: rgba(255,255,255,0.02); }
.feature__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 32px;
}
.feature__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--gold);
  transition: transform 0.6s var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-4px) rotate(-3deg); }
.feature h4 {
  font-family: var(--serif);
  font-size: 1.32rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.2;
}
.feature p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ------------------ Stats Strip ------------------ */
.stats {
  position: relative;
  padding: clamp(80px, 9vw, 130px) 0;
  overflow: hidden;
  isolation: isolate;
}
.stats__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.32) saturate(0.85);
  transform: scale(1.03);
}
.stats__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #0E0E0E;
  background: linear-gradient(180deg, rgba(14, 14, 14, 1) 0%, rgba(14, 14, 14, 0) 50%, rgba(14, 14, 14, 1) 100%);
}
.stats__head { text-align: center; margin-bottom: 56px; }
.stats__head .eyebrow { justify-content: center; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.stat__num .small { font-size: 0.6em; vertical-align: top; }
.stat__lbl {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.5;
}

/* ------------------ Services Grid ------------------ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.svc {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: var(--bg-card);
}
.svc__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.7) saturate(0.95);
}
.svc:hover .svc__img { transform: scale(1.12); filter: brightness(0.5) saturate(1.05); }
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85));
  z-index: 1;
}
.svc__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.6s var(--ease);
}
.svc__body small {
  font-family: var(--serif);
  font-style: italic;
  color: #fff;
  font-size: 0.85rem;
}
.svc__body h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #fff;
}
.svc__body p {
  font-size: 0.88rem;
  color: var(--ink-3);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.4s ease, margin 0.4s ease;
}
.svc:hover .svc__body p { max-height: 100px; opacity: 1; margin-top: 8px; }
.svc__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.svc:hover .svc__arrow { background: var(--gold); border-color: var(--gold); color: #1a1300; transform: rotate(-45deg); }

/* Mobile — horizontal scroll for svc-grid */
@media (max-width: 680px) {
  .svc-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    cursor: grab;
    user-select: none;
    margin: 0 -22px;
    padding: 0 22px 28px;
    position: relative;
  }
  .svc-scroll-wrap::-webkit-scrollbar { display: none; }
  .svc-scroll-wrap.is-dragging { cursor: grabbing; scroll-snap-type: none; }
  .svc-scroll-wrap.is-dragging .svc { pointer-events: none; }

  .svc-grid--scroll {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    gap: 14px;
  }
  .svc-grid--scroll > .svc {
    flex: 0 0 265px;
    height: 345px;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }
}

/* Scroll progress bar (injected by JS) */
.svc-scroll-bar {
  display: none;
}
@media (max-width: 680px) {
  .svc-scroll-bar {
    display: block;
    height: 4px;
    border-radius: 2px;
    margin-top: 12px;
    background: var(--line);
    position: relative;
    overflow: hidden;
  }
  .svc-scroll-bar__fill {
    height: 100%;
    border-radius: 2px;
    background: var(--gold);
    width: calc(var(--scroll-pct, 0) * 100%);
    min-width: 28px;
    transition: width 0.15s ease-out;
  }
}

/* ------------------ Timeline ------------------ */
.timeline {
  position: relative;
}
.timeline__rail {
  position: relative;
  margin-top: 64px;
  padding-top: 40px;
}
.timeline__line {
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
}
.timeline__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}
.tstep {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tstep__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.tstep__dot::before {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.tstep__icon {
  width: 56px;
  height: 56px;
  color: var(--green);
  margin-bottom: 14px;
}
.tstep h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-dark);
  margin-bottom: 6px;
}
.tstep span {
  font-size: 0.82rem;
  color: #5a5a5a;
  font-family: var(--sans);
}
.tstep__no {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

/* ------------------ Testimonials ------------------ */
.tlist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.tcard:hover { transform: translateY(-4px); border-color: var(--gold-glow); }
.tcard__quote {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--gold);
  height: 32px;
  opacity: 0.85;
}
.tcard__body {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  font-weight: 400;
  text-wrap: pretty;
}
.tcard__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--bg-1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.tcard__who strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 500; }
.tcard__who span { display: block; color: var(--ink-3); font-size: 0.82rem; margin-top: 2px; }

/* ------------------ Certificates ------------------ */
.certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cert {
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.cert:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -25px rgba(0,0,0,0.15); }
.cert__seal {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  position: relative;
}
.cert__seal::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--green);
  border-radius: 50%;
  opacity: 0.4;
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.cert h4 {
  color: var(--ink-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.cert span {
  font-size: 0.78rem;
  color: #6a6a6a;
  letter-spacing: 0.04em;
}

/* ------------------ Quick Quote Form ------------------ */
.quote {
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}
.quote__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.7);
}
.quote__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(14,14,14,0.92), rgba(14,14,14,0.7) 50%, rgba(61,107,79,0.4));
}
.quote .mesh { z-index: -1; }
.quote__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.quote__inner h2 { font-size: clamp(2rem, 3.6vw, 3.4rem); margin-bottom: 20px; }
.quote__inner p { color: var(--ink-2); }
.quote__form {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-lift);
}
.quote__form h3 {
  font-family: var(--serif);
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  color: #fff;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,0.5);
}
.field textarea { min-height: 96px; resize: vertical; font-family: var(--sans); }
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    right 18px top 50%,
    right 12px top 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote__form .btn { width: 100%; justify-content: center; margin-top: 8px; padding: 18px; font-size: 0.95rem; }
.quote__trust {
  margin-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-3);
}

/* ------------------ Reveal animations ------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ------------------ Footer ------------------ */
.footer {
  background: #0a0a0a;
  padding: 96px 0 32px;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer__brand svg { height: 56px; width: auto; color: #fff; margin-bottom: 22px; }
.footer__brand img.logo-light { margin-bottom: 22px; }
.footer__brand p { color: var(--ink-3); font-size: 0.92rem; max-width: 32ch; line-height: 1.7; }
.footer__col h5 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 0.92rem;
  color: var(--ink-3);
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__contact { font-size: 0.92rem; color: var(--ink-3); line-height: 1.7; }
.footer__contact strong { color: #fff; display: block; margin-bottom: 4px; font-weight: 500; }
.footer__contact a { color: var(--ink-3); display: block; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--ink-3);
}
.footer__bottom__links { display: flex; gap: 28px; }
.footer__bottom__links a:hover { color: var(--gold); }

/* ------------------ Service model cards (hizmetler) ------------------ */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.model {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
  min-height: 360px;
  isolation: isolate;
}
.model:hover { transform: translateY(-4px); border-color: var(--gold-glow); }
.model__img {
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
  min-height: 280px;
}
.model:hover .model__img { transform: scale(1.04); }
.model__body { padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; }
.model__no {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.model__body h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: #fff;
  margin-bottom: 6px;
  font-weight: 500;
  line-height: 1.15;
}
.model__body p { color: var(--ink-3); font-size: 0.92rem; line-height: 1.65; }
.model__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 12px;
}
.model__body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.model__body ul li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.model--wide {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
}
.model--wide .model__img { order: 2; min-height: 360px; }
.model--wide .model__body { padding: 56px 48px; justify-content: center; }
.model--wide .model__body h2 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); }

/* Enhanced model cards */
.model--img-right .model__img { order: 2; }
.model__no--circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.1);
  border: 1px solid rgba(200, 150, 62, 0.3);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 18px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.model:hover .model__no--circle {
  background: rgba(200, 150, 62, 0.2);
  border-color: var(--gold);
}
.model__feats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 8px;
}
.model__feat {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--ink-3);
  padding-left: 18px;
  position: relative;
}
.model__feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 1.5px;
  background: var(--gold);
}
.model__cta {
  margin-top: auto;
  padding-top: 12px;
}
.model-grid--enhanced { gap: 32px; }
.model--featured {
  border-color: rgba(200, 150, 62, 0.2);
  box-shadow: 0 0 40px -20px var(--gold-glow);
}
.model--featured:hover {
  border-color: var(--gold-glow);
  box-shadow: 0 30px 60px -25px rgba(200, 150, 62, 0.3);
}
@media (min-width: 881px) {
  .model-grid--enhanced .model {
    grid-template-columns: 1.4fr 1fr;
    min-height: 380px;
  }
  .model-grid--enhanced .model--img-right {
    grid-template-columns: 1fr 1.4fr;
  }
}

/* ------------------ Matrix table ------------------ */
.matrix {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.matrix__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 16px;
  padding: 18px 24px;
  font-size: 0.92rem;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #333;
}
.matrix__row:last-child { border-bottom: 0; }
.matrix__row > span:first-child { font-family: var(--serif); font-size: 1.08rem; color: var(--ink-dark); font-weight: 500; }
.matrix__row--head {
  background: var(--bg-1);
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.matrix__row--head > span:first-child { font-family: var(--sans); color: var(--gold); font-size: 0.74rem; }

@media (max-width: 880px) {
  .model-grid, .model, .model--wide { grid-template-columns: 1fr; }
  .model__img, .model--wide .model__img { min-height: 240px; }
  .model__body, .model--wide .model__body { padding: 28px 24px; }
  .matrix__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
  .matrix__row--head { display: none; }
  .matrix__row { border-bottom: 1px solid rgba(0,0,0,0.1); }
  .matrix__row > span:not(:first-child) { font-size: 0.82rem; color: #666; }
}

/* Enhanced matrix */
.matrix--enhanced .matrix__row:not(.matrix__row--head) {
  transition: background 0.3s var(--ease);
}
.matrix--enhanced .matrix__row:not(.matrix__row--head):hover {
  background: rgba(200, 150, 62, 0.06);
}
.matrix__row--head svg {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-right: 6px;
  color: var(--gold);
}
@media (max-width: 880px) {
  .matrix--enhanced .matrix__row {
    grid-template-columns: 1fr;
    padding: 16px 20px;
    border-radius: var(--r);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 8px;
    background: #fff;
    gap: 4px;
  }
  .matrix--enhanced .matrix__row--head { display: none; }
}

/* ------------------ Hat cards (about page) ------------------ */
.hat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.hat:hover { transform: translateY(-6px); border-color: var(--gold-glow); }
.hat__img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}
.hat:hover .hat__img { transform: scale(1.06); }
.hat__body { padding: 32px 28px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.hat__body h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 6px;
}
.hat__body p { font-size: 0.95rem; line-height: 1.6; color: var(--ink-3); }
@media (max-width: 880px) {
  .hat-grid { grid-template-columns: 1fr; }
}

/* ------------------ Menü Repertuvarı (food PNG showcase) ------------------ */
.menu-showcase {
  position: relative;
  padding: clamp(80px, 9vw, 130px) 0;
  overflow: hidden;
}
.menu-showcase__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}
.menu-showcase__head .eyebrow { justify-content: center; }
.menu-showcase__head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.dishes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.dish {
  position: relative;
  padding: 32px 16px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.dish::before {
  content: "";
  position: absolute;
  inset: auto 18% 28% 18%;
  height: 36px;
  background: radial-gradient(50% 100% at 50% 0, rgba(200,150,62,0.55), transparent 70%);
  filter: blur(14px);
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.dish:hover {
  transform: translateY(-8px);
  border-color: var(--gold-glow);
  background: linear-gradient(180deg, rgba(200,150,62,0.06), transparent);
}
.dish:hover::before { opacity: 1; transform: scale(1.1); }
.dish__img {
  height: 180px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
.dish__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.55));
  transition: transform 0.7s var(--ease);
  height: 200px;
}
.dish:hover .dish__img img { transform: translateY(-4px) scale(1.04) rotate(-1.5deg); }
.dish__cat {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.dish h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.2;
}
.dish small {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.menu-showcase__cta {
  text-align: center;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.menu-showcase__cta p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-3);
  font-size: 1.05rem;
}

/* ------------------ Chef callout (img-01) ------------------ */
.chef-callout {
  position: relative;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-card) 100%);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line);
}
.chef-callout::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  bottom: -200px;
  right: -120px;
  filter: blur(10px);
  z-index: -1;
}
.chef-callout::after {
  content: "✦";
  position: absolute;
  bottom: 64px;
  left: 64px;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 12rem;
  opacity: 0.04;
  line-height: 1;
  z-index: -1;
}
.chef-callout__text { padding: 32px 0 56px; }
.chef-callout__text h2 { font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 18px; }
.chef-callout__text h2 em { color: var(--gold); font-style: italic; }
.chef-callout__text p { color: var(--ink-2); max-width: 44ch; margin-bottom: 28px; }
.chef-callout__img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 380px;
}
.chef-callout__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(200,150,62,0.18), transparent 60%);
  z-index: 0;
}
.chef-callout__img img {
  position: relative;
  z-index: 1;
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
.chef-callout__sig {
  position: absolute;
  bottom: 32px;
  right: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.4rem;
}
.chef-callout__stats {
  display: flex;
  gap: 28px;
  margin-top: 28px;
}
.chef-callout__stats > div { padding-right: 28px; border-right: 1px solid var(--line); }
.chef-callout__stats > div:last-child { border: 0; padding-right: 0; }
.chef-callout__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}
.chef-callout__stats span { font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.04em; }
.chef-callout__sig {
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
}

.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.faq-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px;
}
.faq-card h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
}
.faq-card p {
  color: var(--ink-3);
  line-height: 1.8;
  font-size: 0.96rem;
}

@media (max-width: 880px) {
  .dishes { grid-template-columns: repeat(2, 1fr); }
  .chef-callout { grid-template-columns: 1fr; padding: 32px 24px; }
  .chef-callout__img { min-height: 320px; }
  .chef-callout__img img { max-height: 360px; }
}

/* ------------------ Mobile horizontal swipe sections ------------------ */
@media (max-width: 680px) {
  .scroll-x {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    padding-bottom: 8px;
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 22px;
    padding-right: 22px;
  }
  .scroll-x::-webkit-scrollbar { display: none; }

  .scroll-x > * {
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Dishes — 260px wide cards */
  .dishes.scroll-x { gap: 12px; }
  .dishes.scroll-x > .dish {
    width: 260px;
    min-width: 260px;
  }

  /* Certs — 240px wide cards */
  .certs.scroll-x { gap: 14px; }
  .certs.scroll-x > .cert {
    width: 240px;
    min-width: 240px;
  }

  /* Chef callout stats — scroll the stats row */
  .chef-callout__stats.scroll-x { gap: 0; }
  .chef-callout__stats.scroll-x > div {
    flex-shrink: 0;
    min-width: 120px;
    padding-right: 20px;
    margin-right: 0;
    border-right: 1px solid var(--line);
  }
  .chef-callout__stats.scroll-x > div:last-child { border-right: 1px solid var(--line); }
}

/* ============================================================
   PAGE-SPECIFIC HEROES (each page needs unique layout)
   ============================================================ */

/* hakkimizda: diagonal split */
.hero-about {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
.hero-about__text {
  padding: 160px 6vw 80px 32px;
  position: relative;
  z-index: 2;
  background: var(--bg-1);
}
.hero-about__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -80px;
  width: 160px;
  background: var(--bg-1);
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
}
.hero-about__image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 90vh;
}
.hero-about__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.2) 30%, transparent 60%);
}
.hero-about__caption {
  position: absolute;
  bottom: 32px;
  right: 32px;
  padding: 18px 22px;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-2);
  max-width: 280px;
}

/* hizmetler index: typographic centered */
.hero-svc {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-svc__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.9);
}
.hero-svc__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 50% 50%, transparent, rgba(0,0,0,0.7)),
    linear-gradient(180deg, rgba(14,14,14,0.5), rgba(14,14,14,0.85));
}
.hero-svc h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 auto 24px;
  max-width: 16ch;
}
.hero-svc h1 .accent {
  display: inline-block;
  font-style: italic;
  color: var(--gold);
}
.hero-svc__sub {
  max-width: 60ch;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: var(--ink-2);
  padding: 0 32px;
}
.hero-svc__line { width: 1px; height: 60px; background: var(--gold); margin: 0 auto 24px; }

/* tasima-yemek: full-screen image, text bottom-left */
.hero-tasima {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 0 0 80px;
}
.hero-tasima__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}
.hero-tasima::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(45deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 60%);
}
.hero-tasima__content { max-width: 720px; padding: 0 32px; margin: 0 auto 0 max(32px, calc((100vw - 1280px)/2 + 32px)); }
.hero-tasima h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-tasima h1 em { color: var(--gold); font-style: italic; }
.hero-tasima__side {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* sektorler/ofis: 60/40 split text|image */
.hero-sector {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  overflow: hidden;
  background: var(--bg-1);
  align-items: stretch;
}
.hero-sector__text {
  padding: 180px 64px 80px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-sector__text h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  margin-bottom: 24px;
}
.hero-sector__text h1 em { color: var(--gold); font-style: italic; }
.hero-sector__image {
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-sector__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,14,14,0.7), transparent 30%);
}
.hero-sector__badge {
  position: absolute;
  top: 40%;
  left: -24px;
  background: var(--gold);
  color: #1a1300;
  padding: 14px 22px;
  font-family: var(--serif);
  font-style: italic;
  border-radius: var(--r);
  font-size: 0.95rem;
  box-shadow: var(--shadow-lift);
  z-index: 2;
}

/* iletisim hero */
.hero-cont {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  background: var(--bg-1);
  overflow: hidden;
}
.hero-cont::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, var(--green-glow), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(40px);
}
.hero-cont > * { position: relative; z-index: 1; }
.hero-cont h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  max-width: 18ch;
  margin: 0 auto 20px;
}
.hero-cont p { max-width: 56ch; margin: 0 auto; color: var(--ink-2); }

/* teklif hero */
.hero-quote {
  padding: 160px 0 60px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.hero-quote::before {
  content: "✦";
  position: absolute;
  font-size: 30rem;
  font-family: var(--serif);
  color: var(--gold);
  opacity: 0.04;
  top: -100px;
  right: -80px;
  pointer-events: none;
}
.hero-quote .eyebrow { color: var(--gold); }
.hero-quote h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  margin-bottom: 20px;
  max-width: 18ch;
}
.hero-quote h1 em { color: var(--gold); font-style: italic; }

/* ============================================================
   PAGE SECTIONS (about, services, contact, quote)
   ============================================================ */

/* Diagonal divider */
.divider-clip {
  height: 80px;
  margin-top: -80px;
  background: var(--bg-cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 5;
}
.divider-clip--dark {
  background: var(--bg-1);
}

/* Story section */
.story {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  align-items: start;
}
.story__head h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.story__body p + p { margin-top: 22px; }
.story__body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 500;
  float: left;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--gold);
}

/* Triple cards */
.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tri__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tri__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.tri__card__icon {
  width: 52px;
  height: 52px;
  color: var(--green);
  margin-bottom: 8px;
}
.tri__card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink-dark);
  margin-bottom: 4px;
}
.tri__card p { color: #444; font-size: 0.95rem; line-height: 1.7; }
.tri__card__no {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Operational blocks */
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ops-block {
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.ops-block__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
}
.ops-block h4 { color: #fff; margin-bottom: 8px; }
.ops-block p { color: var(--ink-3); font-size: 0.92rem; line-height: 1.6; }

/* Service feature checklist */
.svc-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 56px;
  margin: 48px 0;
}
.svc-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cream .svc-feat { border-bottom-color: rgba(0,0,0,0.08); }
.svc-feat__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 24px;
  padding-top: 2px;
}
.svc-feat__body strong { display: block; color: #fff; margin-bottom: 4px; font-size: 1rem; font-weight: 500; }
.cream .svc-feat__body strong { color: var(--ink-dark); }
.svc-feat__body p { font-size: 0.9rem; color: var(--ink-3); margin: 0; }
.cream .svc-feat__body p { color: #444; }

/* Problem → Solution comparison */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
}
.compare__col {
  padding: 40px 32px;
  border-radius: var(--r-lg);
}
.compare__col--problem {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.compare__col--solution {
  background: linear-gradient(150deg, rgba(61,107,79,0.18), rgba(200,150,62,0.12));
  border: 1px solid var(--gold-glow);
}
.compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ink-3);
}
.compare__col--solution .compare__head { color: var(--gold); border-bottom-color: var(--gold-glow); }
.compare ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.compare li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.compare li svg { flex-shrink: 0; margin-top: 4px; }
.compare__col--problem li svg { color: #c25656; }
.compare__col--solution li svg { color: var(--gold); }

/* CTA banner */
.cta-banner {
  background:
    linear-gradient(120deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  filter: blur(20px);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin-bottom: 12px; position: relative; }
.cta-banner p { color: var(--ink-2); position: relative; max-width: 48ch; }
.cta-banner__actions { display: flex; flex-direction: column; gap: 12px; justify-self: end; position: relative; }
.cta-banner__phone {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  text-align: right;
  font-style: italic;
}

/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  transition: border-color 0.3s ease;
}
.cream .faq__item { border-bottom-color: rgba(0,0,0,0.08); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink-dark);
  font-weight: 500;
  padding: 0;
  line-height: 1.3;
}
.faq__q .plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s var(--ease);
  position: relative;
}
.faq__q .plus::before,
.faq__q .plus::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.faq__q .plus::before { width: 12px; height: 1.5px; }
.faq__q .plus::after  { width: 1.5px; height: 12px; }
.faq__item.is-open .faq__q .plus { background: var(--gold); }
.faq__item.is-open .faq__q .plus::before,
.faq__item.is-open .faq__q .plus::after { background: #fff; }
.faq__item.is-open .faq__q .plus::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), padding 0.4s ease;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 70ch;
}
.faq__item.is-open .faq__a { max-height: 400px; padding-top: 16px; }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.contact-info__row:hover { border-color: var(--gold-glow); background: rgba(255,255,255,0.02); }
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,150,62,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__row h4 { color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.contact-info__row p { color: var(--ink-3); font-size: 0.92rem; margin: 0; }
.contact-info__row a { color: var(--ink-2); }
.contact-info__row a:hover { color: var(--gold); }

.contact-map {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background:
    linear-gradient(135deg, var(--bg-2), var(--bg-card)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 60px);
  background-blend-mode: overlay;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.contact-map svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35; }
.contact-map__pin {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}
.contact-map__pin .ping {
  width: 20px; height: 20px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: ping 2s var(--ease) infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 var(--gold); }
  100% { box-shadow: 0 0 0 40px transparent; }
}

/* Quote page grid */
.quote-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) {
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 44px;
}
.contact-form h3 { color: #fff; font-family: var(--serif); font-size: 1.6rem; margin-bottom: 8px; }
.contact-form p { color: var(--ink-3); font-size: 0.92rem; margin-bottom: 28px; }

/* Three-step process */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process__step {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.process__step__num {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: var(--shadow-lift);
}
.process__step h4 { color: #fff; font-size: 1.2rem; margin: 16px 0 8px; font-family: var(--serif); }
.process__step p { color: var(--ink-3); font-size: 0.92rem; line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__menu { gap: 24px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 880px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .split, .quote__inner, .features__head, .story, .contact-grid, .hero-about, .hero-sector { grid-template-columns: 1fr; gap: 40px; }
  .hero-about, .hero-sector { min-height: auto; }
  .hero-about__text, .hero-sector__text { padding: 140px 32px 60px; }
  .hero-about__text::after { display: none; }
  .hero-about__image, .hero-sector__image { height: 60vh; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .tlist, .tri, .ops-grid, .process { grid-template-columns: 1fr; }
  .certs { grid-template-columns: repeat(2, 1fr); }
  .timeline__steps { grid-template-columns: 1fr; gap: 40px; }
  .timeline__line { display: none; }
  .compare { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; text-align: left; }
  .cta-banner__actions { justify-self: start; }
  .cta-banner__phone { text-align: left; }
  .svc-feats, .field-row { grid-template-columns: 1fr; gap: 8px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero { min-height: 110vh; padding-top: 110px; }
  .hero__corner { display: none; }
  .quote__form { padding: 28px 24px; }
  .wrap, .wrap-narrow { padding: 0 22px; }
  .feature { padding: 32px 24px; }
}
@media (max-width: 520px) {
  .features__grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .certs { grid-template-columns: 1fr; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__badges { gap: 16px; }
}

/* ------------------ Skip to content ------------------ */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.skip-to-content:focus {
  position: fixed;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  overflow: visible;
  padding: 12px 28px;
  background: var(--gold);
  color: #1a1300;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 200;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ------------------ Hero video (v2) ------------------ */
.hero__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0d0d0d;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* Sequence video background (v2) */
.section-sequence-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------ Mobile menu close button ------------------ */
.mobile-menu__close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
.mobile-menu__close:hover {
  background: rgba(255,255,255,0.12);
  transform: rotate(90deg);
}

/* ------------------ Form feedback (aria-live) ------------------ */
.form-feedback {
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 1.4em;
  margin-top: 4px;
  text-align: center;
}
