:root {
  color-scheme: dark;
  --ink: #f7efe3;
  --muted: #d7c8b5;
  --gold: #d4a241;
  --red: #b13a27;
  --olive: #53633c;
  --charcoal: #0e0d0b;
  --panel: #1c1712;
  --panel-2: #251d16;
  --line: rgba(247, 239, 227, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.78), rgba(3, 3, 3, 0.18));
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.74);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-logo {
  display: grid;
  width: 116px;
  height: 78px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.68));
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small,
.eyebrow,
.quick-strip span,
.recipe-copy span,
.brand-grid span,
.contact-panel span,
.site-footer span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(247, 239, 227, 0.12);
  background: rgba(5, 5, 4, 0.34);
}

.main-nav a:hover {
  color: var(--ink);
}

.call-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-weight: 800;
}

.call-button,
.primary-action {
  background: var(--gold);
  color: #19120d;
}

.secondary-action {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(18px, 4vw, 56px) 72px;
  background: #050504;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 5, 4, 0.95), rgba(8, 7, 6, 0.7) 44%, rgba(8, 7, 6, 0.08)),
    linear-gradient(0deg, rgba(10, 8, 7, 0.92), transparent 48%);
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 8vh;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 600px;
  color: #eadfcd;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #1a1512;
}

.quick-strip div {
  min-height: 112px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.quick-strip div:last-child {
  border-right: 0;
}

.quick-strip strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.section {
  padding: 86px clamp(18px, 4vw, 56px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.recipe-system {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.recipe-visual {
  position: relative;
  min-height: 640px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #050504;
  box-shadow: var(--shadow);
}

.recipe-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(212, 162, 65, 0.32);
  background: linear-gradient(0deg, rgba(5, 5, 4, 0.18), transparent 48%);
  pointer-events: none;
}

.recipe-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-copy {
  display: grid;
  gap: 18px;
}

.recipe-copy article {
  display: flex;
  min-height: 196px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.recipe-copy span,
.brand-grid p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.recipe-copy span {
  color: var(--gold);
  font-weight: 800;
}

.recipe-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.cinematic-hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: #030303;
}

.cinematic-hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.76), transparent 22%, transparent 66%, rgba(3, 3, 3, 0.82)),
    radial-gradient(circle at 32% 60%, rgba(212, 162, 65, 0.12), transparent 26%);
  pointer-events: none;
}

.dish-cinema,
.hero-copy-block {
  position: relative;
  z-index: 1;
}

.dish-cinema {
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #050504;
  border: 0;
  box-shadow: none;
}

.dish-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 420ms ease, transform 900ms ease;
}

.dish-photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.cinema-loader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 4px;
  background: rgba(247, 239, 227, 0.1);
}

.cinema-loader span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), #fff2d2);
  transform-origin: left;
  animation: loadBar 1.8s cubic-bezier(0.2, 0.76, 0.1, 1) both;
}

.cinema-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(247, 239, 227, 0.08), transparent);
  mix-blend-mode: screen;
  transform: translateX(-100%);
  animation: scanSweep 2.2s ease-out both 500ms;
  pointer-events: none;
}

.dish-selector {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.dish-selector button,
.marker {
  border: 1px solid rgba(247, 239, 227, 0.2);
  background: rgba(5, 5, 4, 0.66);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.dish-selector button {
  min-width: 112px;
  min-height: 38px;
  padding: 0 12px;
}

.dish-selector button:hover,
.dish-selector button:focus-visible,
.dish-selector button.is-active {
  border-color: rgba(212, 162, 65, 0.78);
  color: var(--gold);
  outline: 0;
}

.image-markers {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}

.marker {
  position: absolute;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 999px;
  color: transparent;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(212, 162, 65, 0.16), 0 0 28px rgba(212, 162, 65, 0.74);
  pointer-events: auto;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.marker::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 13px);
  min-width: max-content;
  max-width: 190px;
  padding: 9px 11px;
  content: attr(data-title);
  color: var(--ink);
  background: rgba(5, 5, 4, 0.88);
  border: 1px solid rgba(212, 162, 65, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.marker:hover,
.marker:focus-visible,
.marker.is-active {
  transform: scale(1.18);
  box-shadow: 0 0 0 9px rgba(212, 162, 65, 0.2), 0 0 42px rgba(212, 162, 65, 0.9);
  outline: 0;
}

.marker:hover::after,
.marker:focus-visible::after,
.marker.is-active::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.marker-kebap {
  left: 38%;
  top: 42%;
}

.marker-yogurt {
  left: 7%;
  top: 68%;
}

.marker-spice {
  left: 60%;
  top: 52%;
}

.marker-onion {
  left: 36%;
  top: 62%;
}

.marker-tomato {
  left: 31%;
  top: 36%;
}

.marker-pepper {
  left: 24%;
  top: 23%;
}

.dish-caption {
  position: absolute;
  left: 20px;
  bottom: 84px;
  z-index: 6;
  max-width: min(430px, calc(100% - 40px));
  padding: 18px;
  background: rgba(5, 5, 4, 0.72);
  border: 1px solid rgba(247, 239, 227, 0.14);
  backdrop-filter: blur(16px);
}

.dish-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 800;
}

.dish-caption p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.visual-experience {
  background: #0b0908;
}

@keyframes scanSweep {
  to {
    transform: translateX(100%);
  }
}

.futurist-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  overflow: hidden;
  padding: 124px clamp(18px, 4vw, 56px) 72px;
  background:
    linear-gradient(120deg, rgba(177, 58, 39, 0.13), transparent 35%),
    #020202;
}

.futurist-hero::before,
.dish-story::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(247, 239, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 239, 227, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  pointer-events: none;
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.dish-lab {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  min-height: 640px;
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(247, 239, 227, 0.13);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.58);
}

.dish-lab::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(212, 162, 65, 0.16), transparent),
    repeating-linear-gradient(0deg, rgba(247, 239, 227, 0.025) 0 1px, transparent 1px 9px);
  opacity: 0.58;
  pointer-events: none;
}

.dish-lab-hero {
  animation: labReveal 900ms ease both 120ms;
}

.lab-topline,
.build-loader,
.dish-plate,
.dish-readout {
  position: relative;
  z-index: 1;
}

.lab-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lab-topline strong {
  color: var(--gold);
}

.build-loader {
  height: 5px;
  overflow: hidden;
  background: rgba(247, 239, 227, 0.08);
}

.build-loader span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold), #f7efe3);
  transform-origin: left;
  animation: loadBar 2.4s cubic-bezier(0.2, 0.76, 0.1, 1) both;
}

.dish-plate {
  isolation: isolate;
  min-height: 470px;
  border: 1px solid rgba(247, 239, 227, 0.08);
  background: radial-gradient(circle at 50% 52%, rgba(212, 162, 65, 0.08), transparent 35%), #020202;
}

.ingredient {
  position: absolute;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  animation: ingredientLoad 620ms cubic-bezier(0.2, 0.85, 0.2, 1.08) both;
  animation-delay: var(--delay, 600ms);
}

.ingredient::after {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  min-width: max-content;
  max-width: 220px;
  padding: 9px 11px;
  content: attr(data-title);
  color: var(--ink);
  background: rgba(7, 6, 5, 0.9);
  border: 1px solid rgba(212, 162, 65, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

.ingredient:hover::after,
.ingredient:focus-visible::after,
.ingredient.is-active::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ingredient:hover,
.ingredient:focus-visible,
.ingredient.is-active {
  outline: 0;
  filter: brightness(1.22) saturate(1.16) drop-shadow(0 0 28px rgba(212, 162, 65, 0.46));
}

.plate-base {
  --delay: 100ms;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(66%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(247, 239, 227, 0.08), transparent 32%),
    radial-gradient(circle at 50% 52%, #17130f 0 42%, #070605 43% 58%, #282019 59% 62%, #050504 63%);
  box-shadow: inset 0 0 38px rgba(247, 239, 227, 0.06), 0 34px 80px rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%) scale(0.94);
}

.lavash,
.pide-bed {
  --delay: 420ms;
  left: 36%;
  top: 52%;
  width: 33%;
  height: 18%;
  border-radius: 999px 24px 999px 24px;
  background:
    radial-gradient(circle at 18% 30%, rgba(111, 62, 31, 0.56) 0 4px, transparent 5px),
    radial-gradient(circle at 62% 56%, rgba(111, 62, 31, 0.42) 0 5px, transparent 6px),
    linear-gradient(135deg, #f0d1a7, #be7c42 52%, #f5ddb8);
  transform: rotate(-13deg);
}

.adana-kebab,
.doner-slices {
  --delay: 760ms;
  left: 43%;
  top: 39%;
  width: 37%;
  height: 9.5%;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(56, 18, 9, 0.45) 14px 18px),
    linear-gradient(90deg, #5c1f13, #b74824 32%, #6e2517 64%, #d05a2c);
  box-shadow: inset 0 8px 14px rgba(255, 213, 138, 0.18), 0 10px 24px rgba(112, 29, 12, 0.35);
  transform: rotate(16deg);
}

.bulgur {
  --delay: 1080ms;
  left: 31%;
  top: 31%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #f1aa42 0 2px, transparent 3px),
    radial-gradient(circle at 58% 62%, #c46f25 0 2px, transparent 3px),
    radial-gradient(circle at 62% 34%, #f5bd52 0 2px, transparent 3px),
    radial-gradient(circle at 50% 50%, #c36b23, #8a391d 74%);
  box-shadow: inset 0 -10px 18px rgba(72, 25, 12, 0.34);
}

.tomato,
.iskender-tomato {
  --delay: 1320ms;
  left: 61%;
  top: 24%;
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 34%, #ff9c60 0 8%, transparent 9%),
    radial-gradient(circle at 50% 52%, #d63b20, #6c160c 72%);
  box-shadow: inset -8px -12px 18px rgba(55, 6, 4, 0.34);
}

.pepper,
.iskender-pepper {
  --delay: 1560ms;
  left: 52%;
  top: 30%;
  width: 6%;
  height: 32%;
  border-radius: 999px;
  background: linear-gradient(180deg, #5c7a2d, #243f19 60%, #8da33a);
  transform: rotate(-35deg);
  box-shadow: inset 6px 0 10px rgba(255, 255, 255, 0.09);
}

.onion {
  --delay: 1800ms;
  left: 57%;
  top: 58%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(245, 231, 226, 0.86) 0 2px, rgba(128, 57, 82, 0.64) 3px 5px, transparent 6px 10px);
}

.greens {
  --delay: 2040ms;
  left: 72%;
  top: 54%;
  width: 12%;
  height: 16%;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(ellipse at 28% 42%, #88b84a 0 20%, transparent 22%),
    radial-gradient(ellipse at 58% 34%, #4f7c2e 0 22%, transparent 24%),
    radial-gradient(ellipse at 48% 70%, #6aa13b 0 24%, transparent 26%);
}

.pide-bed {
  left: 33%;
  top: 54%;
  width: 38%;
  height: 24%;
  border-radius: 28px;
  transform: rotate(0deg);
}

.doner-slices {
  left: 39%;
  top: 38%;
  width: 36%;
  height: 20%;
  border-radius: 24px;
  background:
    repeating-linear-gradient(100deg, #7b2d18 0 10px, #d4763a 11px 18px, #4d1a10 19px 25px);
  transform: rotate(8deg);
}

.sauce {
  --delay: 1120ms;
  left: 40%;
  top: 39%;
  width: 35%;
  height: 22%;
  border-radius: 30px;
  background: radial-gradient(circle at 44% 42%, rgba(255, 167, 88, 0.8), transparent 24%), rgba(176, 45, 25, 0.72);
  filter: blur(0.2px);
}

.butter {
  --delay: 1420ms;
  left: 58%;
  top: 31%;
  width: 8%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3b0, #e7b72d 58%, transparent 62%);
  box-shadow: 0 0 34px rgba(231, 183, 45, 0.62);
}

.yogurt {
  --delay: 1720ms;
  left: 28%;
  top: 58%;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 38%, #fff, #e4ddd0 68%, #b8a998);
}

.iskender-tomato {
  left: 68%;
  top: 26%;
}

.iskender-pepper {
  left: 70%;
  top: 42%;
  height: 24%;
}

.dish-readout {
  min-height: 92px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(212, 162, 65, 0.24);
  background: rgba(5, 5, 4, 0.64);
}

.dish-readout span {
  color: var(--gold);
  font-weight: 800;
}

.dish-readout p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dish-story {
  position: relative;
  overflow: hidden;
  background: #050504;
}

.dish-stack {
  display: grid;
  gap: 28px;
}

.story-copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-copy article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.story-copy span {
  color: var(--gold);
  font-weight: 800;
}

.story-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

@keyframes loadBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes ingredientLoad {
  from {
    opacity: 0;
    filter: blur(8px) brightness(1.8);
  }
  to {
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}

@keyframes labReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.signature-section {
  background:
    radial-gradient(circle at 78% 14%, rgba(212, 162, 65, 0.12), transparent 30%),
    #0f0c0a;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.signature-card {
  display: grid;
  grid-template-rows: minmax(420px, 58vh) auto;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.dish-stage {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #050504;
}

.dish-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--glow-x, 58%) var(--glow-y, 42%), rgba(212, 162, 65, 0.22), transparent 20%),
    linear-gradient(0deg, rgba(7, 6, 5, 0.56), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.signature-card:hover .dish-stage::after,
.signature-card.is-active .dish-stage::after {
  opacity: 1;
}

.dish-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.signature-card:hover .dish-stage img,
.signature-card.is-active .dish-stage img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.hotspot {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(212, 162, 65, 0.58);
  background: rgba(7, 6, 5, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.hotspot::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(212, 162, 65, 0.14), 0 0 22px rgba(212, 162, 65, 0.72);
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  border-color: rgba(247, 239, 227, 0.82);
  background: rgba(177, 58, 39, 0.82);
  box-shadow: 0 0 34px rgba(212, 162, 65, 0.28);
  transform: translateY(-2px);
  outline: 0;
}

.hotspot-a {
  left: 52%;
  top: 42%;
}

.hotspot-b {
  left: 20%;
  top: 30%;
}

.hotspot-c {
  right: 10%;
  top: 18%;
}

.hotspot-d {
  right: 8%;
  bottom: 22%;
}

.dish-info {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-top: 1px solid var(--line);
}

.dish-info span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.dish-info p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.dish-info strong {
  color: var(--gold);
}

.dish-info small {
  min-height: 42px;
  color: #eadfcd;
  font-size: 0.92rem;
  line-height: 1.55;
}

.experience-section {
  background:
    linear-gradient(90deg, rgba(177, 58, 39, 0.12), transparent 42%),
    #17120f;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.brand-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

.brand-grid span {
  color: var(--gold);
  font-weight: 800;
}

.brand-grid p {
  margin-bottom: 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    linear-gradient(110deg, rgba(177, 58, 39, 0.96), rgba(92, 34, 23, 0.96)),
    var(--red);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-copy {
  max-width: 560px;
}

.contact-panel {
  display: grid;
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-panel a {
  display: grid;
  gap: 8px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover {
  background: rgba(200, 154, 59, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #100d0b;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand > img {
  width: 98px;
  height: 70px;
  object-fit: contain;
  padding: 0;
  border: 0;
  background: transparent;
  filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.52));
}

.footer-brand div {
  display: grid;
  gap: 6px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  text-align: right;
}

.footer-credit img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid rgba(247, 239, 227, 0.18);
  background: #050504;
}

.footer-credit div {
  display: grid;
  gap: 5px;
}

.footer-credit a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-credit a:hover {
  color: var(--gold);
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 86px;
    height: 58px;
  }

  .brand small,
  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .futurist-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .cinematic-hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .cinematic-hero::after {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.82), transparent 30%, transparent 58%, rgba(3, 3, 3, 0.92)),
      radial-gradient(circle at 35% 38%, rgba(212, 162, 65, 0.14), transparent 32%);
  }

  .dish-cinema {
    min-height: 100svh;
  }

  .dish-selector {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 18px;
    grid-auto-flow: column;
    max-width: calc(100% - 24px);
    overflow-x: auto;
    transform: translateX(-50%);
  }

  .dish-selector button {
    min-width: 78px;
    min-height: 34px;
    font-size: 0.7rem;
  }

  .dish-lab {
    min-height: 560px;
  }

  .dish-plate {
    min-height: 390px;
  }

  .quick-strip,
  .recipe-system,
  .signature-grid,
  .story-copy,
  .brand-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-strip div:last-child {
    border-bottom: 0;
  }

  .recipe-visual {
    min-height: 430px;
  }

  .signature-card {
    grid-template-rows: minmax(420px, 62vh) auto;
  }

  .section-heading,
  .cta-band,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .footer-credit {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .call-button {
    min-width: 96px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero {
    padding-top: 82px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(6, 5, 4, 0.96), rgba(6, 5, 4, 0.52) 58%, rgba(6, 5, 4, 0.18)),
      linear-gradient(90deg, rgba(6, 5, 4, 0.82), rgba(6, 5, 4, 0.22));
  }

  .hero-blueprint {
    object-position: 58% center;
  }

  h1 {
    font-size: 4.2rem;
  }

  .signature-card {
    grid-template-rows: minmax(360px, 58vh) auto;
  }

  .hotspot {
    min-height: 31px;
    padding: 0 9px;
    font-size: 0.72rem;
  }

  .hotspot-a {
    left: 44%;
    top: 42%;
  }

  .hotspot-b {
    left: 8%;
    top: 28%;
  }

  .hotspot-c {
    right: 6%;
    top: 16%;
  }

  .hotspot-d {
    right: 6%;
    bottom: 18%;
  }

  .dish-lab {
    padding: 16px;
  }

  .lab-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .ingredient::after {
    max-width: 170px;
    font-size: 0.7rem;
  }

  .plate-base {
    width: 78%;
  }

  .adana-kebab,
  .doner-slices {
    width: 44%;
  }

  .dish-caption {
    left: 12px;
    right: 12px;
    bottom: 70px;
    max-width: none;
    padding: 14px;
  }

  .dish-photo {
    object-position: 35% center;
  }

  .marker {
    width: 14px;
    height: 14px;
  }

  .marker::after {
    max-width: 150px;
    font-size: 0.68rem;
  }
}
