/* ==============================================
   SOFRAM — Döner Kebab & Turkse Bakkerij · Lokeren
   Design: Oriental Premium · Or & Noir
   ============================================== */

:root {
  /* Noir & Doré (sans brun) */
  --gold: #E8C24A;         /* doré principal */
  --gold-light: #F8E6A0;   /* reflet clair */
  --gold-bright: #F4D96B;  /* doré vif */
  --gold-dark: #C6A031;    /* doré profond (pas brun) */
  --gold-deep: #96751b;

  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --charcoal: #2a2a2a;

  --cream: #f4f4f1;        /* blanc cassé neutre */
  --cream-2: #e8e8e4;
  --beige: #d9d9d3;

  --red: #B8232E;
  --green: #2e7d32;

  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --text-muted: #8a8a8a;
  --line: rgba(230,190,60, .18);
  --line-dark: rgba(255,255,255,.08);

  --display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --heading: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1240px;
  --radius: 4px;
  --radius-lg: 10px;
  --speed: .35s;
  --ease: cubic-bezier(.4,0,.2,1);

  --shadow-gold: 0 8px 30px rgba(230,190,60,.25);
  --shadow-deep: 0 20px 60px rgba(0,0,0,.35);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-2);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color var(--speed) var(--ease); }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { background: none; border: 0; cursor: pointer; font-family: inherit; }
::selection { background: var(--gold); color: var(--black); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }

/* ==============================================
   WORDMARK (logo texte SOFRAM — or dégradé)
   ============================================== */
.wordmark { display: inline-flex; flex-direction: column; line-height: 1; }
.wordmark__name {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.wordmark__sub {
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cream-2);
  align-self: stretch;
}
/* En-tête */
.brand .wordmark__name { font-size: 34px; }
.brand .wordmark__sub {
  font-size: 8.5px; letter-spacing: 3.4px; margin-top: 5px; opacity: .85;
  display: flex; align-items: center; gap: 8px;
}
.brand .wordmark__sub::before,
.brand .wordmark__sub::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,190,60,.5), transparent);
}
.header--scrolled .brand .wordmark__name { font-size: 28px; }

/* ==============================================
   TOPBAR
   ============================================== */
.topbar {
  background: var(--black);
  color: var(--cream-2);
  font-size: 13px;
  border-bottom: 1px solid rgba(230,190,60,.15);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px;
}
.topbar__left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: var(--cream-2); }
.topbar__item svg { color: var(--gold); }
.topbar__sep { color: var(--gold); opacity: .5; }

.status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase;
}
.status--open { color: #6fc06f; }
.status--closed { color: #e87878; }
.status__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(111,192,111,.6); }
  70% { box-shadow: 0 0 0 8px rgba(111,192,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,192,111,0); }
}

/* ==============================================
   HEADER
   ============================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,190,60,.2);
  transition: all var(--speed) var(--ease);
}
.header--scrolled {
  background: rgba(10,10,10,.98);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 30px;
}
.brand { display: flex; align-items: center; }
.brand__logo {
  height: 54px; width: auto;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.5));
  transition: all var(--speed) var(--ease);
}
.brand:hover .brand__logo { transform: scale(1.04); }
.header--scrolled .brand__logo { height: 44px; }

.nav { display: flex; }
.nav__list { display: flex; gap: 4px; }
.nav__link {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-2);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: all var(--speed) var(--ease);
  transform: translateX(-50%);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after,
.nav__link.active::after { width: 30px; }
.nav__link.active { color: var(--gold); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.header__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  border: 1px solid rgba(230,190,60,.4);
  transition: all var(--speed) var(--ease);
  background: rgba(230,190,60,.05);
}
.header__social:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230,190,60,.4);
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display);
  font-weight: 600; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold-dark) 100%);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(230,190,60,.35);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(230,190,60,.5);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-bright) 100%);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}
.btn--ghost {
  background: transparent;
  color: var(--cream-2);
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--sm { padding: 9px 18px; font-size: 11px; }
.btn--lg { padding: 18px 38px; font-size: 14px; }

/* ==============================================
   MOBILE NAV TOGGLE
   ============================================== */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: all var(--speed) var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================================
   ORNAMENT BAR
   ============================================== */
.ornament-bar {
  height: 6px;
  background:
    linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold) 50%, var(--gold-dark) 80%, transparent 100%);
  position: relative;
}
.ornament-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent 0 14px,
    rgba(0,0,0,.15) 14px 16px);
}

.ornament-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  color: var(--gold);
  padding: 40px 0;
  font-size: 14px;
  letter-spacing: 8px;
}
.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-divider span:nth-child(2) { font-size: 20px; }

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: flex; flex-direction: column;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  padding: 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background-color: #0a0a0a;
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(26,26,26,.6) 0%, rgba(12,12,12,.9) 55%, rgba(5,5,5,1) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23E8C24A' stroke-width='0.9' opacity='0.09'%3E%3Cpath d='M70 18 L80 50 L112 40 L98 68 L122 76 L98 84 L112 112 L80 102 L70 134 L60 102 L28 112 L42 84 L18 76 L42 68 L28 40 L60 50 Z'/%3E%3Ccircle cx='70' cy='76' r='8'/%3E%3Cpath d='M70 76 L70 60 M70 76 L70 92 M70 76 L54 76 M70 76 L86 76'/%3E%3C/g%3E%3Cg fill='none' stroke='%23E8C24A' stroke-width='0.6' opacity='0.06'%3E%3Cpath d='M0 70 L20 50 L40 70 L20 90 Z'/%3E%3Cpath d='M100 70 L120 50 L140 70 L120 90 Z'/%3E%3Cpath d='M70 0 L90 20 L70 40 L50 20 Z'/%3E%3Cpath d='M70 100 L90 120 L70 140 L50 120 Z'/%3E%3C/g%3E%3Cg fill='%23E8C24A' opacity='0.15'%3E%3Ccircle cx='0' cy='0' r='1.6'/%3E%3Ccircle cx='140' cy='0' r='1.6'/%3E%3Ccircle cx='0' cy='140' r='1.6'/%3E%3Ccircle cx='140' cy='140' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover, 140px 140px;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(232,194,74,.03), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(232,194,74,.02), transparent 55%);
}

/* Ornement coins */
.hero__pattern {
  position: absolute;
  color: var(--gold);
  opacity: .25;
  font-size: 80px;
  font-family: var(--display);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.hero__pattern--tl { top: 30px; left: 30px; }
.hero__pattern--tr { top: 30px; right: 30px; animation-delay: 1.5s; }
.hero__pattern--bl { bottom: 80px; left: 30px; animation-delay: 3s; }
.hero__pattern--br { bottom: 80px; right: 30px; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 24px 24px 38px;
}
.hero__since {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
  animation: fadeIn 1s ease .2s both;
}

/* Logo du hero (image) — affiché à sa taille native pour rester net */
.hero__logo {
  width: min(492px, 84%);
  height: auto;
  margin: 8px auto 12px;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.6));
  animation: fadeIn 1.2s ease .15s both;
}
@media (max-width: 820px) { .hero__logo { width: min(420px, 82%); } }
.hero__sub-eyebrow {
  font-family: var(--display);
  font-size: clamp(9px, 1.5vw, 12px);
  letter-spacing: clamp(3px, 1.2vw, 6px);
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin: 2px auto 0;
  animation: fadeIn 1s ease .3s both;
}
.hero__sub-eyebrow::before,
.hero__sub-eyebrow::after {
  content: ''; width: clamp(20px, 5vw, 46px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero__tagline {
  font-family: var(--heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--gold-light);
  margin: 2px auto 14px;
  animation: fadeIn 1s ease .35s both;
}
.hero__title {
  font-family: var(--heading);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.1vw, 1.95rem);
  line-height: 1.4;
  margin: 0 auto 20px;
  letter-spacing: .3px;
  color: var(--cream);
  animation: fadeIn 1s ease .4s both;
  max-width: 720px;
}
.hero__title .gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}
.hero__sub {
  font-size: 18px;
  color: var(--cream-2);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeIn 1s ease .6s both;
}
.hero__cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin-bottom: 0;
  animation: fadeIn 1s ease .8s both;
}
.hero__badges {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  position: relative;
  animation: fadeIn 1s ease 1s both;
}
.hero__badges::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 320px;
  max-width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}
.hero-badge {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream-2);
  font-size: 14px;
  padding: 0 32px;
  position: relative;
}
.hero-badge + .hero-badge::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 26px;
  background: linear-gradient(to bottom, transparent, rgba(230,190,60,.45), transparent);
}
.hero-badge__stars { color: var(--gold); letter-spacing: 2px; font-size: 16px; }
.hero-badge__icon { color: var(--gold); font-size: 20px; }
.hero-badge strong { color: var(--gold); }

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

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-anim 1.6s ease-in-out infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

/* ==============================================
   SECTIONS — Common
   ============================================== */
.section { padding: 100px 0; position: relative; }
.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section__eyebrow {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section__eyebrow--light { color: var(--gold); }
.section__title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--cream);
}
.section__title--light { color: var(--cream); }
.section__title .gold { font-style: italic; }
.section__lead {
  font-size: 17px;
  color: rgba(240,240,236,.72);
  line-height: 1.7;
}

/* ==============================================
   ABOUT
   ============================================== */
.about {
  background:
    radial-gradient(ellipse at top, rgba(232,194,74,.025), transparent 60%),
    linear-gradient(180deg, #0b0b0b 0%, #070707 100%);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: stretch;
}
.about__text {
  display: flex;
  flex-direction: column;
}
.about__media {
  position: relative;
}
.about__frame {
  background: var(--black);
  padding: 10px;
  border: 1px solid var(--gold);
  position: relative;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}
.about__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.about__frame::before,
.about__frame::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  border: 2px solid var(--gold);
}
.about__frame::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; }
.about__frame::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; }
.about__logo {
  max-width: 100%;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.5));
}
.about__frame .wordmark {
  align-items: center; text-align: center; width: 100%;
  padding: 14px 0;
}
.about__frame .wordmark__name { font-size: clamp(3rem, 8vw, 5rem); }
.about__frame .wordmark__sub {
  font-size: 10.5px; letter-spacing: 4px; margin-top: 16px; color: var(--gold);
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.about__frame .wordmark__sub::before,
.about__frame .wordmark__sub::after {
  content: ''; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about__years {
  position: absolute;
  bottom: -30px; right: -30px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--black);
  width: 150px; height: 150px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border: 4px solid #111111;
}
.about__years__num {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
.about__years__num span { font-size: 24px; vertical-align: top; }
.about__years__label {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.3;
}

.about__text .section__title { text-align: left; }
.about__text .section__eyebrow { text-align: left; }
.about__text .section__lead { margin-bottom: 18px; }
.about__text p { color: rgba(240,240,236,.68); margin-bottom: 30px; }

.about__features {
  display: grid;
  gap: 18px;
  margin-top: auto;
  margin-bottom: 0;
  padding: 28px 0 4px;
  border-top: 1px solid var(--line);
}
.feat {
  display: flex; gap: 16px; align-items: center;
}
.feat__icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(230,190,60,.28);
}
.feat h4 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 4px;
}
.feat p { font-size: 14px; color: rgba(240,240,236,.62); margin: 0; }

/* ==============================================
   SHOWCASE (Authenticiteit en versheid)
   ============================================== */
.showcase {
  position: relative;
  background: #050505;
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid rgba(230,190,60,.15);
  border-bottom: 1px solid rgba(230,190,60,.15);
}
.showcase__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(232,194,74,.04), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(232,194,74,.03), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(232,194,74,.03), transparent 60%);
  pointer-events: none;
}
.showcase__pattern {
  position: absolute;
  color: var(--gold);
  opacity: .12;
  font-size: 140px;
  font-family: var(--display);
  pointer-events: none;
  line-height: 1;
  animation: float 7s ease-in-out infinite;
}
.showcase__pattern--tl { top: 40px; left: 30px; }
.showcase__pattern--br { bottom: 40px; right: 30px; animation-delay: 3.5s; }

.showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.showcase__media {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 460px;
}
.showcase__ring {
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(230,190,60,.3);
  animation: ring-rotate 30s linear infinite;
}
.showcase__ring::before, .showcase__ring::after {
  content: '❋';
  position: absolute;
  color: var(--gold);
  font-size: 22px;
  top: 50%;
  transform: translateY(-50%);
}
.showcase__ring::before { left: -12px; }
.showcase__ring::after { right: -12px; }
.showcase__ring--2 {
  width: 500px; height: 500px;
  border-style: dashed;
  border-color: rgba(230,190,60,.18);
  animation-duration: 50s;
  animation-direction: reverse;
}
@keyframes ring-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.showcase__img-wrap {
  position: relative;
  width: 380px; height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.5),
    0 20px 60px rgba(230,190,60,.35),
    inset 0 0 40px rgba(0,0,0,.4);
}
.showcase__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.showcase__media:hover .showcase__img { transform: scale(1.08); }

.showcase__stamp {
  position: absolute;
  bottom: 30px; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border: 3px solid #050505;
  font-family: var(--display);
  transform: rotate(-12deg);
  animation: stamp-wobble 4s ease-in-out infinite;
}
.showcase__stamp span {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.showcase__stamp small {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}
@keyframes stamp-wobble {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(-6deg) scale(1.04); }
}

.showcase__text { max-width: 580px; }
.showcase__title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
  color: var(--cream);
  margin: 14px 0 30px;
}
.showcase__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase__text p {
  font-size: 16px;
  color: rgba(240,240,236,.78);
  line-height: 1.85;
  margin-bottom: 20px;
}
.showcase__text p strong { color: var(--gold); font-weight: 600; }

.showcase__quote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 28px 0 !important;
  font-family: var(--heading);
  font-size: 19px !important;
  color: var(--cream) !important;
}
.showcase__quote em { font-style: italic; }

.showcase__cta { margin-top: 36px; }

/* ==============================================
   POPULAR PRODUCTS
   ============================================== */
.popular {
  background:
    radial-gradient(ellipse at top, rgba(232,194,74,.028), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  color: var(--cream);
  position: relative;
}
.popular::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.popular .section__title { color: var(--cream); }
.popular .section__eyebrow { color: var(--gold); }
.popular .section__lead { color: rgba(240,240,236,.7); }

.popular__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pcard {
  background: linear-gradient(180deg, #181818 0%, #131313 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(230,190,60,.18);
  transition: all var(--speed) var(--ease);
  display: flex; flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.pcard:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(230,190,60,.3), 0 0 0 1px rgba(230,190,60,.4);
}
.pcard__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(230,190,60,.25), transparent 60%),
    linear-gradient(135deg, var(--black-3) 0%, var(--black) 100%);
}
.pcard__img-wrap[data-emoji]::before {
  content: attr(data-emoji);
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 90px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.4));
  z-index: 0;
  opacity: .85;
}
.pcard__img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.pcard:hover .pcard__img-wrap img { transform: scale(1.08); }
.pcard__img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.4) 100%);
}
.pcard__badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--black);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(230,190,60,.5);
}
.pcard__badge--chef {
  background: linear-gradient(135deg, var(--black-3), var(--black));
  color: var(--gold);
  border: 1px solid var(--gold);
}
.pcard__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.pcard__body h3 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
  transition: color var(--speed) var(--ease);
}
.pcard:hover .pcard__body h3 { color: var(--gold); }
.pcard__body p {
  font-size: 14px;
  color: rgba(240,240,236,.65);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.pcard__foot {
  display: flex; justify-content: center; align-items: center;
  padding-top: 16px;
  border-top: 1px dashed rgba(230,190,60,.2);
}
.pcard__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
}

.popular__more {
  text-align: center;
  margin-top: 50px;
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-dark:hover {
  background: var(--black);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}

/* ==============================================
   MENU
   ============================================== */
.menu {
  background: var(--black);
  color: var(--cream);
  position: relative;
}
.menu::before, .menu::after {
  content: '';
  position: absolute;
  left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.menu::before { top: 0; }
.menu::after { bottom: 0; }

.menu .section__title { color: var(--cream); }
.menu .section__eyebrow { color: var(--gold); }
.menu .section__lead { color: rgba(240,240,236,.7); }

.menu__tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 56px;
  padding: 9px;
  background: var(--black-2);
  border: 1px solid rgba(230,190,60,.25);
  border-radius: 50px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 10px 30px rgba(0,0,0,.4);
}
.menu__tabs::-webkit-scrollbar { display: none; }
.tab {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 13px 15px;
  border-radius: 50px;
  transition: all var(--speed) var(--ease);
  white-space: nowrap;
  flex: 0 0 auto;
}
.tab:hover { color: var(--gold); }
.tab.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 16px rgba(230,190,60,.3);
}

.menu__panel { display: none; animation: fadeUp .5s ease; }
.menu__panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 52px;
}

.dish {
  padding: 4px 0 12px;
  border-bottom: 1px dashed rgba(230,190,60,.15);
  transition: all var(--speed) var(--ease);
}
.dish:hover { transform: translateX(4px); }
.dish:hover h3 { color: var(--gold); }

.dish__head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 0;
}
.dish__head h3 {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 18px;
  color: var(--cream);
  transition: color var(--speed) var(--ease);
}
.dish__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(230,190,60,.4);
  align-self: end;
  margin-bottom: 5px;
}
.dish__price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--gold);
  white-space: nowrap;
}
.dish p {
  font-size: 14px;
  color: rgba(240,240,236,.65);
  line-height: 1.6;
}

.dish__tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.tag {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid;
}
.tag--popular { color: var(--gold); border-color: var(--gold-dark); background: rgba(230,190,60,.08); }
.tag--veg { color: var(--cream-2); border-color: rgba(232,194,74,.35); background: rgba(255,255,255,.04); }
.tag--spicy { color: var(--cream-2); border-color: rgba(232,194,74,.35); background: rgba(255,255,255,.04); }
.tag--chef { color: var(--gold-light); border-color: var(--gold); background: rgba(230,190,60,.12); }
.tag--sweet { color: var(--gold-light); border-color: var(--gold-dark); background: rgba(230,190,60,.08); }

.menu__note {
  margin-top: 60px;
  text-align: center;
  padding: 20px 30px;
  background: rgba(230,190,60,.06);
  border: 1px dashed rgba(230,190,60,.3);
  border-radius: var(--radius-lg);
  color: var(--cream-2);
  font-size: 14px;
}
.menu__note strong { color: var(--gold); }

/* ==============================================
   REVIEWS
   ============================================== */
.reviews {
  background: var(--black-2);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.reviews__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(230,190,60,.06), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(230,190,60,.06), transparent 40%);
}
.reviews .container { position: relative; z-index: 1; }

.rating-summary {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 70px;
  background: var(--black);
  border: 1px solid rgba(230,190,60,.25);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-deep);
}
.rating-summary__big { text-align: center; border-right: 1px solid rgba(230,190,60,.15); padding-right: 40px; }
.rating-summary__num {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating-summary__stars {
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 3px;
  margin: 10px 0;
}
.rating-summary__total { color: var(--cream-2); font-size: 14px; }

.rating-summary__sources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.rating-source {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(230,190,60,.15);
  border-radius: var(--radius);
  transition: all var(--speed) var(--ease);
}
.rating-source:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.rating-source__brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.rating-source__score {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 6px;
}
.rating-source__score strong { color: var(--cream); margin-left: 6px; font-weight: 700; }
.rating-source__count { font-size: 13px; color: var(--text-muted); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--black);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230,190,60,.15);
  transition: all var(--speed) var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--heading);
  font-size: 80px;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.review-card__stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.review-card__text {
  font-family: var(--heading);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 18px;
  flex: 1 0 auto;
}
.review-card__author {
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid rgba(230,190,60,.15);
  margin-top: auto;
}
.review-card__author strong { color: var(--gold); }

/* ==============================================
   CONTACT
   ============================================== */
.contact {
  background:
    radial-gradient(ellipse at bottom, rgba(232,194,74,.025), transparent 60%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
}
.contact__card {
  background: var(--black);
  color: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(230,190,60,.2);
  box-shadow: var(--shadow-deep);
  position: relative;
}
.contact__card__title {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(230,190,60,.2);
}
.contact__row {
  display: flex; gap: 16px;
  padding: 16px 0;
  align-items: flex-start;
  border-bottom: 1px solid rgba(230,190,60,.08);
}
.contact__row:last-of-type { border-bottom: 0; }
.contact__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(230,190,60,.12);
  border: 1px solid rgba(230,190,60,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact__row h4 {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact__row p { font-size: 15px; color: var(--cream-2); line-height: 1.5; }
.contact__row a { color: var(--cream); transition: color var(--speed); }
.contact__row a:hover { color: var(--gold); }
.contact__link {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold) !important;
}
.contact__link:hover { color: var(--gold-bright) !important; }
.muted { color: var(--text-muted); font-size: 13px; }

.contact__socials {
  display: flex; gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(230,190,60,.15);
}
.contact__socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--speed) var(--ease);
}
.contact__socials a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.hours { display: flex; flex-direction: column; gap: 2px; }
.hours li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: var(--radius);
  transition: all var(--speed) var(--ease);
  color: var(--cream-2);
}
.hours li:first-child span:first-child { font-weight: 600; }
.hours li.today {
  background: linear-gradient(90deg, rgba(230,190,60,.15), transparent);
  border-left: 3px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  padding-left: 11px;
}
.hours li span:first-child { font-family: var(--display); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.hours li span:last-child { font-family: var(--body); }

.hours__note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(230,190,60,.15);
  text-align: center;
}

.contact__card--map {
  padding: 0;
  overflow: hidden;
  min-height: 400px;
}
.contact__card--map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(40%) contrast(1.05);
  transition: filter var(--speed) var(--ease);
}
.contact__card--map:hover iframe { filter: grayscale(0%) contrast(1); }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: linear-gradient(180deg, #050505, var(--black));
  color: var(--cream-2);
  padding-top: 70px;
  border-top: 1px solid rgba(230,190,60,.2);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer__logo {
  height: 58px; width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
}
.footer__brand .wordmark { margin-bottom: 18px; }
.footer__brand .wordmark__name { font-size: 42px; }
.footer__brand .wordmark__sub {
  font-size: 9px; letter-spacing: 3px; margin-top: 6px; color: var(--gold);
}
.footer__tag {
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--heading);
  font-size: 16px;
  max-width: 280px;
}
.footer__col h4 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer__col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col li { color: var(--cream-2); font-size: 14px; }
.footer__col a:hover { color: var(--gold); }

.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(230,190,60,.4);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--speed) var(--ease);
}
.footer__socials a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(230,190,60,.12);
  padding: 24px 0;
}
.footer__bottom__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==============================================
   FAB
   ============================================== */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(230,190,60,.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(.8);
  transition: all var(--speed) var(--ease);
  animation: pulse-fab 2.5s ease-in-out infinite;
}
.fab.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(230,190,60,.6);
}
@keyframes pulse-fab {
  0%, 100% { box-shadow: 0 8px 24px rgba(230,190,60,.5), 0 0 0 0 rgba(230,190,60,.4); }
  50% { box-shadow: 0 8px 24px rgba(230,190,60,.5), 0 0 0 14px rgba(230,190,60,0); }
}

/* ==============================================
   ANIMATIONS (scroll reveal)
   ============================================== */
.anim { opacity: 0; transition: all .8s var(--ease); }
.anim--up { transform: translateY(40px); }
.anim--left { transform: translateX(-40px); }
.anim--right { transform: translateX(40px); }
.anim--scale { transform: scale(.94); }
.anim.show { opacity: 1; transform: translate(0,0) scale(1); }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__media { max-width: 450px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .contact__card--map { grid-column: 1 / -1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .rating-summary { grid-template-columns: 1fr; }
  .rating-summary__big { border-right: 0; border-bottom: 1px solid rgba(230,190,60,.15); padding-right: 0; padding-bottom: 30px; }

  .showcase__grid { grid-template-columns: 1fr; gap: 70px; text-align: center; }
  .showcase__text { max-width: 100%; margin: 0 auto; }
  .showcase__quote { text-align: left; max-width: 600px; margin-left: auto !important; margin-right: auto !important; }
  .showcase__cta { text-align: center; }

  .popular__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 820px) {
  .topbar__left { font-size: 12px; }
  .topbar__item:first-child { display: none; }

  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 88%;
    max-width: 360px;
    background: var(--black);
    padding: 120px 30px 30px;
    transform: translateX(100%);
    transition: transform var(--speed) var(--ease);
    border-left: 1px solid var(--gold);
    box-shadow: -10px 0 40px rgba(0,0,0,.5);
  }
  .nav.active { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 4px; align-items: flex-start; }
  .nav__link { display: block; width: 100%; padding: 14px 0; font-size: 16px; }
  .nav__link::after { display: none; }

  .header__cta { gap: 6px; }
  .header__social { width: 36px; height: 36px; }
  .header__cta .btn { padding: 8px 14px; font-size: 10px; }
  .brand__logo { height: 48px; }

  .menu__grid { grid-template-columns: 1fr; gap: 28px 0; }
  .menu__tabs { padding: 6px; gap: 4px; max-width: 100%; }
  .tab { padding: 11px 16px; font-size: 11px; letter-spacing: 1.5px; }

  .section { padding: 70px 0; }
  .hero { min-height: auto; padding: 50px 0 60px; }
  .hero__badges { flex-direction: column; gap: 14px; padding-top: 28px; }
  .hero-badge + .hero-badge::before { display: none; }
  .hero-badge { padding: 0; }
  .hero__pattern { font-size: 50px; }

  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 35px; text-align: center; }
  .footer__col h4::after { left: 50%; transform: translateX(-50%); }
  .footer__socials { justify-content: center; }
  .footer__tag { margin: 0 auto; }

  .about__years { width: 110px; height: 110px; bottom: -20px; right: 10px; }
  .about__years__num { font-size: 36px; }

  .rating-summary { padding: 30px; }
  .rating-summary__sources { grid-template-columns: 1fr; }

  .showcase { padding: 80px 0; }
  .showcase__media { min-height: 360px; }
  .showcase__img-wrap { width: 280px; height: 280px; }
  .showcase__ring { width: 320px; height: 320px; }
  .showcase__ring--2 { width: 370px; height: 370px; }
  .showcase__stamp { width: 90px; height: 90px; bottom: 20px; right: -10px; }
  .showcase__stamp span { font-size: 22px; }
  .showcase__stamp small { font-size: 8px; }
  .showcase__pattern { font-size: 80px; }
  .showcase__quote { font-size: 17px !important; }
}

@media (max-width: 480px) {
  .topbar__inner { flex-direction: column; gap: 6px; align-items: flex-start; padding: 8px 16px; }
  .container { padding: 0 16px; }
  .btn--lg { padding: 14px 24px; font-size: 13px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .about__frame { padding: 30px; }
  .contact__card { padding: 26px; }
  .ornament-divider span { font-size: 12px; }
  .ornament-divider span:nth-child(2) { font-size: 16px; }

  .popular__grid { grid-template-columns: 1fr; }
  .showcase__img-wrap { width: 240px; height: 240px; }
  .showcase__ring { width: 280px; height: 280px; }
  .showcase__ring--2 { width: 320px; height: 320px; }
}

/* ==============================================
   RAFFINEMENTS PREMIUM & TOUCHE TURQUE
   ============================================== */

/* Accessibilité : titre masqué visuellement */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Devise turque du hero */
.hero__motto {
  font-family: var(--heading);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.35rem, 3.4vw, 2.15rem);
  line-height: 1.3;
  margin: 6px auto 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeIn 1s ease .35s both;
}
.hero__motto-tr {
  font-size: 15px;
  letter-spacing: .3px;
  color: rgba(240,240,236,.72);
  max-width: 40ch;
  margin: 0 auto 30px;
  animation: fadeIn 1s ease .5s both;
}

/* Ornement turc (croissant + étoile + mot) */
.divider-tr {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 34px);
  padding: clamp(46px, 7vw, 70px) 24px;
  background: var(--black);
}
.divider-tr--closing { background: transparent; }
.divider-tr::before, .divider-tr::after {
  content: ''; height: 1px; width: min(200px, 24vw);
}
.divider-tr::before { background: linear-gradient(90deg, transparent, var(--gold-dark) 60%, var(--gold)); }
.divider-tr::after  { background: linear-gradient(90deg, var(--gold), var(--gold-dark) 40%, transparent); }
.divider-tr__mark {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  flex: none;
}
.divider-tr__icon {
  font-size: clamp(20px, 3vw, 26px);
  color: var(--gold);
  line-height: 1;
  display: inline-flex; align-items: center; gap: 5px;
  filter: drop-shadow(0 0 10px rgba(232,194,74,.25));
}
.divider-tr__icon i { font-size: .62em; font-style: normal; transform: translateY(-.35em); }
.divider-tr__word {
  font-family: var(--display);
  font-size: clamp(11px, 2vw, 13px);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Sous-titre turc discret sur les plats (İskender, Pide…) */
.dish__tr {
  font-family: var(--body);
  font-style: italic;
  font-size: .62em;
  font-weight: 400;
  letter-spacing: .3px;
  color: var(--gold-dark);
  margin-left: 6px;
  vertical-align: baseline;
}

/* Filet doré discret en tête de section (rythme premium) */
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
}

/* Motif ottoman subtil en fond de la section avis */
.reviews {
  background:
    var(--black-2)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23E8C24A' stroke-width='0.7' opacity='0.05'%3E%3Cpath d='M60 6 L69 42 L105 33 L78 60 L105 87 L69 78 L60 114 L51 78 L15 87 L42 60 L15 33 L51 42 Z'/%3E%3Ccircle cx='60' cy='60' r='9'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 120px 120px;
}

/* Sceau « à propos » : liseré doré fin + croissant */
.about__years { border-color: #0a0a0a; }
.about__years::after {
  content: '☾'; position: absolute; top: 10px; right: 14px;
  font-size: 13px; color: rgba(10,10,10,.55);
}

/* Cartes produit : léger raffinement du survol */
.pcard { transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease); }

/* Focus visible accessible (qualité) */
a:focus-visible, button:focus-visible, .tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ==============================================
   STUDENTENMENU — encart 3 formules
   ============================================== */
.studentmenu {
  max-width: 820px;
  margin: 0 auto 44px;
  padding: 20px 24px 22px;
  border: 1px solid rgba(232,194,74,.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at top, rgba(232,194,74,.04), transparent 60%),
    var(--black-2);
  box-shadow: 0 12px 34px rgba(0,0,0,.3);
}
.studentmenu__head { text-align: center; margin-bottom: 16px; }
.studentmenu__title {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: .4px;
}
.studentmenu__sub {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}
.studentmenu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.studentmenu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 12px;
  border: 1px solid rgba(232,194,74,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.02);
  transition: transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.studentmenu__item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.studentmenu__num {
  font-family: var(--display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-dark));
  padding: 3px 10px;
  border-radius: 50px;
}
.studentmenu__desc {
  font-size: 12.5px;
  color: var(--cream-2);
  line-height: 1.35;
  flex: 1 0 auto;
}
.studentmenu__price {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
}
@media (max-width: 640px) {
  .studentmenu__grid { grid-template-columns: 1fr; }
}

/* ==============================================
   MENU — indication de taille & sous-titres
   ============================================== */
.menu__sizehint {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: right;
  margin: -6px 0 20px;
}
.menu__sizehint span { color: var(--gold); font-weight: 700; }
.menu__subhead {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,194,74,.2);
}
.menu__subhead:not(:first-child) { margin-top: 42px; }
