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

:root {
  /* Brand colors pulled directly from the Sambusa Express logo */
  --orange:   #D94E2C;   /* primary orange-red circle */
  --orange-lt:#E8693E;   /* lighter orange for hovers */
  --blue:     #1B8DC4;   /* inner blue circle */
  --blue-lt:  #2FA8E0;
  --dark:     #1A1A1A;   /* banner black */
  --dark2:    #2D2D2D;
  --cream:    #FFF8F2;   /* warm white bg */
  --cream2:   #FFE8D6;
  --text:     #2A1A10;
  --text-lt:  #6B4A38;
  --white:    #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(217,78,44,.12);
  --shadow-lg: 0 12px 48px rgba(217,78,44,.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

/* ── Typography helpers ── */
.section-label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-header .section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-lt); line-height: 1.7; }
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-label { color: var(--orange-lt); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,78,44,.3); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-lt); border-color: var(--orange-lt); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ── Logo images ── */
.hero-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 50%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 62px;
  width: auto;
  display: block;
  transition: opacity .3s;
  border-radius: 50%;
}
/* dark bg (transparent nav) → show white pill logo */
.nav-logo-light { display: none; }
.nav-logo-dark  { display: block; }
/* scrolled (white bg nav) → show light logo */
.nav.scrolled .nav-logo-dark  { display: none; }
.nav.scrolled .nav-logo-light { display: block; }

.about-logo-img {
  width: 220px;
  height: auto;
  display: block;
  border-radius: 50%;
}

.footer-logo-img {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 8px;
  border-radius: 50%;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,26,26,.1);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  transition: color .2s;
  letter-spacing: .03em;
}
.nav-links a:hover { color: var(--orange-lt); }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover { color: var(--orange); }

.nav-order-btn {
  background: #F5A623 !important;
  color: var(--dark) !important;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: .95rem !important;
  letter-spacing: .05em;
  transition: background .2s, transform .2s !important;
}
.nav-order-btn:hover {
  background: #e09400 !important;
  color: var(--dark) !important;
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s;
}
.nav.scrolled .nav-hamburger span { background: var(--dark); }

.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--cream2);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-weight: 500;
  padding: 10px 0;
  color: var(--text);
  border-bottom: 1px solid var(--cream2);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,26,.88) 0%, rgba(45,31,10,.75) 60%, rgba(217,78,44,.35) 100%),
    url('hero1-immage.jpg') center/cover no-repeat;
  z-index: 0;
}
/* decorative geometric overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    transparent,
    transparent 80px,
    rgba(217,78,44,.04) 80px,
    rgba(217,78,44,.04) 81px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 90px 32px 60px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 14px;
}

.hero-tagline {
  font-size: 1.4rem;
  color: #F5A623;
  font-style: italic;
  margin-bottom: 20px;
  opacity: .95;
}

.hero-tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange-lt);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
  letter-spacing: 6px;
  word-spacing: 8px;
}
.hero-title span { color: var(--orange-lt); }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── ABOUT ── */
.about { background: var(--white); }

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

.about-visual {
  position: relative;
}
.about-img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--orange) 0%, var(--dark2) 100%);
  overflow: hidden;
  position: relative;
}
.about-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,.04) 20px, rgba(255,255,255,.04) 21px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255,255,255,.04) 20px, rgba(255,255,255,.04) 21px);
}
.about-emblem {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.emblem-icon { font-size: 5rem; }
.emblem-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
}

.about-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  z-index: 2;
  white-space: nowrap;
}

.about-text p {
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--cream2);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-label { font-size: .8rem; color: var(--text-lt); font-weight: 500; }

/* ── MENU ── */
.menu { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.menu-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
}

.menu-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card.featured { background: var(--dark); color: var(--white); }
.menu-card.featured::before { background: var(--orange); }
.menu-card.featured h3 { color: var(--white); }
.menu-card.featured p { color: rgba(255,255,255,.7); }

.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.menu-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.menu-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.menu-card p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text-lt);
  margin-bottom: 20px;
}

.menu-card-footer { display: flex; gap: 8px; flex-wrap: wrap; }
.menu-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: var(--cream2);
  color: var(--text-lt);
}
.menu-card.featured .menu-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-lt);
  font-size: .88rem;
  font-style: italic;
}

/* ── LOCATIONS ── */
.locations {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    60deg,
    transparent, transparent 60px,
    rgba(217,78,44,.05) 60px,
    rgba(217,78,44,.05) 61px
  );
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Schedule home base banner */
.schedule-home {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(245,166,35,.12);
  border: 2px solid #F5A623;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.schedule-home-icon { font-size: 2.5rem; flex-shrink: 0; }
.schedule-home h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #F5A623;
  margin-bottom: .3rem;
}
.schedule-home p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.schedule-home-days {
  color: var(--white) !important;
  font-weight: 600;
  font-size: .95rem !important;
  margin-top: .4rem !important;
}

/* Schedule list */
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}

.schedule-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  transition: background .25s, border-color .25s;
}
.schedule-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
}
.schedule-card.highlight {
  background: rgba(217,78,44,.1);
  border-color: rgba(217,78,44,.3);
}
.schedule-card.highlight:hover {
  background: rgba(217,78,44,.18);
  border-color: var(--orange);
}

.schedule-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--orange);
  border-radius: 10px;
  padding: .5rem .75rem;
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}
.schedule-card.highlight .schedule-date { background: var(--orange); }
.sch-month {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
}
.sch-day {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.sch-dow {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  margin-top: 2px;
}

.schedule-details { flex: 1; }
.schedule-details h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.schedule-details p {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 6px;
}
.sch-time {
  font-size: .85rem;
  font-weight: 600;
  color: #F5A623;
}

.sch-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}
.sch-tag.regular { background: rgba(255,255,255,.1); color: rgba(255,255,255,.6); }
.sch-tag.event   { background: rgba(217,78,44,.25); color: var(--orange-lt); }
.sch-tag.fair    { background: rgba(42,140,196,.25); color: #7dd3fc; }

@media (max-width: 600px) {
  .schedule-card { flex-wrap: wrap; gap: 1rem; }
  .schedule-home { flex-direction: column; text-align: center; }
}

.location-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.location-card:hover {
  background: rgba(217,78,44,.15);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.loc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.location-card p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.loc-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(217,78,44,.2);
  color: var(--orange-lt);
  border: 1px solid rgba(217,78,44,.3);
}

.locations-cta {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 52px;
}
.locations-cta p { color: rgba(255,255,255,.6); margin-bottom: 24px; }

.social-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: transform .2s, opacity .2s;
}
.social-btn:hover { transform: translateY(-2px); opacity: .9; }
.social-btn.fb { background: #1877F2; color: #fff; }
.social-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* ── GALLERY ── */
.gallery { background: var(--dark); }
.gallery .section-label { color: var(--orange); }
.gallery .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
  min-height: 220px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-display);
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--tall { grid-row: span 1; }
}

/* ── FOUNDER ── */
.founder { background: var(--white); }

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 64px rgba(0,0,0,.15);
  display: block;
}

.founder-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(217,79,43,.4);
}

.founder-divider {
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 1.25rem 0 1.75rem;
}

.founder-text p {
  color: var(--text-lt);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.founder-text p:last-of-type {
  font-style: italic;
  color: var(--dark);
  font-size: 1.05rem;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.founder-socials { margin-top: .5rem; }

@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-tag { right: 0; }
}

/* ── REVIEWS ── */
.reviews { background: var(--cream2); }

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark);
  border-radius: 50px;
  padding: 14px 0;
  margin-bottom: 56px;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 56px;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.review-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--orange);
  opacity: .25;
  margin-bottom: -12px;
}
.review-card.featured-review .review-quote {
  opacity: .4;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.review-card.featured-review {
  background: var(--dark);
  transform: scale(1.02);
}

.review-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }

.review-text {
  font-style: italic;
  line-height: 1.75;
  color: var(--text-lt);
  margin-bottom: 20px;
  font-size: .95rem;
}
.review-card.featured-review .review-text { color: rgba(255,255,255,.75); }

.review-author {
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .04em;
}

.reviews-rating {
  text-align: center;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}
.rating-stars-big { font-size: 1.6rem; color: var(--orange); letter-spacing: 4px; margin: 8px 0; }
.reviews-rating p { color: var(--text-lt); font-size: .88rem; }

/* ── CONTACT ── */
.contact { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-text p {
  color: var(--text-lt);
  line-height: 1.75;
  margin-bottom: 24px;
}

.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 12px; color: var(--text-lt); font-size: .92rem; }
.contact-icon { font-size: 1.1rem; }

.contact-visual {
  display: flex;
  justify-content: center;
}
.contact-card {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  max-width: 380px;
  width: 100%;
}
.cc-icon { font-size: 3rem; margin-bottom: 16px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-card p { color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 24px; font-size: .92rem; }
.cc-tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cc-tags span {
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(217,78,44,.2);
  color: var(--orange-lt);
  border: 1px solid rgba(217,78,44,.25);
}

/* ── FOOTER ── */
/* ── FOOTER ── */
.footer { background: #0f0f0f; }

/* CTA Strip */
.footer-cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #c03e1e 100%);
  padding: 2.5rem 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta-label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: .3rem;
}
.footer-cta-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-btn-call {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}
.footer-btn-call:hover { background: rgba(255,255,255,.25); border-color: white; }
.footer-btn-order {
  background: #F5A623;
  color: var(--dark);
  border: 2px solid #F5A623;
  font-weight: 700;
}
.footer-btn-order:hover { background: #e09400; border-color: #e09400; }

/* Main footer grid */
.footer-main { padding: 5rem 0 3.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

/* Brand col */
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 280px;
}
.footer-socials { display: flex; gap: .75rem; }
.footer-social-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social-icon:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* Nav links */
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-nav a {
  color: rgba(255,255,255,.5);
  font-size: .92rem;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-nav a:hover { color: var(--orange-lt); padding-left: 6px; }

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.footer-contact-list li span { flex-shrink: 0; }
.footer-contact-list a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-contact-list a:hover { color: var(--orange-lt); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .8rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── OFFCANVAS ── */
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.offcanvas-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.offcanvas {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: #111;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.offcanvas.open {
  transform: translateX(0);
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.offcanvas-logo {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.offcanvas-close {
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.7);
  border-radius: 10px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.offcanvas-close:hover {
  background: var(--orange);
  color: white;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex: 1;
}
.offcanvas-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.75);
  border-left: 3px solid transparent;
  transition: color .2s, border-color .2s, background .2s, padding-left .2s;
}
.offcanvas-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.05);
  border-left-color: var(--orange);
  padding-left: 2.25rem;
}

.offcanvas-order {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.offcanvas-order-btn {
  display: block;
  text-align: center;
  background: #F5A623;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 1rem;
  border-radius: 12px;
  transition: background .2s, transform .2s;
}
.offcanvas-order-btn:hover {
  background: #e09400;
  transform: translateY(-2px);
}

.offcanvas-footer {
  padding: 1.25rem 1.75rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.offcanvas-footer p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  margin-bottom: .75rem;
}
.offcanvas-footer a { color: var(--orange-lt); }
.offcanvas-socials {
  display: flex;
  gap: 1rem;
}
.offcanvas-socials a {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .2s;
}
.offcanvas-socials a:hover { color: var(--orange-lt); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 120px 24px 80px; margin: 0; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }

  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .about-visual { order: -1; max-width: 360px; margin: 0 auto; padding-bottom: 3rem; }
  .about-img-wrap { aspect-ratio: 1/1; min-height: 280px; }
  .about-badge { margin-bottom: 2rem; }

  .about-stats { gap: 24px; }

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

  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-visual { width: 100%; }
  .contact-card { max-width: 100%; }

  .footer-inner { flex-direction: column; gap: 24px; }

  .reviews-grid { grid-template-columns: 1fr 1fr; }
  @media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }
  .review-card.featured-review { transform: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .social-row { flex-direction: column; align-items: center; }
  .social-btn { width: 100%; max-width: 260px; justify-content: center; }
}
