/* ========================================================
   TEXAS GRILL SOUTHAMPTON — Style Sheet
   Bowlby One SC display type, bold red, editorial warmth.
   Section flow: dark → cream → dark → white → red → dark → cream → dark
   ======================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --bg-primary: #1A1A1A;
  --bg-secondary: #2A2A2A;
  --bg-warm: #F5F0E8;
  --bg-white: #FFFFFF;
  --bg-footer: #111111;
  --accent-gold: #D4A843;
  --accent-gold-hover: #E8BE5A;
  --accent-red: #990000;
  --accent-red-bright: #DC2626;
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --text-muted: #999999;
  --text-muted-light: #BBBBBB;
  --font-display: 'Bowlby One SC', sans-serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Cabin', -apple-system, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --max-width: 1200px;
  --nav-height: 80px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ---------- SUBTLE GRAIN OVERLAY ---------- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---------- UTILITIES ---------- */
.container { width: 90%; max-width: var(--max-width); margin: 0 auto; }
.gold { color: var(--accent-gold); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  line-height: 1.05;
}
.section-title--light { color: var(--text-light); }
.section-title--light .gold { color: var(--accent-gold); }
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-red);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.section-title--light::after {
  background: rgba(255,255,255,0.3);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--accent-red);
  color: var(--text-light);
}
.btn--gold:hover {
  background: #700000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153,0,0,0.45);
}
.btn--white {
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
}
.btn--white:hover {
  background: var(--accent-gold-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}
.btn--outline:hover {
  background: var(--text-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

/* ========================================================
   NAVIGATION
   ======================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(26,26,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  height: var(--nav-height);
}
.nav__logo img {
  height: 48px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-red-bright);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--accent-red-bright); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--accent-red) !important;
  color: var(--text-light) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px !important;
  font-weight: 700;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: #700000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(153,0,0,0.35);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  transition: var(--transition);
  transform-origin: center;
}
body.nav-open .nav__toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================================
   HERO — dramatic, full-bleed, statement typography
   ======================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  color: var(--text-light);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,17,17,0.75) 0%,
    rgba(17,17,17,0.45) 40%,
    rgba(17,17,17,0.6) 70%,
    rgba(17,17,17,0.9) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}
.hero__logo {
  width: 220px;
  height: auto;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
  animation: fadeInDown 1s ease both;
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 10vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  animation: fadeInUp 1s 0.2s ease both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero__sub {
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s 0.4s ease both;
}
.hero__badge {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 0.55rem 1.5rem;
  border-radius: 4px;
  letter-spacing: 0.15em;
  font-size: clamp(0.7rem, 1.8vw, 0.95rem);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.6s ease both;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--text-light);
  animation: bounce 2s infinite;
  opacity: 0.7;
}

/* ========================================================
   ABOUT  (cream #F5F0E8)
   ======================================================== */
.about {
  background: var(--bg-warm);
  padding: 6rem 0;
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text h2 { text-align: left; }
.about__text h2::after { margin: 1rem 0 0; }
.about__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 1.25rem;
  color: #555;
}
.about__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about__card {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid #e8e0d4;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(153,0,0,0.03), transparent);
  opacity: 0;
  transition: var(--transition);
}
.about__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--accent-red);
}
.about__card:hover::before { opacity: 1; }
.about__card-icon {
  color: var(--accent-red);
  margin-bottom: 0.5rem;
  position: relative;
}
.about__card span {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  position: relative;
}
.about__image {
  position: relative;
}
.about__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}
/* Decorative corner accent */
.about__image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 4px solid var(--accent-red);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.3;
}

/* ========================================================
   OFFERS SLIDER  (dark #1A1A1A)
   ======================================================== */
.offers {
  background: var(--bg-primary);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}
.offers__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.offers__track::-webkit-scrollbar { display: none; }
.offers__slide {
  flex: 0 0 min(100%, 600px);
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease;
}
.offers__slide:hover { transform: scale(1.02); }
.offers__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.offers__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.offers__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: var(--transition);
  cursor: pointer;
}
.offers__dot.active {
  background: var(--accent-red-bright);
  transform: scale(1.2);
}

/* ========================================================
   MENU  (white #FFFFFF)
   ======================================================== */
.menu {
  background: var(--bg-white);
  padding: 6rem 0 4rem;
  position: relative;
}
.menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(153,0,0,0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(153,0,0,0.015) 0%, transparent 50%);
  pointer-events: none;
}

/* Tabs */
.menu__tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.menu__tab {
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 2px solid rgba(51,51,51,0.2);
  color: var(--text-dark);
  transition: var(--transition);
  white-space: nowrap;
}
.menu__tab:hover {
  border-color: var(--accent-red);
  background: rgba(153,0,0,0.05);
  color: var(--accent-red);
}
.menu__tab.active {
  background: var(--accent-red);
  color: var(--text-light);
  border-color: var(--accent-red);
}

/* Panels */
.menu__panel {
  display: none;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.4s ease;
}
.menu__panel.active { display: block; }
.menu__panel-note {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

/* Category titles */
.menu__category-title {
  font-family: var(--font-script);
  color: var(--accent-gold);
  font-size: 1.6rem;
  text-align: center;
  margin: 2.5rem 0 1rem;
  font-weight: 400;
}
.menu__category-title:first-child { margin-top: 0; }

/* Price header */
.menu__price-header {
  display: grid;
  grid-template-columns: 1fr 70px 70px;
  gap: 0.5rem;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.menu__price-header span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  text-align: center;
  font-weight: 700;
}
.menu__price-header span:first-child { text-align: left; }

/* Menu items */
.menu__items {
  max-width: 700px;
  margin: 0 auto;
}
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: start;
}
.menu__item:last-child { border-bottom: none; }
.menu__item-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.3;
}
.menu__item-desc {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.15rem;
  line-height: 1.4;
}
.menu__item-prices {
  display: flex;
  gap: 0;
  align-items: start;
  padding-top: 0.1rem;
}
.price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent-red);
  font-weight: 400;
  width: 70px;
  text-align: center;
  flex-shrink: 0;
}

/* Sides layout (compact) */
.menu__items--sides .menu__item {
  padding: 0.55rem 0;
}
.menu__items--sides .menu__item-prices {
  justify-content: flex-end;
}
.menu__items--sides .price {
  width: auto;
  text-align: right;
}

/* Standalone items */
.menu__standalone {
  max-width: 700px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

/* Flavours */
.flavours {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(245,240,232,0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(153,0,0,0.15);
}
.flavours__title {
  font-family: var(--font-script);
  color: var(--accent-gold);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.flavours__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
}
.flavour {
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: white;
  transition: var(--transition);
}
.flavour:hover { transform: scale(1.05); }
.flavour--xhot { background: linear-gradient(135deg, #8B0000, #CC0000); }
.flavour--hot { background: linear-gradient(135deg, #CC0000, #E3000F); }
.flavour--medium { background: linear-gradient(135deg, #D35400, #E67E22); }
.flavour--lemoni { background: linear-gradient(135deg, #B8860B, #DAA520); }
.flavour--bbqhot { background: linear-gradient(135deg, #8B4513, #A0522D); }
.flavour--tika { background: linear-gradient(135deg, #C0392B, #E74C3C); }
.flavour--sweet { background: linear-gradient(135deg, #C0392B, #E67E22); }
.flavour--garlic { background: linear-gradient(135deg, #2E7D32, #4CAF50); }
.flavour--mango { background: linear-gradient(135deg, #E67E22, #F1C40F); color: var(--text-dark); }
.flavour--lemon { background: linear-gradient(135deg, #7CB342, #AED581); color: var(--text-dark); }
.flavour--jerk { background: linear-gradient(135deg, #5D4037, #8D6E63); }
.flavour--hickory { background: linear-gradient(135deg, #4E342E, #795548); }

/* Upgrade */
.menu__upgrade {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  border: 2px solid var(--accent-red);
  border-radius: var(--radius);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.menu__upgrade-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent-red);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-align: center;
}
.menu__upgrade-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: #666;
  font-size: 0.9rem;
}
.menu__upgrade-item:last-child { border-bottom: none; }
.menu__upgrade-item .price {
  width: auto;
  font-size: 0.85rem;
}

/* ========================================================
   GALLERY — Masonry  (dark red #990000)
   ======================================================== */
.featured {
  background: var(--accent-red);
  padding: 6rem 0;
  position: relative;
}
.featured .gold { color: var(--text-light); }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.featured__card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.featured__card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 67, 0.5);
}
.featured__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.featured__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured__card:hover .featured__img-wrap img {
  transform: scale(1.06);
}
.featured__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 0;
}
.featured__info {
  padding: 1rem 1.1rem 1.2rem;
}
.featured__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.featured__name {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: var(--text-light);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.featured__price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  white-space: nowrap;
}
.featured__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-top: 0.4rem;
}

/* ========================================================
   FAQ  (dark #1A1A1A)
   ======================================================== */
.faq {
  background: var(--bg-primary);
  padding: 6rem 0;
  position: relative;
}
.faq__list {
  max-width: 700px;
  margin: 2.5rem auto 0;
}
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
}
.faq__question:hover { color: var(--accent-red-bright); }
.faq__icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-red-bright);
  transition: transform var(--transition);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.faq__question.active .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__answer p {
  padding: 0 0 1.25rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================================
   FIND US / ORDER  (cream #F5F0E8)
   ======================================================== */
.find-us {
  background: var(--bg-warm);
  padding: 6rem 0;
  position: relative;
}
.find-us::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}
.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.find-us__order .section-title,
.find-us__location .section-title {
  text-align: left;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.find-us__order .section-title::after,
.find-us__location .section-title::after {
  margin: 0.75rem 0 0;
}
.find-us__order-sub {
  color: #777;
  margin-bottom: 2rem;
}
.find-us__platforms {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.platform-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  color: white;
}
.platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.platform-btn--uber { background: #06C167; }
.platform-btn--uber:hover { background: #07D472; }
.platform-btn--deliveroo { background: #00CCBC; }
.platform-btn--deliveroo:hover { background: #00DDC9; }
.platform-btn--justeat { background: #F36D00; }
.platform-btn--justeat:hover { background: #FF7A0A; }

.find-us__phone {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.find-us__phone p { color: #777; margin-bottom: 0.5rem; }
.find-us__phone-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent-red);
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.find-us__phone-number:hover { color: #700000; }

.find-us__map {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e0dbd3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.find-us__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.find-us__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #555;
  font-size: 0.95rem;
}
.find-us__detail svg {
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.find-us__detail a {
  color: #555;
  transition: var(--transition);
}
.find-us__detail a:hover { color: var(--accent-red); }

/* ========================================================
   FOOTER  (dark #111111)
   ======================================================== */
.footer {
  background: var(--bg-footer);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.footer__social h4 {
  color: var(--accent-red-bright);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__social-link:hover { color: var(--accent-red-bright); }
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer__bottom a {
  color: var(--text-muted);
  transition: var(--transition);
}
.footer__bottom a:hover { color: var(--accent-red-bright); }
.footer__credit {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #666;
}
.footer__credit a { color: #888; }
.footer__credit a:hover { color: var(--accent-red-bright); }

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slide-in from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide-in from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================================
   RESPONSIVE — TABLET (1024px)
   ======================================================== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================================
   RESPONSIVE — MOBILE (768px)
   ======================================================== */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Nav mobile */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  body.nav-open .nav__links { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav__links a {
    font-size: 1.1rem;
  }

  /* Hero */
  .hero__logo { width: 160px; }
  .hero__tagline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .hero__ctas { flex-direction: column; align-items: center; }

  /* About */
  .about { padding: 4rem 0; }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__image { order: -1; }
  .about__image::after { display: none; }
  .about__text h2 { text-align: center; }
  .about__text h2::after { margin: 1rem auto 0; }
  .about__cards { grid-template-columns: repeat(2, 1fr); }

  /* Offers */
  .offers { padding: 3rem 0; }
  .offers__slide { flex: 0 0 90%; }

  /* Menu */
  .menu { padding: 4rem 0 3rem; }
  .menu__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    gap: 0.4rem;
    scrollbar-width: none;
  }
  .menu__tabs::-webkit-scrollbar { display: none; }
  .menu__tab { font-size: 0.78rem; padding: 0.55rem 1rem; }
  .menu__price-header { grid-template-columns: 1fr 60px 60px; }
  .price { width: 60px; font-size: 0.82rem; }

  /* Featured Dishes */
  .featured { padding: 4rem 0; }
  .featured__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* FAQ */
  .faq { padding: 4rem 0; }
  .faq__question { font-size: 0.95rem; }

  /* Find Us */
  .find-us { padding: 4rem 0; }
  .find-us__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .find-us__order .section-title,
  .find-us__location .section-title {
    text-align: center;
  }
  .find-us__order .section-title::after,
  .find-us__location .section-title::after {
    margin: 0.75rem auto 0;
  }
  .find-us__order-sub { text-align: center; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer__logo { margin: 0 auto 1rem; }
}

@media (max-width: 480px) {
  .about__cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .menu__tab { font-size: 0.72rem; padding: 0.5rem 0.85rem; }
  .featured__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .flavours__grid { grid-template-columns: repeat(2, 1fr); }
}
