/* =============================================================
   OH! CHAI — BRAND TYPEFACE LAYER
   -------------------------------------------------------------
   ROLE              TYPEFACE                DESIGNER     LICENCE
   Logo wordmark     Sugarpunch DEMO         Pizzadude    personal use only *
   Tagline / script  Wandering Pencil DEMO   Hanoded      personal use only *
   "Oh! Sandwich"    Cano                    Sandylukee   free for commercial use

   * The DEMO cuts may NOT be embedded on a commercial site.
     See fonts/README.md for the licences to buy before launch.

   Self-hosted files live in /fonts. While they are absent the
   stacks fall through to the metric-similar Google Fonts loaded
   below, so the site always renders in the right style register.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,600;9..40,700;9..40,800&family=Baloo+2:wght@600;700;800&family=Luckiest+Guy&family=Amatic+SC:wght@700&family=Architects+Daughter&family=Josefin+Sans:wght@300;400;600;700&display=swap');

/* ---- Brand face 1: logo wordmark "OH! CHAI" ---- */
@font-face {
  font-family: 'Sugarpunch';
  src: local('Sugarpunch DEMO'),
       local('SugarpunchDEMO'),
       local('Sugarpunch'),
       url('fonts/sugarpunch.woff2') format('woff2'),
       url('fonts/sugarpunch.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Brand face 2: tagline "SIP-RELAX-ENJOY" ---- */
@font-face {
  font-family: 'Wandering Pencil';
  src: local('Wandering Pencil DEMO Regular'),
       local('WanderingPencilDEMO'),
       local('Wandering Pencil'),
       url('fonts/wandering-pencil.woff2') format('woff2'),
       url('fonts/wandering-pencil.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Brand face 3: "Oh! Sandwich" sub-brand ---- */
@font-face {
  font-family: 'Cano';
  src: local('Cano'),
       url('fonts/cano.woff2') format('woff2'),
       url('fonts/cano.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #10100f;
  --black-soft: #191815;
  --black-card: #22211d;
  --black-border: #565349;
  --white: #fffdf6;
  --white-muted: rgba(255,253,246,0.82);
  --white-subtle: rgba(255,253,246,0.12);
  --text-muted: rgba(255,253,246,0.62);
  --accent: #FFFFFF;
  --accent-glow: rgba(255,255,255,0.24);
  --paper: #f7f1e4;
  /* Warm brass accent — used for the About values highlights and the footer */
  --gold: #e3a44a;
  --gold-dim: rgba(227,164,74,0.55);
  --gold-soft: rgba(227,164,74,0.42);
  --gold-faint: rgba(227,164,74,0.18);
  --hairline: rgba(255,253,246,0.14);

  /* Brand type — real face first, closest free web face second, generic last */
  --font-brand:    'Sugarpunch', 'Luckiest Guy', 'Baloo 2', system-ui, sans-serif;
  --font-script:   'Wandering Pencil', 'Amatic SC', 'Architects Daughter', cursive;
  --font-sandwich: 'Cano', 'Josefin Sans', 'DM Sans', sans-serif;
  --font-display:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --topbar-h: 40px;
  --nav-bar-h: 86px;
  /* total height of the fixed header stack (info bar + navbar) */
  --nav-h: calc(var(--topbar-h) + var(--nav-bar-h));
  --radius: 4px;
  --radius-sm: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }

/* NAVBAR */
/* TOP INFO BAR */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  background: #0b0b0a;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-body);
}
.topbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(16px, 6vw, 96px);
}
.topbar-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  min-width: 0;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--white-muted);
  white-space: nowrap;
  transition: color var(--transition);
}
a.topbar-item:hover { color: var(--white); }
.topbar-item svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  opacity: .9;
}

.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(32px, 6vw, 96px);
  background: linear-gradient(180deg, rgba(10,11,13,0.72) 0%, rgba(10,11,13,0.2) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(8,9,11,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.9);
  border-bottom-color: rgba(255,255,255,0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.nav-brand-title {
  font-family: var(--font-brand);
  font-size: 34px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  line-height: 0.88;
  text-transform: uppercase;
  paint-order: stroke fill;
  filter: drop-shadow(2px 2px 0px #000000);
  text-shadow: 2px 2px 0 #000000;
}
.nav-brand-slogan {
  font-family: var(--font-script);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
}

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white-muted);
  letter-spacing: 0.5px;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--white);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  padding: 11px 18px !important;
  background: var(--accent) !important;
  color: var(--black) !important;
  border-radius: 0 !important;
  font-weight: 400 !important;
  font-size: 10px !important;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 18px rgba(255,255,255,0.2) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: #EFEFEF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(255,255,255,0.4) !important;
}

/* HAMBURGER & MOBILE MENU */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px;
  cursor: pointer; padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--black-border);
  border-radius: 10px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,11,13,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 20px 32px;
  flex-direction: column;
  border-bottom: 1px solid var(--black-border);
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.9);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 700;
  color: var(--white-muted);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); }
.mobile-menu .nav-cta {
  margin-top: 20px !important;
  text-align: center !important;
  justify-content: center !important;
}

/* COMMON SECTION HEADERS */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 24px; height: 2px;
  background: var(--white);
  opacity: 0.6;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.section-title span { color: var(--white); font-style: normal; font-family: var(--font-script); font-weight: 400; text-transform: none; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.6px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  min-height: 48px;
}
.btn-white {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.btn-white:hover {
  background: #EFEFEF;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255,255,255,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.white-divider {
  width: 68px; height: 2px;
  background: var(--accent);
  border-radius: 0;
  margin: 20px 0;
}

/* FOOTER */
footer {
  background: #0b0b0a;
  border-top: 1px solid var(--black-border);
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo-img {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8; max-width: 290px; margin-bottom: 24px;
}
.footer-socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-socials a.social-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #f0f0f5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.footer-socials a.social-btn svg {
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.footer-socials a.social-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.footer-socials a.social-btn.instagram:hover {
  background: #EFEFEF; border-color: #EFEFEF; color: var(--black);
}
.footer-socials a.social-btn.tiktok:hover {
  background: #000; border-color: #25F4EE; color: #fff;
  box-shadow: 0 0 15px rgba(37, 244, 238, 0.4);
}
.footer-socials a.social-btn.facebook:hover {
  background: #1877F2; border-color: #1877F2; color: #fff;
}
.footer-socials a.social-btn.talabat:hover {
  background: #EFEFEF; border-color: #EFEFEF; color: var(--black);
}
.footer-socials a.social-btn.zomato:hover {
  background: #EFEFEF; border-color: #EFEFEF; color: var(--black);
}
.footer-socials a.social-btn.whatsapp:hover {
  background: #25D366; border-color: #25D366; color: #fff;
}
.transparent-logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px;
  transition: all 0.3s ease;
}
.transparent-logo-mark:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400;
  color: var(--white); margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  font-size: 14px; color: var(--text-muted);
  display: block; margin-bottom: 12px;
  transition: color var(--transition); line-height: 1.6;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 14px; color: var(--text-muted); }
.footer-bottom span { color: var(--white); font-weight: 700; letter-spacing: .03em; }
.day-row {
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 13px; color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.day-row .time { color: var(--white); font-weight: 600; }

/* RESPONSIVE MEDIA QUERIES FOR MOBILE PERFECT VIEW */
@media (max-width: 1024px) {
  :root { --nav-bar-h: 90px; }
  .navbar { padding: 0 24px; }
  .nav-logo { gap: 14px; }
  .nav-logo-mark { width: 68px; height: 68px; }
  .nav-brand-title { font-size: 32px; letter-spacing: .2px; }
  .nav-brand-slogan { font-size: 13px; letter-spacing: 1px; }
  footer { padding: 48px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-bar-h: 72px; --topbar-h: 38px; }
  .topbar-inner { justify-content: center; gap: 22px; padding: 0 14px; }
  .topbar-hide-sm { display: none; }
  .topbar-item { font-size: 12px; gap: 7px; }
  .topbar-item svg { width: 14px; height: 14px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 0 14px; }
  .nav-logo { gap: 10px; }
  .nav-logo-mark { width: 50px; height: 50px; }
  .nav-logo-mark { width: 52px; height: 52px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; gap: 8px; }
  .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  :root { --nav-bar-h: 64px; --topbar-h: 36px; }
  .nav-logo-mark { width: 44px; height: 44px; }
}

/* =============================================
   PAGE BANNER & GENERAL HERO LAYOUTS
   ============================================= */
.page-banner {
  min-height: 280px;
  padding: calc(var(--nav-h) + 40px) 48px 48px;
  background: linear-gradient(180deg, rgba(10,11,13,0.7) 0%, rgba(10,11,13,0.92) 100%),
              url('assets/cafe_real.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; position: relative; border-bottom: 1px solid var(--black-border);
}
.page-banner-title {
  font-family: var(--font-body);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.page-banner-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white-muted);
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* =============================================
   CONTACT US SPECIFIC (IMAGE 2 DESIGN MATCH)
   ============================================= */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-box {
  background: var(--black-soft);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-form-box h3 {
  font-family: var(--font-body);
  font-size: 24px; font-weight: 800;
  color: var(--white); margin-bottom: 24px;
}
.form-input-field {
  width: 100%;
  background: #252420;
  border: 1px solid var(--black-border);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px; color: var(--white);
  margin-bottom: 18px; outline: none;
  transition: border-color var(--transition);
}
.form-input-field:focus {
  border-color: var(--white);
}
textarea.form-input-field {
  min-height: 120px;
  resize: vertical;
}
.btn-send {
  width: 100%;
  background: #8b1e1e;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-send:hover {
  background: #ab2525;
  box-shadow: 0 6px 20px rgba(139,30,30,0.4);
}
.order-query-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; margin-top: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--white-muted); text-decoration: none;
}
.order-query-badge:hover { color: var(--white); border-color: var(--white); }

.contact-details-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 36px 30px;
}
.contact-details-box h3 {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px; border-radius: 4px;
}
.location-item {
  display: flex; gap: 14px; margin-bottom: 24px;
}
.location-icon {
  font-size: 20px; color: var(--white); flex-shrink: 0; margin-top: 2px;
}
.location-text strong { display: block; font-size: 15px; color: var(--white); margin-bottom: 4px; }
.location-text p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.our-location-banner {
  background: linear-gradient(90deg, rgba(0,0,0,0.8), rgba(0,0,0,0.4)),
              url('assets/cafe_real.jpg') center/cover no-repeat;
  padding: 40px 24px;
  text-align: center;
  margin-top: 60px;
  border-radius: var(--radius);
  border: 1px solid var(--black-border);
}
.our-location-banner h2 {
  font-family: var(--font-body);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.map-frame-box {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--black-border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
  height: 400px;
}
.map-frame-box iframe {
  width: 100%; height: 100%; border: none;
}

@media (max-width: 900px) {
  .contact-split-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-frame-box { height: 300px; }
}

/* =============================================
   CUSTOMER REVIEW GALLERY & UPLOAD MODAL
   ============================================= */
.upload-trigger-banner {
  background: var(--black-soft);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 40px;
  transition: all var(--transition);
}
.upload-trigger-banner:hover {
  border-color: var(--white);
  background: var(--black-card);
}
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  max-width: 540px; width: 100%;
  padding: 32px; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}
.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--white-muted);
  font-size: 24px; cursor: pointer; transition: color var(--transition);
}
.modal-close-btn:hover { color: var(--white); }
.customer-review-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.customer-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--white);
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
}
.customer-photo-wrap {
  height: 240px; position: relative; overflow: hidden; background: #000;
}
.customer-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.customer-review-card:hover .customer-photo-wrap img {
  transform: scale(1.06);
}
.customer-badge-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
  font-size: 11px; font-weight: 700; color: #FFD700;
}
.customer-review-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: space-between;
}
.customer-comment {
  font-size: 14px; color: var(--white-muted); line-height: 1.6; font-style: italic; margin-bottom: 16px;
}
.customer-author-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 12px;
}
.customer-author-name {
  font-size: 14px; font-weight: 700; color: var(--white);
}
.customer-date {
  font-size: 12px; color: var(--text-muted);
}

/* "OH! SANDWICH" SUB-BRAND LOCKUP (Cano) */
.brand-sandwich {
  font-family: var(--font-sandwich);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HOMEPAGE CONTENT DIRECTION */
/* BRAND WORDMARK — chunky rounded caps, white fill, inked outline, hard offset shadow.
   Stroke and shadow are in em so they stay in proportion at every size. */
.brand-wordmark,
.hero-title,
.nav-brand-title {
  font-family: var(--font-brand);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  /* The face already carries its own outline and offset shadow, so the only
     thing added here is a soft ambient shadow to lift it off the hero photo. */
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}
.hero-kicker {
  margin: 2px 0 18px;
  color: var(--white);
  font-family: var(--font-script);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
}
.nav-logo-mark {
  width: 58px;
  height: 58px;
}
.nav-links a,
.mobile-menu a {
  text-transform: uppercase;
}
.hero-tagline,
.hero-eyebrow,
.why-text h2 em,
.hero-eyebrow {
  text-transform: none;
  letter-spacing: 1.2px;
  font-size: 15px;
}
.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
}
.why-text h2 {
  max-width: 580px;
}
.why-text h2 em {
  font-style: normal;
  text-transform: uppercase;
  font-weight: 400;
}
.why-section .why-features {
  grid-template-columns: repeat(3, 1fr);
}
.menu-preview .menu-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1380px;
  margin-inline: auto;
}
.menu-preview .menu-card-body {
  min-height: 148px;
}
.menu-preview .menu-card-body h3 {
  font-size: 20px;
}

/* REFERENCE-STYLE WIDE FOOTER */
.footer-reference {
  padding: 56px clamp(24px, 4vw, 64px) 28px;
  background: linear-gradient(180deg, #0d0d0b 0%, #070706 100%);
  border-top: 1px solid var(--hairline);
  font-family: var(--font-body);
}
.footer-reference h4,
.footer-reference a,
.footer-reference p,
.footer-reference span,
.footer-reference strong { font-family: var(--font-body); }
.footer-reference-grid {
  width: min(1500px, 100%);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.55fr 1.05fr 1.35fr;
  gap: 0;
  align-items: stretch;
}
.footer-reference-col,
.footer-reference-brand {
  min-width: 0;
  padding: 0 28px;
}
.footer-reference-col + .footer-reference-col,
.footer-reference-brand + .footer-reference-col,
.footer-reference-col:has(+ .footer-reference-brand) {
  border-left: 1px solid var(--hairline);
}
.footer-reference-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.footer-reference-col h4::after {
  content: '';
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--white), rgba(255,253,246,0.12));
}
.footer-reference-col a,
.footer-reference-col p {
  display: block;
  color: var(--white-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 13px;
  transition: color var(--transition), transform var(--transition);
}
.footer-reference-col a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer-reference-col strong {
  color: var(--white);
  font-weight: 700;
}
.footer-reference-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-reference-brand img {
  width: min(190px, 100%);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55)) drop-shadow(0 0 28px rgba(255,253,246,.08));
}
.footer-delivery a,
.footer-delivery span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 13px;
  color: var(--white-muted);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}
.footer-delivery a:hover,
.footer-delivery span:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-delivery a.delivery-noon:hover { color: #FEEE00; }
.footer-delivery a.delivery-talabat:hover { color: #FF5A00; }
.footer-delivery a.delivery-zomato:hover { color: #FF5252; }
.footer-delivery a.delivery-careem:hover { color: #00E676; }
.footer-delivery a.delivery-smile:hover { color: #CE93D8; }
.footer-rule {
  border-top: 1px solid var(--hairline);
  margin: 20px 0;
}
.footer-reference .footer-bottom {
  width: min(1500px, 100%);
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .footer-reference-grid { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
  .footer-reference-brand { grid-column: 1 / -1; grid-row: 2; }
  .footer-reference-col + .footer-reference-col,
  .footer-reference-brand + .footer-reference-col,
  .footer-reference-col:has(+ .footer-reference-brand) { border-left: 0; }
  .footer-reference-col:not(:first-child) { border-left: 1px solid var(--hairline); }
}
@media (max-width: 768px) {
  .nav-logo-mark { width: 50px; height: 50px; }
  .why-section .why-features,
  .menu-preview .menu-grid { grid-template-columns: 1fr; }
  .footer-reference-grid { grid-template-columns: 1fr 1fr; }
  .footer-reference-brand { grid-column: 1 / -1; grid-row: 1; padding-bottom: 26px; }
  .footer-reference-col:not(:first-child) { border-left: 0; }
  .footer-reference-col { padding: 0 14px; }
  .footer-reference-col h4 { font-size: 13px; }
  .footer-reference-col a,
  .footer-reference-col p { font-size: 14px; }
  .footer-reference-brand img { width: 150px; }
  .footer-reference-brand span { font-size: 16px; }
}
@media (max-width: 480px) {
  .nav-logo-mark { width: 44px; height: 44px; }
}

/* =============================================
   GOOGLE REVIEWS INFINITE SCROLLING SHOWCASE
   ============================================= */
.reviews-section {
  padding: 100px 0 90px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.reviews-header {
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto 44px;
}
.reviews-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.google-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 10px 22px;
  border-radius: 50px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  flex-wrap: wrap;
  justify-content: center;
}
.google-rating-score {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}
.google-rating-stars {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 2px;
}
.google-rating-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.18);
}
.google-rating-meta {
  font-size: 13px;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.google-rating-meta strong {
  color: var(--white);
  font-weight: 700;
}
.google-rating-meta .g-badge-link {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.google-rating-meta .g-badge-link:hover {
  color: #4285F4;
}

/* MARQUEE CONTAINER & TRACKS */
.reviews-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.reviews-marquee-track {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: marquee-left 52s linear infinite;
  will-change: transform;
}

.reviews-marquee-track.track-reverse {
  animation: marquee-right 52s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* GOOGLE REVIEW CARD */
.google-review-card {
  width: 380px;
  flex-shrink: 0;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-decoration: none;
}

.google-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 16px 36px rgba(0,0,0,0.8), 0 0 20px rgba(255,255,255,0.05);
}

.google-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.google-card-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.google-user-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-user-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-user-sub {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-local-guide-tag {
  color: #FBBC04;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.google-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.google-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.google-stars-row .stars {
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

.google-review-quote {
  font-size: 14px;
  color: rgba(255,253,246,0.88);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  margin-top: auto;
}

.google-order-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}

.google-source-tag {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* REVIEWS CTA BUTTONS ROW */
.reviews-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
  padding: 0 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .google-review-card {
    width: 310px;
    padding: 18px;
  }
  .reviews-marquee-wrapper {
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    gap: 14px;
  }
  .reviews-marquee-track {
    gap: 14px;
    animation-duration: 38s;
  }
  .reviews-marquee-track.track-reverse {
    animation-duration: 38s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track,
  .reviews-marquee-track.track-reverse {
    animation-duration: 120s;
  }
}

