/* ═══════════════════════════════════════════════
   Ratu Burger House — Smoke & Ember Landing Page
   Palette: charcoal + ember red + warm amber
   Fonts: Oswald (display) + Playfair Display (heading) + DM Sans (body)
   ═══════════════════════════════════════════════ */

:root {
  /* ─ Charcoal backgrounds ─ */
  --bg:             #0c0908;
  --surface:        #141010;
  --surface-alt:    #1c1614;
  --surface-warm:   #231c17;

  /* ─ Ember red (primary accent) ─ */
  --ember:          #c93030;
  --ember-light:    #e04040;
  --ember-dim:      #862020;
  --ember-glow:     rgba(201, 48, 48, 0.15);

  /* ─ Warm amber (secondary accent) ─ */
  --amber:          #c89040;
  --amber-light:    #daa650;
  --amber-dim:      #8a6828;

  /* ─ Text colors ─ */
  --text-1:         #f0e6dc;
  --text-2:         #a09080;
  --text-3:         #907e6e; /* WCAG AA: 4.75:1 on --bg */

  /* ─ Borders ─ */
  --line:           rgba(200, 144, 64, 0.10);
  --line-strong:    rgba(200, 144, 64, 0.22);
  --line-ember:     rgba(201, 48, 48, 0.20);

  /* ─ Spacing (4px rhythm) ─ */
  --s1: 4px;  --s2: 8px;  --s3: 12px;  --s4: 16px;
  --s5: 24px; --s6: 32px; --s7: 48px;  --s8: 64px;
  --s9: 96px; --s10: 128px;

  /* ─ Typography ─ */
  --font-display:  'Oswald', 'Arial Narrow', sans-serif;
  --font-heading:  'Playfair Display', 'Georgia', serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* ─ Motion ─ */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:       250ms;
  --dur-slow:  600ms;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0ms; --dur-slow: 0ms; }
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  font-kerning: normal;
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

/* Skip link — keyboard a11y */
.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: var(--s5);
  padding: var(--s3) var(--s5);
  background: var(--ember);
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 200;
  border-radius: 0 0 2px 2px;
  transition: inset-block-start var(--dur) var(--ease);
}
.skip-link:focus-visible {
  inset-block-start: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: var(--s5);
}

/* ═══ SHARED TYPE ═══ */
.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: var(--s4);
}
.label--center { text-align: center; }

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: var(--s6);
}
.heading-lg em {
  font-style: italic;
  color: var(--ember-light);
}
.heading-lg--center { text-align: center; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--s3) var(--s5);
  min-height: 48px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform 100ms var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--ember);
  color: var(--text-1);
  border: 1px solid var(--ember);
}
.btn--primary:hover {
  background: var(--ember-light);
  border-color: var(--ember-light);
}

.btn--outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--line-strong);
}
.btn--outline:hover {
  border-color: var(--ember);
  color: var(--ember-light);
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding: var(--s4) 0;
  transition: background var(--dur-slow) var(--ease),
              padding var(--dur) var(--ease);
}
.nav--solid {
  background: oklch(10% 0.015 30 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--s2) 0;
  border-block-end: 1px solid var(--line);
}

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s6);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-inline-end: auto;
}
.nav__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.nav__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: var(--s6);
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0.02em;
  padding: var(--s2) 0;
  transition: color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--text-1); }

/* Mobile-only nav items hidden on desktop */
.nav__mobile-only { display: none; }

.nav__cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  padding: var(--s2) var(--s4);
  border: 1px solid var(--ember-dim);
  border-radius: 2px;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.nav__cta:hover {
  background: var(--ember);
  color: var(--text-1);
}

.nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--amber);
  transition: color var(--dur) var(--ease);
}
.nav__phone:hover { color: var(--amber-light); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s2);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-1);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

@media (max-width: 768px) {
  .nav__links, .nav__phone, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    width: 280px;
    background: var(--surface);
    flex-direction: column;
    padding: var(--s9) var(--s6);
    gap: var(--s5);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease);
    z-index: 110;
    border-inline-start: 1px solid var(--line);
  }
  .nav__links.active { display: flex; transform: translateX(0); }
  .nav__links a { font-size: 1rem; color: var(--text-1); min-height: 44px; display: flex; align-items: center; }

  .nav__mobile-only { display: block; }
  .nav__mobile-only:first-of-type { margin-block-start: var(--s5); padding-block-start: var(--s5); border-block-start: 1px solid var(--line); }

  .nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--s3) var(--s5);
    background: var(--ember);
    color: var(--text-1);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    min-height: 48px;
    transition: background var(--dur) var(--ease);
  }
  .nav__mobile-cta:hover { background: var(--ember-light); }

  .nav__mobile-tel {
    font-variant-numeric: tabular-nums;
    color: var(--text-2);
    font-size: 0.9rem;
  }
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: oklch(6% 0.01 30 / 0.75);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease);
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero__glow {
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(201, 48, 48, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(200, 144, 64, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 30% 25% at 50% 52%, rgba(201, 48, 48, 0.12) 0%, transparent 50%);
  animation: glow-pulse 6s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  0% { opacity: 0.75; }
  100% { opacity: 1; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--s5);
}

.hero__badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-block-end: var(--s5);
  opacity: 0;
  transform: translateY(12px);
  animation: hero-in var(--dur-slow) var(--ease) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: var(--text-1);
  opacity: 0;
  transform: translateY(20px);
  animation: hero-in var(--dur-slow) var(--ease) 0.4s forwards;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--ember);
  margin-block-start: var(--s2);
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in var(--dur-slow) var(--ease) 0.55s forwards;
}

.hero__location {
  font-size: 0.9rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  margin-block-start: var(--s5);
  opacity: 0;
  transform: translateY(10px);
  animation: hero-in var(--dur-slow) var(--ease) 0.7s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--s4);
  justify-content: center;
  flex-wrap: wrap;
  margin-block-start: var(--s7);
  opacity: 0;
  transform: translateY(10px);
  animation: hero-in var(--dur-slow) var(--ease) 0.85s forwards;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge, .hero__title, .hero__subtitle, .hero__location, .hero__actions,
  .hero__glow {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero__scroll {
  position: absolute;
  inset-block-end: var(--s6);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  color: var(--text-3);
  z-index: 2;
  padding: var(--s3);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll { animation: none; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero__title { font-size: clamp(4rem, 20vw, 6rem); }
}

/* ═══ STRIP ═══ */
.strip {
  border-block: 1px solid var(--line);
  padding: var(--s5) 0;
  background: var(--surface);
}
.strip__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: var(--s5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.strip__item {
  text-align: center;
}
.strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--text-1);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.strip__item span {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.strip__dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ember-dim);
}

@media (max-width: 393px) {
  .strip__inner { gap: var(--s4); }
  .strip__dot { display: none; }
}

/* ═══ ABOUT ═══ */
.about {
  padding: var(--s10) 0 var(--s9);
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}
.about__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--s8);
  align-items: start;
}
.about__text {
  max-width: 540px;
}
.about__body {
  color: var(--text-2);
  margin-block-end: var(--s5);
  max-width: 52ch;
  line-height: 1.75;
}

.quote {
  margin-block-start: var(--s7);
  padding-inline-start: var(--s5);
  border-inline-start: 2px solid var(--ember-dim);
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.55;
}
.quote footer {
  margin-block-start: var(--s3);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ember);
  letter-spacing: 0.06em;
}

/* Features — editorial list, not identical cards */
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  position: sticky;
  top: 100px;
}
.feature {
  padding: var(--s5) 0 var(--s5) var(--s5);
  border-inline-start: 2px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.feature:hover {
  border-color: var(--ember);
}
.feature:nth-child(2) { border-color: var(--amber-dim); }
.feature:nth-child(2):hover { border-color: var(--amber); }
.feature:nth-child(4) { border-color: var(--amber-dim); }
.feature:nth-child(4):hover { border-color: var(--amber); }
.feature__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ember-dim);
  display: block;
  line-height: 1;
  margin-block-end: var(--s3);
}
.feature:nth-child(2) .feature__num,
.feature:nth-child(4) .feature__num {
  color: var(--amber-dim);
}
.feature__title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-1);
  margin-block-end: var(--s2);
}
.feature__desc {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
  .about__features {
    position: static;
    order: -1;
  }
}
@media (max-width: 480px) {
  .about__features { grid-template-columns: 1fr; }
}

/* ═══ MENU ═══ */
.menu {
  padding: var(--s7) 0 var(--s10);
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
}
.menu__top {
  margin-block-end: var(--s8);
}

.menu__section {
  margin-block-end: var(--s7);
}
.menu__cat {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ember);
  padding-block-end: var(--s3);
  border-block-end: 1px solid var(--line);
  margin-block-end: var(--s4);
}

.menu__list {
  display: flex;
  flex-direction: column;
}
.menu__item {
  padding: var(--s4) 0;
  border-block-end: 1px solid var(--line);
}
.menu__item:last-child { border: none; }

.menu__item-top {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
  flex-wrap: wrap;
}
.menu__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-1);
  min-width: 0;
}
.menu__desc {
  font-size: 0.85rem;
  color: var(--text-3);
  margin-block-start: var(--s1);
  line-height: 1.5;
}

/* Featured burger names are bolder and larger */
.menu__list--featured .menu__name {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

/* Menu badges */
.menu__badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px var(--s2);
  border-radius: 2px;
  white-space: nowrap;
}
.menu__badge--hot {
  background: var(--ember);
  color: var(--text-1);
}
.menu__badge--signature {
  background: var(--amber-dim);
  color: var(--amber-light);
}
.menu__badge--rec {
  color: var(--amber);
  border: 1px solid var(--amber-dim);
}
.menu__badge--premium {
  color: var(--text-1);
  border: 1px solid var(--line-strong);
}

/* Featured burger list: 2 cols on wide screens */
.menu__list--featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .menu__list--featured {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--s8);
  }
  .menu__list--featured .menu__item {
    border-block-end: 1px solid var(--line);
  }
}

/* Secondary menu grid */
.menu__secondary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  margin-block-start: var(--s7);
}
@media (min-width: 768px) {
  .menu__secondary {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s7);
  }
  .menu__secondary .menu__section { margin-block-end: 0; }
}

.menu__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-3);
  margin-block-start: var(--s7);
  padding-block-start: var(--s5);
  border-block-start: 1px solid var(--line);
}
.menu__note a {
  color: var(--ember);
  transition: color var(--dur) var(--ease);
}
.menu__note a:hover { color: var(--ember-light); }

/* ═══ GALLERY ═══ */
.gallery {
  padding: var(--s2) 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: var(--s2);
}
.gallery__item {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  background: var(--surface);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform var(--dur-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--hero { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* Placeholder shown when image hasn't loaded */
.gallery__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  color: var(--text-3);
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--surface-alt) 50%, var(--surface-warm) 100%);
  z-index: 0;
}
.gallery__placeholder svg { opacity: 0.3; }
.gallery__placeholder span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* When image loads, it covers the placeholder */
.gallery__item img[src] {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery__item--hero { grid-column: span 2; grid-row: span 1; }
  .gallery__item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--hero,
  .gallery__item--wide { grid-column: span 1; }
}

/* ═══ REVIEWS ═══ */
.reviews {
  padding: var(--s10) 0;
  background: var(--surface);
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.reviews__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--s6);
  margin-block-end: var(--s8);
}

.reviews__featured {
  padding: var(--s7);
  background: var(--surface-alt);
  border-inline-start: 2px solid var(--ember-dim);
  border-radius: 2px;
}
.reviews__featured p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.5;
}
.reviews__featured footer { margin-block-start: var(--s5); }
.reviews__source {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
}

.reviews__side {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.reviews__card {
  padding: var(--s5);
  border: 1px solid var(--line);
  border-radius: 2px;
  flex: 1;
}
.reviews__card p {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-block-end: var(--s3);
}
.reviews__card footer {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}

.reviews__scores {
  display: flex;
  justify-content: center;
  gap: var(--s8);
  flex-wrap: wrap;
}
.reviews__score { text-align: center; }
.reviews__score strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ember-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.reviews__score span {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .reviews__layout { grid-template-columns: 1fr; }
}

/* ═══ ORDER ═══ */
.order {
  padding: var(--s10) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.order__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}
.order__sub {
  color: var(--text-2);
  font-size: 0.95rem;
  max-width: 36ch;
}

.order__cards {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.order__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) var(--s6);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 72px;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.order__card:hover {
  border-color: var(--line-ember);
  background: var(--surface);
  transform: translateX(4px);
}
.order__card:active { transform: translateX(2px); }

.order__card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-1);
  min-width: 0;
}
.order__card-action {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-3);
  transition: color var(--dur) var(--ease), gap var(--dur) var(--ease);
  white-space: nowrap;
}
.order__card:hover .order__card-action {
  color: var(--ember);
  gap: var(--s3);
}

/* Platform accent borders */
.order__card--ys:hover { border-color: #e61e4d; }
.order__card--getir:hover { border-color: #5d3ebc; }
.order__card--tel:hover { border-color: var(--amber); }
.order__card--tel .order__card-action {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 768px) {
  .order__layout {
    grid-template-columns: 1fr;
    gap: var(--s6);
  }
}

/* ═══ VISIT ═══ */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.visit__map {
  position: relative;
  min-height: 400px;
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visit__info {
  background: var(--surface-warm);
  display: flex;
  align-items: center;
  padding: var(--s8);
}
.visit__content { max-width: 400px; }

.visit__details { margin-block-end: var(--s6); }
.visit__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-block-end: 1px solid var(--line);
}
.visit__row:last-child { border: none; }

.visit__row dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  padding-block-start: 2px;
}
.visit__row dd {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.visit__row dd a {
  color: var(--text-2);
  transition: color var(--dur) var(--ease);
}
.visit__row dd a:hover { color: var(--ember-light); }

.visit__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.visit__tags span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: var(--s1) var(--s3);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text-3);
}

@media (max-width: 768px) {
  .visit { grid-template-columns: 1fr; }
  .visit__map { min-height: 300px; }
  .visit__info { padding: var(--s7) var(--s5); }
}

/* ═══ FOOTER ═══ */
.footer {
  padding: var(--s6) 0;
  padding-block-end: calc(var(--s6) + env(safe-area-inset-bottom, 0px));
  border-block-start: 1px solid var(--line);
}
@media (max-width: 768px) {
  /* Offset for mobile sticky bar */
  .footer { padding-block-end: calc(72px + env(safe-area-inset-bottom, 0px)); }
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s5);
}
.footer__left {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ember-dim);
  color: var(--text-1);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}
.footer__text {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.35;
}
.footer__social {
  display: flex;
  gap: var(--s4);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-3);
  transition: color var(--dur) var(--ease);
}
.footer__social a:hover { color: var(--ember); }

/* ═══ MOBILE STICKY BAR ═══ */
.mobile-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-bar {
    display: flex;
    align-items: center;
    gap: var(--s3);
    position: fixed;
    inset-block-end: 0;
    inset-inline: 0;
    z-index: 80;
    padding: var(--s3) var(--s5);
    padding-block-end: calc(var(--s3) + env(safe-area-inset-bottom, 0px));
    background: oklch(10% 0.015 30 / 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-block-start: 1px solid var(--line);
  }
  .mobile-bar__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    color: var(--amber);
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  }
  .mobile-bar__phone:active { border-color: var(--amber); color: var(--amber-light); }
  .mobile-bar__order {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 48px;
    background: var(--ember);
    color: var(--text-1);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background var(--dur) var(--ease);
  }
  .mobile-bar__order:active { background: var(--ember-light); }

  /* Push WA float above the bar */
  .wa-float { inset-block-end: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed;
  inset-block-end: calc(var(--s5) + env(safe-area-inset-bottom, 0px));
  inset-inline-end: var(--s5);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow:
    0 4px 12px rgba(37, 211, 102, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow:
    0 6px 20px rgba(37, 211, 102, 0.4),
    0 3px 6px rgba(0, 0, 0, 0.3);
}
.wa-float:active { transform: scale(0.95); }

/* ═══ SCROLL REVEALS ═══ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
