/* ==========================================================================
   Adils Takeaway Leeds — site styles
   Theme: Orange / Blue / White, with touches of purple and yellow
   ========================================================================== */

:root {
  --orange: #f26b1d;
  --orange-2: #ff8a3d;
  --orange-dark: #c9520e;
  --blue: #1b4f9c;
  --blue-2: #3b7dd8;
  --navy: #0f2e5c;
  --navy-2: #0a2247;
  --purple: #563d77;
  --purple-2: #7a5aa6;
  --yellow: #f9c823;
  --yellow-2: #fff0b8;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-warm: #fff4ec;
  --text: #12233f;
  --muted: #56667e;
  --line: rgba(27, 79, 156, 0.14);
  --line-strong: rgba(27, 79, 156, 0.3);
  --radius: 14px;
  --shadow: 0 18px 40px rgba(15, 46, 92, 0.14);
  --shadow-sm: 0 6px 18px rgba(15, 46, 92, 0.08);
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1160px;
  --header-h: 82px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, picture, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover, a:focus-visible { color: var(--orange); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 720px; margin: 0 auto 2.75rem; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  margin-right: 0.7rem;
  vertical-align: middle;
  background: var(--orange);
}

/* Small coloured labels — a nod to the shop sign */
.tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--blue);
}
.tag--orange { background: var(--orange); }
.tag--yellow { background: var(--yellow); color: var(--navy); }
.tag--purple { background: var(--purple); }
.tag--blue { background: var(--blue); }

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

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  padding: 0.6rem 1rem; z-index: 1000;
  background: var(--orange); color: var(--white); font-weight: 700;
  border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--orange-2), var(--orange) 55%, var(--orange-dark));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(242, 107, 29, 0.32);
}
.btn--primary:hover, .btn--primary:focus-visible { color: var(--white); box-shadow: 0 14px 34px rgba(242, 107, 29, 0.45); }
.btn--outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--outline:hover, .btn--outline:focus-visible { background: rgba(27, 79, 156, 0.08); color: var(--blue); }
.on-dark .btn--outline { border-color: rgba(255,255,255,0.8); color: var(--white); }
.on-dark .btn--outline:hover, .on-dark .btn--outline:focus-visible { background: rgba(255,255,255,0.12); color: var(--white); border-color: var(--white); }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.08rem; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, 0.96); box-shadow: var(--shadow-sm); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 54px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__list { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: 0.6rem 0.95rem;
  color: var(--navy); font-weight: 600; font-size: 0.98rem;
  border-radius: 8px; position: relative;
}
.nav__link::after {
  content: ""; position: absolute; left: 0.95rem; right: 0.95rem; bottom: 0.3rem;
  height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link:hover, .nav__link:focus-visible { color: var(--blue); }
.nav__cta { margin-left: 0.75rem; padding: 0.7rem 1.3rem; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--line-strong); border-radius: 10px;
  background: transparent; color: var(--navy); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle__bars { position: relative; width: 22px; height: 2px; background: currentColor; transition: background 0.2s; }
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}
.nav-toggle__bars::before { top: -7px; }
.nav-toggle__bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    display: none;
    flex-direction: column; align-items: stretch; gap: 0.5rem;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav__link { display: block; padding: 0.85rem 0.75rem; font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin: 0.5rem 0 0; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  min-height: min(calc(100svh - var(--header-h)), 860px);
  display: grid; align-items: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
  color: var(--white);
}
.hero__bg, .hero__bg picture { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 34, 71, 0.96) 0%, rgba(15, 46, 92, 0.86) 45%, rgba(15, 46, 92, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 34, 71, 0.2), rgba(10, 34, 71, 0.85));
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 0;
  background: linear-gradient(90deg, var(--orange) 0 40%, var(--yellow) 40% 60%, var(--purple) 60% 80%, var(--blue-2) 80%);
}
.hero__content { max-width: 680px; position: relative; z-index: 1; }
.hero h1 { margin-bottom: 1rem; color: var(--white); }
.hero h1 em { font-style: italic; color: var(--orange-2); }
.hero .eyebrow { color: var(--yellow); }
.hero .eyebrow::before { background: var(--yellow); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.82); max-width: 560px; margin-bottom: 1.75rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; margin-bottom: 2.25rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; padding: 0; margin: 0; list-style: none; color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.hero__meta li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta svg { width: 18px; height: 18px; color: var(--yellow); flex: none; }

/* Promo banner (yellow label, like the shop sign) */
.promo {
  display: flex; align-items: center; gap: 1rem;
  max-width: 560px; margin-bottom: 1.6rem;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  position: relative; overflow: hidden;
}
.promo::after {
  content: ""; position: absolute; top: -60%; left: -30%; width: 40%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: rotate(12deg);
  animation: promo-shine 5s ease-in-out infinite;
}
@keyframes promo-shine { 0%, 65% { left: -40%; } 100% { left: 130%; } }
.promo__icon {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: var(--orange); color: var(--white);
}
.promo__icon svg { width: 26px; height: 26px; }
.promo__text strong { display: block; font-size: 1.08rem; line-height: 1.25; color: var(--navy); }
.promo__text span { display: block; color: rgba(15,46,92,0.8); font-size: 0.86rem; margin-top: 0.2rem; }

/* App store badges */
.app-badge {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 1rem; border-radius: 10px;
  background: var(--navy); color: var(--white); text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.18s ease, background 0.18s ease;
}
.app-badge:hover, .app-badge:focus-visible { transform: translateY(-2px); color: var(--white); background: var(--blue); }
.app-badge svg { width: 28px; height: 28px; flex: none; }
.app-badge small { display: block; font-size: 0.7rem; line-height: 1; opacity: 0.75; font-weight: 500; }
.app-badge strong { display: block; font-size: 1.05rem; line-height: 1.15; }
.app-badges { display: grid; gap: 0.7rem; }
.hero .app-badge { background: var(--white); color: var(--navy); border-color: transparent; padding: 0.55rem 1rem; border-radius: 999px; }
.hero .app-badge:hover, .hero .app-badge:focus-visible { background: var(--yellow-2); color: var(--navy); }
.hero .app-badge svg { width: 24px; height: 24px; }
.hero .app-badge strong { font-size: 0.98rem; }
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .hero__actions .app-badge { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Feature strip
   -------------------------------------------------------------------------- */
.features { border-bottom: 1px solid var(--line); background: var(--bg-warm); }
.features__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
  padding: 1.75rem 0;
}
.feature { display: flex; align-items: center; gap: 0.9rem; }
.feature__icon {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: var(--white); color: var(--orange); box-shadow: var(--shadow-sm);
}
.feature:nth-child(2) .feature__icon { color: var(--yellow); background: var(--navy); }
.feature:nth-child(3) .feature__icon { color: var(--purple); }
.feature:nth-child(4) .feature__icon { color: var(--blue); }
.feature__icon svg { width: 24px; height: 24px; }
.feature strong { display: block; font-size: 1rem; color: var(--navy); }
.feature span { color: var(--muted); font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about__badge {
  position: absolute; right: -1rem; bottom: 1.5rem;
  padding: 1rem 1.25rem; border-radius: 12px;
  background: var(--purple); color: var(--white); font-weight: 700; line-height: 1.2;
  box-shadow: var(--shadow);
}
.about__badge small { display: block; font-weight: 500; font-size: 0.8rem; opacity: 0.85; }
.about__text p { color: var(--muted); }
.about__text ul { margin: 1.25rem 0 1.75rem; padding: 0; list-style: none; display: grid; gap: 0.6rem; }
.about__text li { display: flex; gap: 0.65rem; align-items: flex-start; }
.about__text li svg { flex: none; width: 20px; height: 20px; margin-top: 0.2rem; color: var(--orange); }
@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; }
  .about__media { order: 2; max-width: 520px; margin-inline: auto; }
  .about__media img { aspect-ratio: 4 / 3; }
  .about__badge { right: 0.75rem; }
}

/* --------------------------------------------------------------------------
   Menu cards
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 0.45rem; }
.card__body p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.card__link { margin-top: 1rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--orange); }
.card__link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.card__link:hover svg { transform: translateX(4px); }
.card__link::after { content: ""; position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   Order options
   -------------------------------------------------------------------------- */
.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.order-card {
  padding: 2rem 1.75rem; border-radius: var(--radius); text-align: center;
  background: var(--bg-alt); border: 1px solid var(--line);
}
.order-card--primary { background: linear-gradient(160deg, var(--navy), var(--blue)); border-color: transparent; color: var(--white); box-shadow: var(--shadow); }
.order-card--primary h3 { color: var(--white); }
.order-card.order-card--primary p { color: rgba(255,255,255,0.85); }
.order-card--primary .order-card__icon { background: rgba(255,255,255,0.14); color: var(--yellow); }
.order-card__icon {
  width: 64px; height: 64px; margin: 0 auto 1.1rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--white); color: var(--orange); box-shadow: var(--shadow-sm);
}
.order-card__icon svg { width: 30px; height: 30px; }
.order-card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.4rem; }
.order-card .btn { width: 100%; }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid; gap: 0.9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 12px; background: var(--bg-alt); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(180deg, transparent, rgba(10, 34, 71, 0.85));
  color: var(--white); font-size: 0.9rem; font-weight: 600;
}
.gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery figure:nth-child(4) { grid-column: span 2; }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery figure { aspect-ratio: 1; }
  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16 / 10; }
  .gallery figure:nth-child(4) { grid-column: span 2; aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   Social / reviews
   -------------------------------------------------------------------------- */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.social-card {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.25rem; border-radius: 12px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--navy); transition: border-color 0.2s ease, transform 0.2s ease;
}
.social-card:hover, .social-card:focus-visible { border-color: var(--orange); transform: translateY(-3px); color: var(--navy); }
.social-card svg { width: 30px; height: 30px; flex: none; color: var(--blue); }
.social-card:nth-child(1) svg { color: var(--orange); }
.social-card:nth-child(2) svg { color: var(--yellow); }
.social-card:nth-child(3) svg { color: var(--blue); }
.social-card:nth-child(4) svg { color: var(--purple); }
.social-card strong { display: block; }
.social-card span { display: block; color: var(--muted); font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   CTA banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: 20px; text-align: center;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange) 55%, var(--orange-2));
  color: var(--white);
  box-shadow: 0 20px 50px rgba(242, 107, 29, 0.3);
}
.cta-banner::before {
  content: ""; position: absolute; inset: -40%; z-index: -1;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 45%);
}
.cta-banner .eyebrow { color: var(--yellow); }
.cta-banner .eyebrow::before { background: var(--yellow); }
.cta-banner h2 { margin-bottom: 0.6rem; color: var(--white); }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 1.75rem; }
.cta-banner .hero__actions { justify-content: center; margin-bottom: 0; }
.cta-banner .btn--primary { background: var(--white); color: var(--orange-dark); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.cta-banner .btn--primary:hover { color: var(--orange-dark); }

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
  color: var(--white);
}
.page-hero__bg, .page-hero__bg picture { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(10, 34, 71, 0.88); }
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 40%, var(--yellow) 40% 60%, var(--purple) 60% 80%, var(--blue-2) 80%);
}
.page-hero h1 { color: var(--white); }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero .eyebrow::before { background: var(--yellow); }
.page-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; justify-content: center; gap: 0.5rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; opacity: 0.6; }
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--yellow); }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list__icon {
  flex: none; width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 12px; background: var(--bg-warm); color: var(--orange);
}
.contact-list li:nth-child(2) .contact-list__icon { color: var(--blue); background: var(--bg-alt); }
.contact-list li:nth-child(3) .contact-list__icon { color: var(--purple); background: #f3eef9; }
.contact-list li:nth-child(4) .contact-list__icon { color: var(--navy); background: var(--yellow-2); }
.contact-list__icon svg { width: 24px; height: 24px; }
.contact-list h3 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.3rem; }
.contact-list address { font-style: normal; }
.contact-list p, .contact-list address { color: var(--muted); }
.contact-list p strong, .contact-list address strong { color: var(--navy); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--bg-alt); }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 460px; border: 0; }
.map-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 360px; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  padding: 3.5rem 0 1.5rem; color: rgba(255,255,255,0.78); font-size: 0.95rem;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange) 0 40%, var(--yellow) 40% 60%, var(--purple) 60% 80%, var(--blue-2) 80%);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-grid h3 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 320px; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-list a { color: rgba(255,255,255,0.85); }
.footer-list a:hover { color: var(--orange-2); }
.footer-list address { font-style: normal; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover { border-color: var(--orange); background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem 1.5rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.88rem;
}
.footer-bottom a { color: var(--orange-2); font-weight: 600; }
.footer-bottom a:hover { color: var(--yellow); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* --------------------------------------------------------------------------
   Reveal on scroll (progressive enhancement; JS adds .js to <html>)
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* Sticky mobile order bar */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 0.6rem; padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(15, 46, 92, 0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.mobile-cta .btn { flex: 1; padding: 0.85rem 1rem; white-space: normal; text-align: center; line-height: 1.2; }
@media (max-width: 640px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; }
}
