/* ═══════════════════════════════════════════
   Stack & Dome — Premium Design System v3
   ═══════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
  font-family: "Coastal Round";
  src: url("../fonts/ksek6fhCNz2KQb5175XKUappcpA.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Bold Condensed";
  src: url("../fonts/uCoJ5t1JzBVbOxrV0bTWjv8niPU.woff2") format("woff2");
  font-display: swap;
}

/* ── Tokens ── */
:root {
  --color-bg: #FFFBE1;
  --color-surface: #1a1a1a;
  --color-surface-alt: #242424;
  --color-coral: #d85a5e;
  --color-coral-hover: #c24a4e;
  --color-coral-glow: rgba(216, 90, 94, 0.25);
  --color-text-dark: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-text-light: #f5f5f5;
  --color-border: rgba(0, 0, 0, 0.06);
  --color-border-light: rgba(255, 255, 255, 0.08);
  --color-star: #ffd55a;
  --color-white: #ffffff;
  --color-cream-dark: #f0e6c4;

  --font-display: "Coastal Round", sans-serif;
  --font-body: "Myriad Pro Bold Condensed", sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 48px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --max-width: 1200px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 12px 48px rgba(0, 0, 0, 0.4);

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Utility ── */
.text-center {
  text-align: center;
}

/* ═══════════════════════════════════════════
   BRAND DIVIDER (the dip line from logo)
   ═══════════════════════════════════════════ */
.brand-dip {
  display: block;
  width: 160px;
  height: auto;
  margin: 48px auto;
  opacity: 0.7;
}

.brand-dip path {
  fill: var(--color-coral);
}

.brand-dip--light path {
  fill: rgba(255, 255, 255, 0.15);
}

.brand-dip--small {
  width: 100px;
  margin: 32px auto;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 36px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn--coral {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: 0 4px 16px var(--color-coral-glow);
}

.btn--coral:hover {
  background: var(--color-coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--color-coral-glow);
}

.btn--coral:active {
  transform: translateY(0);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-surface);
  color: var(--color-surface);
}

.btn--outline:hover {
  background: var(--color-surface);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-dark);
  padding: 0 16px;
}

.btn--ghost:hover {
  color: var(--color-coral);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.navbar__inner {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-white);
  letter-spacing: 1.5px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__link {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
  letter-spacing: 0.5px;
}

.navbar__link:hover {
  color: var(--color-white);
}

.navbar__cta {
  height: 42px;
  padding: 0 24px;
  font-size: 18px;
  border-radius: var(--radius-sm);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  cursor: pointer;
}

.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 4px;
  transition: all 0.3s;
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-surface);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .navbar__link {
  font-size: 24px;
  color: var(--color-white);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 8px 0 0;
  margin-bottom: 80px;
}

.hero__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 540px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}

.hero__content {
  max-width: 500px;
  z-index: 2;
  position: relative;
}

.hero__title {
  font-size: 56px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__image {
  position: absolute;
  right: -10px;
  top: 52%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 720px;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s ease;
}

.hero__card:hover .hero__image {
  transform: translateY(-50%) scale(1.02) translateX(-10px);
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════ */
.section-header {
  margin-bottom: 48px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: 44px;
  color: var(--color-surface);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title--light {
  color: var(--color-white);
}

.section-desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 16px;
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.6);
}

.section-desc--center {
  margin-left: auto;
  margin-right: auto;
}

.section-disclaimer {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-coral);
  opacity: 0.8;
  margin: 16px auto 0;
  max-width: 600px;
  text-align: center;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   DELIVERY PARTNERS
   ═══════════════════════════════════════════ */
.partners-section {
  padding: 48px 0;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
  /* removing the dark background block for better integration */
}

.partners-container {
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.partners-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-coral);
  margin-bottom: 32px;
  font-weight: 500;
}

.partners-marquee {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-transparent-bg, var(--color-cream)), transparent);
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-transparent-bg, var(--color-cream)), transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 40px;
  animation: marqueeLoop 35s linear infinite;
  white-space: nowrap;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Typographic Logos */
.partner-logo {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--color-text-dark);
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition-med);
  cursor: pointer;
  display: flex;
  align-items: center;
  background: var(--color-white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: currentColor;
}

.partner-logo--uber b {
  font-weight: 800;
  margin-right: 6px;
}

.partner-logo--deliveroo {
  font-family: sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: #00CCBC;
}

.partner-logo--justeat {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-style: italic;
  color: #F36D00;
}

.partner-logo--talabat {
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #FF5A00;
}

.partner-logo--noon {
  font-weight: 800;
  color: #FEE000;
}

.partner-logo--noon span {
  font-weight: 400;
  color: #333333;
  margin-left: 6px;
}

.partner-logo--keeta {
  font-family: serif;
  font-weight: bold;
  font-style: italic;
  color: #FFCC00;
  letter-spacing: 1px;
}

.partner-logo--careem {
  font-weight: 800;
  color: #21A538;
}

/* ═══════════════════════════════════════════
   MENU SECTION
   ═══════════════════════════════════════════ */
.menu-section {
  margin-bottom: 80px;
}

/* Categories row */
.menu__categories {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 20px 16px 20px; /* Top padding prevents hover clipping, horizontal padding gives breathing room on mobile */
}

@media (min-width: 768px) {
  .menu__categories {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
}

.menu__categories::-webkit-scrollbar {
  display: none;
}

.menu__category {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 130px;
  cursor: pointer;
  /* Explicit transitions for performance (website speed) with a bouncy curve */
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              background-color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
}

.menu__category::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-surface);
  border-radius: 28px;
  opacity: 0;
  /* High performance opacity transition */
  transition: opacity 0.3s ease;
  z-index: 0;
}

.menu__category-icon, .menu__category-name {
  position: relative;
  z-index: 1;
  /* Bouncy icon transition */
  transition: color 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu__category:hover {
  transform: translateY(-6px);
  /* Much softer, lighter shadow */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.95);
  border-color: #ffffff;
}

.menu__category.active {
  transform: translateY(-6px);
  /* Softened active shadow rather than harsh dark shadow */
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--color-surface);
}

.menu__category.active::before {
  opacity: 1;
}

.menu__category.active .menu__category-name {
  color: var(--color-white);
}

.menu__category.active .menu__category-icon {
  color: var(--color-coral);
  transform: scale(1.15) translateY(-2px);
}

.menu__category.active .menu__category-icon svg {
  filter: drop-shadow(0 4px 8px rgba(216, 90, 94, 0.3));
}

.menu__category-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
}

.menu__category-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.menu__category-name {
  font-family: var(--font-body);
  font-size: 16px; /* slightly bumped for readability */
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Menu Grid */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.menu-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.menu-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-surface);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.menu-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.menu-card__options {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-coral);
  border: 1px solid var(--color-coral);
  border-radius: 6px;
  padding: 4px 10px;
}

/* Color blocks for imageless cards */
.menu-card__color-block {
  width: 100%;
  min-height: 220px;
  height: 220px;
  display: block;
}

.menu-card__color-block--fries {
  background: linear-gradient(135deg, #f5c842, #e8a20c) !important;
}

.menu-card__color-block--sweet {
  background: linear-gradient(135deg, #e8873e, #c45d1e) !important;
}

.menu-card__color-block--loaded {
  background: linear-gradient(135deg, #d85a5e, #a93e42) !important;
}

.menu-card__color-block--burger-fries {
  background: linear-gradient(135deg, #c9a43c, #a8841c) !important;
}

.menu-card__color-block--dip {
  background: linear-gradient(135deg, #f0e6c4, #d4c59a) !important;
}

.menu-card__color-block--shake {
  background: linear-gradient(135deg, #e8c4d4, #c9a1b5) !important;
}

/* ═══════════════════════════════════════════
   ABOUT / STORY
   ═══════════════════════════════════════════ */
.about-section {
  margin-bottom: 80px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__text {
  padding: 16px 0;
}

.about__title {
  font-size: 40px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about__desc {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   IMPROVEMENTS (Kaizen Cards)
   ═══════════════════════════════════════════ */
.improvements-section {
  margin-bottom: 80px;
}

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

.improvement-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition-med);
  box-shadow: var(--shadow-md);
}

.improvement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.improvement-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(216, 90, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.improvement-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-coral);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.improvement-card__title {
  font-size: 22px;
  color: var(--color-white);
  text-transform: uppercase;
}

.improvement-card__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SOCIAL MEDIA & REELS
   ═══════════════════════════════════════════ */
.socials-section {
  margin-bottom: 80px;
  overflow: hidden;
}

.reels__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0 8px 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reels__track::-webkit-scrollbar {
  display: none;
}

.reels__item {
  flex: 0 0 220px;
  height: 390px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.reels__item:hover {
  transform: scale(1.03);
}

.reels__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reels__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.reels__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.reels__item:hover .reels__play {
  opacity: 1;
}

.reels__play svg {
  width: 20px;
  height: 20px;
  fill: white;
  margin-left: 3px;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section {
  margin-bottom: 80px;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 20px;
  animation: scrollCards 35s linear infinite;
  width: max-content;
  padding: 8px 0;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-star);
}

.testimonial-card__stars svg {
  width: 20px;
  height: 20px;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-surface);
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.testimonial-card__source {
  font-size: 12px;
  color: var(--color-text-muted);
  opacity: 0.5;
  margin-top: auto;
}

@keyframes scrollCards {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════
   SOCIAL BUTTONS
   ═══════════════════════════════════════════ */
.social__row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 16px 36px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.social__link:hover {
  transform: translateY(-4px);
  border-color: var(--color-coral);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.social__link-icon {
  width: 32px;
  height: 32px;
  color: var(--color-coral);
}

.social__link-label {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-white);
  line-height: 1;
  display: block;
}

.social__link-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
}

/* ═══════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════ */
.locations-section {
  margin-bottom: 80px;
}

.locations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.location-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-med);
}

.location-card:hover {
  transform: translateY(-4px);
}

.location-card__map {
  width: 100%;
  height: 240px;
  position: relative;
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.8) brightness(0.9);
  transition: filter 0.3s;
}

.location-card:hover .location-card__map iframe {
  filter: saturate(1) brightness(1);
}

.location-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--color-white);
  text-transform: uppercase;
}

.location-card__address {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.location-card__detail {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-top: 4px;
}

.location-card__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.location-card__btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
  font-size: 16px;
  height: 44px;
  padding: 0 20px;
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-section {
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-item__header {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-surface);
  font-weight: bold;
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--color-coral);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FRANCHISE MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-dark);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal__title {
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.modal__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-coral);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f6f5f4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--color-coral);
}

.form-checkbox label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.form-success__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.form-success__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.form-success__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════
   FOOTER MEGA-BLOCK
   ═══════════════════════════════════════════ */
.footer-block {
  background:
    linear-gradient(to bottom, rgba(28, 26, 26, 0.75), var(--color-surface)),
    url('../images/brand-illustration.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 100px 0 40px;
  color: var(--color-white);
  margin-top: 0;
  position: relative;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
  text-align: center;
}

.footer-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-feature__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(216, 90, 94, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-feature__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--color-coral);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-feature__title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-feature__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
  line-height: 1.5;
}

.footer-cta {
  text-align: center;
  margin-bottom: 64px;
}

.footer-separator {
  height: 1px;
  background: var(--color-border-light);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--color-white);
}

.footer-social-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-copyright {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 24px;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

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

  .testimonials__track {
    animation: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__card {
    flex-direction: column;
    padding: 40px 32px;
    text-align: center;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__image {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero__card:hover .hero__image {
    transform: scale(1.02);
  }

  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__image {
    height: 360px;
  }

  .improvements__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations__grid {
    grid-template-columns: 1fr;
  }

  .social__gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-title {
    font-size: 32px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__card {
    padding: 32px 24px;
  }

  .menu__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .improvements__grid {
    grid-template-columns: 1fr;
  }

  .social__row {
    gap: 24px;
  }

  .social__gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .modal {
    padding: 32px 24px;
  }

  .modal__title {
    font-size: 24px;
  }
}