/* ════════════════════════════════════════════════
   LEZZET PİDE & KEBAP — PROFESSIONAL STYLESHEET
   Design: Editorial Dark Luxury Restaurant
   Fonts: Cormorant Garamond (display) + Barlow (body)
════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --clr-bg:         #0e0c09;
  --clr-bg-2:       #141210;
  --clr-bg-3:       #1c1915;
  --clr-bg-card:    #191612;
  --clr-surface:    #221e19;
  --clr-red:        #C1121F;
  --clr-red-sat:    #D91A2A;
  --clr-red-muted:  #8B1219;
  --clr-gold:       #B8922A;
  --clr-gold-light: #D4A843;
  --clr-white:      #F8F4EF;
  --clr-off:        #E8E0D5;
  --clr-muted:      #9A9189;
  --clr-border:     rgba(248,244,239,.07);
  --clr-border-red: rgba(193,18,31,.25);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Barlow', system-ui, sans-serif;
  --ff-cond:    'Barlow Condensed', system-ui, sans-serif;

  --space-xs:  0.375rem;
  --space-sm:  0.75rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3.5rem;
  --space-2xl: 6rem;

  --radius:    2px;
  --radius-sm: 1px;

  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
  --trans:     all 0.3s var(--ease-out);
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--clr-bg);
  color: var(--clr-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ── FOCUS ── */
:focus-visible { outline: 2px solid var(--clr-red); outline-offset: 3px; }

/* ── SELECTION ── */
::selection { background: var(--clr-red); color: var(--clr-white); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-red-muted); border-radius: 2px; }

/* ════════════════════════
   LAYOUT
════════════════════════ */
.container {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}
.section {
  padding-block: var(--space-2xl);
}

/* ════════════════════════
   TYPOGRAPHY UTILITIES
════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--clr-red);
  opacity: 0.7;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--clr-white);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--clr-red);
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.section-head .section-label { justify-content: center; }
.section-desc {
  color: var(--clr-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ════════════════════════
   BUTTONS
════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.9rem;
  border: 1.5px solid transparent;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s;
  background: rgba(255,255,255,0.06);
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}
.btn--primary:hover {
  background: var(--clr-red-sat);
  border-color: var(--clr-red-sat);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(193,18,31,.35);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(248,244,239,0.3);
  color: var(--clr-white);
}
.btn--ghost:hover {
  border-color: var(--clr-white);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-red);
}
.btn--white:hover {
  background: var(--clr-off);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}
.btn--outline-white {
  background: transparent;
  border-color: rgba(248,244,239,.45);
  color: var(--clr-white);
}
.btn--outline-white:hover { border-color: var(--clr-white); }

/* ════════════════════════
   HEADER
════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
#site-header.is-scrolled {
  background: rgba(14,12,9,0.96);
  border-color: var(--clr-border);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 40px rgba(0,0,0,.6);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding-inline: clamp(1rem, 4vw, 3rem);
  max-width: 1400px;
  margin-inline: auto;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-flame {
  width: 22px; height: 28px;
  color: var(--clr-red);
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.04em;
}
.brand-city {
  font-family: var(--ff-cond);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--clr-muted);
  text-transform: uppercase;
  margin-top: 2px;
}
#main-nav ul {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
#main-nav a {
  font-family: var(--ff-cond);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,244,239,.65);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s;
}
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--clr-red);
  transition: width 0.3s var(--ease-out);
}
#main-nav a:hover, #main-nav a.active { color: var(--clr-white); }
#main-nav a:hover::after, #main-nav a.active::after { width: 100%; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--clr-white);
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--clr-border-red);
  transition: var(--trans);
}
.header-phone:hover {
  background: var(--clr-red);
  border-color: var(--clr-red);
  transform: translateY(-1px);
}
#nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 10;
}
#nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--clr-white);
  transition: var(--trans);
  transform-origin: center;
}
#nav-toggle[aria-expanded=true] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#nav-toggle[aria-expanded=true] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#nav-toggle[aria-expanded=true] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ════════════════════════
   HERO
════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 74px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(193,18,31,.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 15%, rgba(193,18,31,.06) 0%, transparent 60%),
    linear-gradient(180deg, #0e0c09 0%, #12100c 50%, #0e0c09 100%);
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(14,12,9,.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding-inline: 1.5rem;
  animation: heroIn 1.2s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1.6rem;
  animation: heroIn 1.2s 0.1s var(--ease-out) both;
}
.eyebrow-line { width: 28px; height: 1px; background: var(--clr-border); }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 1.6rem;
  animation: heroIn 1.2s 0.2s var(--ease-out) both;
}
.hero-title strong { font-weight: 700; color: var(--clr-red); display: block; }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--clr-muted);
  max-width: 480px;
  margin: 0 auto 2.4rem;
  line-height: 1.75;
  animation: heroIn 1.2s 0.3s var(--ease-out) both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: heroIn 1.2s 0.4s var(--ease-out) both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.4rem 2.5rem;
  border: 1px solid var(--clr-border);
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(8px);
  animation: heroIn 1.2s 0.55s var(--ease-out) both;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-red);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.hero-stat-div { width: 1px; height: 36px; background: var(--clr-border); }
.hero-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--clr-muted);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.25s;
  animation: bounce 2s ease-in-out infinite 1.5s;
}
.hero-scroll-cue:hover { color: var(--clr-white); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(5px); }
}

/* ════════════════════════
   STRIP
════════════════════════ */
.strip {
  background: var(--clr-red);
  padding: 0.75rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.strip-inner span {
  font-family: var(--ff-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
}
.strip-dot { color: rgba(255,255,255,.4) !important; font-size: 0.5rem !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ════════════════════════
   MENU SECTION
════════════════════════ */
.menu-section { background: var(--clr-bg-2); }

.menu-tabs {
  display: flex;
  border: 1px solid var(--clr-border);
  margin-bottom: var(--space-xl);
  overflow: hidden;
  width: fit-content;
  margin-inline: auto;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  font-family: var(--ff-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-muted);
  background: transparent;
  transition: var(--trans);
  position: relative;
}
.tab-btn.active {
  color: var(--clr-white);
  background: var(--clr-red);
}
.tab-btn:not(.active):hover { color: var(--clr-white); background: var(--clr-surface); }
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(255,255,255,.12);
  color: inherit;
}
.tab-btn.active .tab-count { background: rgba(0,0,0,.2); }

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--clr-border);
}
.menu-grid[hidden] { display: none; }
.menu-grid.active { display: grid; }

.menu-card {
  background: var(--clr-bg-card);
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.menu-card:hover { background: var(--clr-bg-3); }
.menu-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--clr-bg-3);
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.menu-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--clr-surface);
}
.menu-card-placeholder svg { width: 80px; height: 50px; }
.menu-card-placeholder span {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-surface);
}
.menu-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--ff-cond);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-white);
  background: var(--clr-red);
  padding: 3px 8px;
}
.menu-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.25;
  margin-bottom: 0.55rem;
}
.menu-card-body p {
  font-size: 0.855rem;
  color: var(--clr-muted);
  line-height: 1.65;
  flex: 1;
}
.menu-card-price {
  margin-top: 1rem;
  font-family: var(--ff-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold-light);
}

/* ════════════════════════
   ABOUT SECTION
════════════════════════ */
.about-section {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: var(--clr-bg-2);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  position: relative;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 380px;
}
.about-frame-inner {
  height: 100%;
  background: var(--clr-bg-3);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-frame-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(193,18,31,.22) 0%, transparent 65%);
}
.about-emblem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-flame {
  width: 80px; height: 100px;
  color: var(--clr-red);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(193,18,31,.5));
  animation: flamePulse 3s ease-in-out infinite;
}
@keyframes flamePulse {
  0%,100% { filter: drop-shadow(0 0 20px rgba(193,18,31,.4)); transform: scale(1); }
  50%      { filter: drop-shadow(0 0 45px rgba(193,18,31,.7)); transform: scale(1.03); }
}
.emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}
.emblem-ring--1 { width: 130px; height: 130px; border-color: rgba(193,18,31,.15); }
.emblem-ring--2 { width: 180px; height: 180px; border-color: rgba(193,18,31,.07); }
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--clr-red);
  padding: 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 2;
}
.about-badge strong {
  font-family: var(--ff-cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
.about-badge span {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}
.about-content { position: relative; }
.about-content p {
  font-size: 0.95rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.about-pillars {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-3);
  transition: border-color 0.25s;
}
.about-pillars li:hover { border-color: var(--clr-border-red); }
.pillar-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border-red);
  background: rgba(193,18,31,.07);
}
.pillar-icon svg { width: 16px; height: 16px; color: var(--clr-red); }
.about-pillars li strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--clr-white); margin-bottom: 2px; }
.about-pillars li span { font-size: 0.8rem; color: var(--clr-muted); line-height: 1.5; }

/* ════════════════════════
   CTA
════════════════════════ */
.cta-section {
  background: var(--clr-red);
  padding-block: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 30px,
    rgba(0,0,0,.05) 30px,
    rgba(0,0,0,.05) 31px
  );
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}
.cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--clr-white);
  line-height: 1.2;
}
.cta-text p { color: rgba(255,255,255,.7); font-size: 0.95rem; margin-top: 0.4rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ════════════════════════
   CONTACT
════════════════════════ */
.contact-section { background: var(--clr-bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--clr-border);
  border-top: none;
  transition: background 0.25s;
}
.contact-item:first-child { border-top: 1px solid var(--clr-border); }
.contact-item:hover { background: var(--clr-bg-3); }
.contact-item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-border-red);
  background: rgba(193,18,31,.07);
}
.contact-item-icon svg { width: 17px; height: 17px; color: var(--clr-red); }
.contact-item-body { flex: 1; }
.contact-item-body strong {
  display: block;
  font-family: var(--ff-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.4rem;
}
.contact-item-body span { font-size: 0.875rem; color: var(--clr-muted); line-height: 1.65; }
.contact-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-red);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.contact-link:hover { color: var(--clr-red-sat); }
.contact-phone {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--clr-red); }
.contact-social {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--clr-border);
  width: fit-content;
}
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  color: var(--clr-muted);
  border-right: 1px solid var(--clr-border);
  transition: var(--trans);
}
.contact-social a:last-child { border-right: none; }
.contact-social a:hover { background: var(--clr-red); color: var(--clr-white); }
.contact-social svg { width: 17px; height: 17px; }
.contact-map {
  height: 440px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.contact-map iframe { filter: saturate(0.6) contrast(1.1); transition: filter 0.3s; }
.contact-map:hover iframe { filter: saturate(0.8); }

/* ════════════════════════
   FOOTER
════════════════════════ */
.footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding-block: 1.8rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand svg { width: 18px; height: 22px; color: var(--clr-red); }
.footer-brand span {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.04em;
}
.footer-copy { font-size: 0.78rem; color: var(--clr-muted); }
.footer-admin {
  font-size: 0.68rem;
  color: rgba(255,255,255,.06);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.footer-admin:hover { color: var(--clr-red); }

/* ════════════════════════
   STICKY PHONE
════════════════════════ */
.sticky-btns {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
}
.sticky-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: var(--trans);
  position: relative;
}
.sticky-btn svg { width: 22px; height: 22px; }
.sticky-btn:hover { transform: scale(1.1); }
.sticky-btn--wa {
  background: #25D366;
  color: white;
}
.sticky-btn--wa:hover { background: #20ba59; box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.sticky-btn--wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(37,211,102,.4);
  animation: sonar-wa 2.8s linear infinite;
}
@keyframes sonar-wa {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.sticky-btn--phone {
  background: var(--clr-red);
  color: white;
}
.sticky-btn--phone svg { width: 20px; height: 20px; }
.sticky-btn--phone:hover { background: var(--clr-red-sat); box-shadow: 0 8px 24px rgba(193,18,31,.4); }
.sticky-btn--phone::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(193,18,31,.4);
  animation: sonar 2.5s linear infinite 0.5s;
}
@keyframes sonar {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ════════════════════════
   SCROLL ANIMATIONS
════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 320px; }
  .about-grid { grid-template-columns: 1fr 1.3fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .section { padding-block: 4rem; }
  #main-nav {
    display: none;
    position: fixed;
    inset: 74px 0 0;
    background: rgba(14,12,9,.98);
    backdrop-filter: blur(20px);
    z-index: 890;
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--clr-border);
  }
  #main-nav.is-open { display: flex; align-items: flex-start; }
  #main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  #main-nav a {
    display: block;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-off);
  }
  #nav-toggle { display: flex; }
  .header-phone { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-frame { max-width: 100%; aspect-ratio: 4/3; }
  .about-badge { right: 0; }
  .about-section::before { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-stats { gap: 1.2rem; padding: 1rem 1.5rem; }
  .menu-tabs { width: 100%; }
  .tab-btn { flex: 1; justify-content: center; padding: 0.85rem 0.75rem; }
  .menu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stat-div:nth-of-type(3) { display: none; }
  .hero-stats { gap: 1rem; }
  .hero-stat:nth-child(5) { display: none; }
}
