@charset "UTF-8";
/* ==========================================================================
   Mega Food Centre — Canons Park, Edgware
   A world food supermarket. Navy, lemon and paper.
   ========================================================================== */

/* --------------------------------------------------------------- tokens */

:root {
  /* brand, sampled from the roundel */
  --navy-900: #071427;
  --navy-800: #0a1e3c;
  --navy-700: #102a55;
  --navy:     #1c3b90;
  --navy-500: #2a51b4;
  --navy-300: #7d95d6;

  --lemon:     #e0d74f;
  --lemon-300: #f0ea9a;
  --lemon-700: #b7ab2b;

  --paper:   #fcfaf5;
  --paper-2: #f5f0e5;
  --paper-3: #ebe3d2;
  --ink:     #131519;
  --gold:    #9c7c36;

  --text:        #1b2430;
  --text-soft:   #55606f;
  --text-faint:  #8a94a2;
  --rule:        rgba(16, 42, 85, .14);
  --rule-strong: rgba(16, 42, 85, .28);

  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --wrap-wide: 1520px;
  --gut: clamp(1.25rem, 4vw, 3rem);

  --r-sm: 6px;
  --r: 14px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow-sm: 0 1px 2px rgba(10, 30, 60, .06), 0 6px 20px -12px rgba(10, 30, 60, .3);
  --shadow:    0 2px 6px rgba(10, 30, 60, .06), 0 24px 60px -30px rgba(10, 30, 60, .45);
  --shadow-lg: 0 4px 10px rgba(10, 30, 60, .07), 0 44px 90px -40px rgba(10, 30, 60, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --header-h: 76px;
}

/* ---------------------------------------------------------------- reset */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-feature-settings: "kern", "liga", "cv05";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--navy-800);
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }

ul, ol { margin: 0 0 1.2em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--rule); margin: 3rem 0; }

::selection { background: var(--lemon); color: var(--navy-900); }

:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100%;
  z-index: 200; padding: .75rem 1.25rem;
  background: var(--navy-900); color: #fff;
  border-radius: 0 0 var(--r) var(--r); font-size: .9rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* -------------------------------------------------------------- layout */

.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.wrap-wide { width: min(100% - var(--gut) * 2, var(--wrap-wide)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gut) * 2, 760px); margin-inline: auto; }

.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--navy-900); color: rgba(255, 255, 255, .82); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }

/* ------------------------------------------------------------ typography */

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  flex-wrap: wrap; max-width: 100%;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .19em; text-transform: uppercase;
  color: var(--navy); margin: 0 0 1.15rem;
}
.kicker::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6;
}
.kicker--plain::before { display: none; }
.section--dark .kicker, .hero .kicker { color: var(--lemon); }

.h-display { font-size: clamp(2.6rem, 6.4vw, 5.1rem); letter-spacing: -.028em; }
.h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); letter-spacing: -.024em; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -.02em; }
.h3 { font-size: clamp(1.35rem, 2.1vw, 1.8rem); }
.h4 { font-size: 1.15rem; letter-spacing: -.01em; }

.lede {
  font-size: clamp(1.1rem, 1.55vw, 1.32rem);
  line-height: 1.55;
  color: var(--text-soft);
}
.section--dark .lede { color: rgba(255, 255, 255, .74); }

.serif-lede {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 24;
  font-size: clamp(1.32rem, 2.35vw, 1.95rem);
  line-height: 1.4; letter-spacing: -.015em;
  color: var(--navy-800);
}

.muted { color: var(--text-soft); }
.small { font-size: .9rem; }
.tiny { font-size: .78rem; letter-spacing: .04em; }
.mono-num { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- rules */

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }
.rule-lemon {
  width: 54px; height: 3px; background: var(--lemon);
  border-radius: 2px; margin: 0 0 1.6rem;
}

/* -------------------------------------------------------------- buttons */

.btn {
  max-width: 100%;
  --btn-bg: var(--navy);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 100px;
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -14px rgba(10, 30, 60, .7); }
.btn:active { transform: translateY(0); }

.btn--lemon { --btn-bg: var(--lemon); --btn-fg: var(--navy-900); }
.btn--lemon:hover { --btn-bg: var(--lemon-300); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: currentColor;
  border-color: currentColor; opacity: .92;
}
.btn--ghost:hover { --btn-bg: rgba(255, 255, 255, .1); opacity: 1; }

.btn--ink { --btn-bg: var(--navy-900); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--navy); border-color: var(--rule-strong); }
.btn--outline:hover { --btn-bg: rgba(28, 59, 144, .06); border-color: var(--navy); }
.btn--sm { padding: .62rem 1.15rem; font-size: .82rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .86rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  padding-bottom: .35rem;
  background-image: linear-gradient(var(--lemon), var(--lemon));
  background-size: 0 2px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .45s var(--ease-out);
}
.link-arrow svg { transition: transform .35s var(--ease-out); }
.link-arrow:hover { background-size: 100% 2px; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--lemon); }

/* --------------------------------------------------------------- topbar */

.topbar {
  background: var(--navy-900); color: rgba(255, 255, 255, .72);
  font-size: .77rem; letter-spacing: .045em;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 40px; padding-block: .45rem;
}
.topbar__facts { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__facts span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--lemon); }
.topbar__socials { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.topbar__socials svg { width: 15px; height: 15px; }

.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lemon); flex-shrink: 0;
}
.dot--open { background: #63d29b; box-shadow: 0 0 0 3px rgba(99, 210, 155, .22); }
.dot--shut { background: #e0785a; }

@media (max-width: 860px) { .topbar__facts span:nth-child(n+3) { display: none; } }
@media (max-width: 560px) { .topbar__facts span:nth-child(n+2) { display: none; } }

/* --------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
/* The frosted pane sits on a pseudo-element rather than on .site-header itself:
   backdrop-filter would turn the header into the containing block for the
   position:fixed mobile menu inside it, trapping the panel in the header box. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(252, 250, 245, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  transition: background-color .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--rule); }

.header__inner {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display); font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 20;
  font-size: 1.16rem; letter-spacing: -.015em; color: var(--navy-800);
}
.brand__sub {
  font-size: .585rem; letter-spacing: .21em; text-transform: uppercase;
  color: var(--text-faint); margin-top: .34rem;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.9rem, 1.7vw, 1.9rem); }
.nav a {
  position: relative; text-decoration: none;
  font-size: .845rem; font-weight: 500; letter-spacing: .015em;
  color: var(--text); padding-block: .35rem;
  transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--lemon);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav a:hover { color: var(--navy); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.nav a[aria-current] { color: var(--navy-800); font-weight: 600; }

.header__cta { flex-shrink: 0; }
.nav > .btn { display: none; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; padding: 0;
  background: none; border: 1px solid var(--rule-strong); border-radius: 50%;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; position: relative;
  width: 17px; height: 1.5px; background: var(--navy-800); border-radius: 2px;
  transition: transform .35s var(--ease-out), background-color .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px;
  background: var(--navy-800); border-radius: 2px;
  transition: transform .35s var(--ease-out), top .25s var(--ease);
}
.nav-toggle span::before { top: -5.5px; }
.nav-toggle span::after  { top:  5.5px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }

  /* The brand and the toggle stay above the panel so the bar reads as a
     header with a close button, not as a menu that swallowed the logo. */
  .brand, .nav-toggle { position: relative; z-index: 95; }

  .nav {
    position: fixed; inset: 0; z-index: 90;
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    gap: 0;
    /* --menu-top is the header's live bottom edge, set by site.js on open;
       the fallback covers the first paint before any script runs. */
    padding: calc(var(--menu-top, var(--header-h)) + 3.5vh) var(--gut)
             calc(var(--gut) + env(safe-area-inset-bottom, 0px));
    background: var(--paper);
    clip-path: circle(0 at calc(100% - 46px) 46px);
    visibility: hidden;
    transition: clip-path .55s var(--ease-out), visibility 0s linear .55s;
    overflow-y: auto; overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  body.menu-open .nav {
    clip-path: circle(150% at calc(100% - 46px) 46px);
    visibility: visible;
    transition: clip-path .55s var(--ease-out), visibility 0s;
  }
  body.menu-open { overflow: hidden; }
  /* No blur needed once the opaque panel is behind the bar. */
  body.menu-open .site-header::before {
    background: var(--paper);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }

  .nav a {
    font-family: var(--font-display);
    font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 30;
    font-size: clamp(1.45rem, 6.2vw, 2.4rem); font-weight: 500;
    letter-spacing: -.02em; padding-block: .28rem;
    color: var(--navy-800);
  }
  .nav a::after { height: 3px; }
  /* The list reads from the top; the call to action takes up the slack at the
     foot of the panel, and falls back to a plain gap when space runs out. */
  .nav > a:nth-last-child(2) { margin-bottom: 1.4rem; }
  .nav > .btn { display: inline-flex; margin-top: auto; font-size: .95rem; }
}

/* Short phones in landscape: six display-sized items will not fit, so drop
   the panel back to a compact list rather than letting it clip. */
@media (max-width: 1080px) and (max-height: 620px) {
  .nav {
    /* Wrapping a column against a fixed-height panel spills the list into a
       second column instead of running off the bottom of the screen. */
    flex-wrap: wrap; align-content: flex-start; column-gap: clamp(2rem, 8vw, 5rem);
    padding-top: calc(var(--menu-top, var(--header-h)) + .6rem);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    overflow: auto;
  }
  .nav a { font-size: clamp(1.15rem, 4.4vw, 1.5rem); padding-block: .18rem; }
  .nav > a:nth-last-child(2) { margin-bottom: .9rem; }
  .nav > .btn { margin-top: 0; }
}

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: min(92svh, 880px);
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  background: var(--navy-900);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(7, 20, 39, .9) 0%, rgba(7, 20, 39, .55) 26%,
                    rgba(7, 20, 39, .12) 60%, rgba(7, 20, 39, .34) 100%),
    linear-gradient(100deg, rgba(7, 20, 39, .93) 0%, rgba(7, 20, 39, .82) 28%,
                    rgba(7, 20, 39, .34) 55%, transparent 78%);
}
.hero__inner { padding-block: clamp(3rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem); }
.hero__content { max-width: 40rem; }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: normal; color: var(--lemon);
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 60;
}
.hero__lede { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255, 255, 255, .84); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }

.hero__facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.hero__fact {
  padding: 1.15rem 1.4rem 1.15rem 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
}
.hero__fact:last-child { border-right: 0; }
@media (min-width: 1081px) { .hero__fact:last-child { padding-right: 3.5rem; } }
.hero__fact b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 20;
  font-size: 1.06rem; color: var(--lemon); letter-spacing: -.01em;
}
.hero__fact span { font-size: .8rem; color: rgba(255, 255, 255, .68); }
@media (max-width: 820px) and (min-width: 561px) {
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
  .hero__fact { padding-inline: 0 1rem; }
  .hero__fact:nth-child(2n) { border-right: 0; }
  .hero__fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .18); }
}
@media (max-width: 560px) {
  .hero__facts { grid-template-columns: 1fr; }
  .hero__fact { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
  .hero__fact:last-child { border-bottom: 0; }
}

.scroll-cue {
  position: absolute; right: var(--gut); bottom: 2.2rem;
  writing-mode: vertical-rl;
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55); text-decoration: none;
  display: flex; align-items: center; gap: 1rem;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(rgba(255, 255, 255, .6), transparent);
}
@media (max-width: 1080px) { .scroll-cue { display: none; } }

/* --------------------------------------------------------------- ticker */

.ticker {
  background: var(--navy); color: var(--lemon);
  padding-block: .95rem; overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .12);
}
.ticker__track {
  display: flex; width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; flex-shrink: 0; }
.ticker span {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 24;
  font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 500;
  letter-spacing: .01em; padding-inline: 1.6rem;
  display: inline-flex; align-items: center; gap: 1.6rem; white-space: nowrap;
}
.ticker span::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor; opacity: .5;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------- intro grid */

.split {
  display: grid; gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split--reverse > *:first-child { order: 2; }
  .split--narrow-media { grid-template-columns: 1.15fr .85fr; }
}
.split__media { position: relative; }
.split__media .pic img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
/* Every image here keeps its own aspect ratio — the two below the lead image are
   always chosen from the same source shape, so the row still lines up. */
.split__media--stack { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; align-items: start; }
.split__media--stack .pic:first-child { grid-column: 1 / -1; }
.split__media--stack .pic img { width: 100%; }

.badge-stamp {
  position: absolute; right: -18px; bottom: -18px;
  width: clamp(96px, 12vw, 132px); height: clamp(96px, 12vw, 132px);
  display: grid; place-items: center; text-align: center;
  background: var(--lemon); color: var(--navy-900);
  border-radius: 50%; box-shadow: var(--shadow);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; line-height: 1.35; padding: 1rem;
}
.badge-stamp b {
  display: block; font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 30;
  font-size: 1.5rem; letter-spacing: -.02em; font-weight: 600;
}

.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 2.5rem; border-block: 1px solid var(--rule);
}
.stat-row div {
  padding: 1.2rem 1.2rem 1.2rem 0;
  border-right: 1px solid var(--rule);
}
.stat-row div:last-child { border-right: 0; }
.stat-row b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  font-size: clamp(1.7rem, 3vw, 2.3rem); color: var(--navy); line-height: 1;
  letter-spacing: -.03em;
}
.stat-row span { font-size: .8rem; color: var(--text-soft); display: block; margin-top: .5rem; }

/* ---------------------------------------------------------- departments */

.depts { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

.dept {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); text-decoration: none; color: #fff;
  background: var(--navy-800); isolation: isolate;
  min-height: clamp(380px, 46vw, 520px);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 2.2vw, 2rem);
}
.dept .pic { position: absolute; inset: 0; z-index: -2; }
.dept .pic img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out), filter .6s var(--ease);
}
.dept::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7, 20, 39, .93) 8%, rgba(7, 20, 39, .55) 42%, rgba(7, 20, 39, .1) 78%);
  transition: opacity .5s var(--ease);
}
.dept:hover .pic img { transform: scale(1.06); }
.dept__kicker {
  font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lemon); margin-bottom: .9rem;
}
.dept h3 { color: #fff; font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: .55rem; }
.dept p { font-size: .9rem; color: rgba(255, 255, 255, .78); margin-bottom: 1.1rem; }
.dept__more {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: var(--lemon);
}
.dept__more svg { transition: transform .4s var(--ease-out); }
.dept:hover .dept__more svg { transform: translateX(5px); }
.dept__rule {
  position: absolute; left: 0; bottom: 0; height: 4px; width: 100%;
  background: var(--lemon); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.dept:hover .dept__rule { transform: scaleX(1); }

/* ----------------------------------------------------------- halal band */

.halal {
  position: relative; overflow: hidden;
  background: var(--navy-900); color: #fff; isolation: isolate;
}
.halal__bg { position: absolute; inset: 0; z-index: -2; }
.halal__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; }
.halal::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 15% 30%, rgba(7, 20, 39, .82), rgba(7, 20, 39, .96));
}
.halal__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) { .halal__grid { grid-template-columns: 1.25fr .75fr; } }
.halal h2 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
.halal h3 { color: #fff; }
.halal h2 em { font-style: normal; color: var(--lemon); }
.halal__points { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; gap: 1.1rem; }
.halal__points li {
  display: flex; gap: .9rem; align-items: flex-start;
  font-size: .96rem; color: rgba(255, 255, 255, .8);
}
.halal__points svg { flex-shrink: 0; margin-top: .2rem; color: var(--lemon); }

.cert {
  border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem); text-align: center;
  background: rgba(255, 255, 255, .04);
}
.cert__ring {
  width: 110px; height: 110px; margin: 0 auto 1.4rem;
  border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--lemon); color: var(--lemon);
  font-family: var(--font-display); font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  font-size: 1.9rem; letter-spacing: -.03em; line-height: 1;
}
.cert__ring small { display: block; font-family: var(--font-sans); font-size: .58rem;
  letter-spacing: .2em; font-weight: 600; margin-top: .35rem; }
.cert p { font-size: .88rem; color: rgba(255, 255, 255, .72); }

/* ---------------------------------------------------------------- reels */

.reels-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.reels {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 24vw, 300px);
  gap: 1.15rem; overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; padding-bottom: 1.2rem;
  scrollbar-width: thin;
}
.reels::-webkit-scrollbar { height: 6px; }
.reels::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 3px; }
.reels::-webkit-scrollbar-track { background: var(--rule); border-radius: 3px; }

.reel {
  position: relative; scroll-snap-align: start;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--navy-900); aspect-ratio: 9 / 16;
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.reel:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.reel video, .reel img.reel__poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.reel__meta {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 1.4rem 1.15rem 1.15rem;
  background: linear-gradient(to top, rgba(7, 20, 39, .9), transparent);
  color: #fff; pointer-events: none;
}
.reel__meta b { display: block; font-size: .9rem; font-weight: 600; letter-spacing: -.005em; }
.reel__meta span { font-size: .72rem; color: rgba(255, 255, 255, .66); }
.reel__sound {
  position: absolute; top: .8rem; right: .8rem; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center;
  background: rgba(7, 20, 39, .55); border: 1px solid rgba(255, 255, 255, .25);
  color: #fff; backdrop-filter: blur(6px);
  transition: background-color .25s var(--ease);
}
.reel__sound:hover { background: rgba(7, 20, 39, .85); }
.reel__sound svg { width: 15px; height: 15px; }

/* -------------------------------------------------------------- origins */

.origins { display: grid; gap: 1.35rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.origin {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .3s;
}
.origin:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.origin__media { position: relative; overflow: hidden; }
.origin__media img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .9s var(--ease-out); }
.origin:hover .origin__media img { transform: scale(1.05); }
.origin__flagline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy) 50%, var(--lemon) 50%);
}
.origin__body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.origin h3 { font-size: 1.3rem; margin-bottom: .3rem; }
.origin__lede { font-size: .82rem; color: var(--navy); letter-spacing: .04em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 1.1rem; }
.origin ul { list-style: none; padding: 0; margin: 0; font-size: .89rem; color: var(--text-soft); }
.origin li {
  padding-left: 1.1rem; position: relative; margin-bottom: .45rem;
}
.origin li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--lemon);
}

/* --------------------------------------------------------------- offers */

.offers-panel { background: var(--navy-900); border-radius: var(--r-xl); overflow: hidden; }
.offers-panel__head {
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.6rem, 4vw, 3.2rem) 0;
  color: #fff;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.offers-panel__head h2 { color: #fff; }

.offer-grid {
  display: grid;
  margin-top: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.offer {
  background: var(--navy-900); padding: 1.6rem 1.5rem 1.8rem;
  display: flex; flex-direction: column; gap: .9rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: background-color .35s var(--ease);
}
.offer:last-child { border-right: 0; }
.offer:hover { background: #0d2450; }
.offer__img { border-radius: var(--r); overflow: hidden; }
.offer__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.offer h3 { color: #fff; font-size: 1.02rem; margin: 0; letter-spacing: -.01em; }
.offer__size { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5); }
.offer__price {
  margin-top: auto; display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 30;
  font-size: 1.55rem; font-weight: 600; color: var(--lemon); letter-spacing: -.02em;
}
.offer__multi {
  font-family: var(--font-sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--navy-900); background: var(--lemon);
  padding: .25rem .55rem; border-radius: 100px;
}
.offers-note { font-size: .78rem; color: rgba(255, 255, 255, .5);
  padding: 1.4rem clamp(1.6rem, 4vw, 3.2rem) clamp(1.8rem, 3vw, 2.4rem); }

/* ---------------------------------------------------------------- press */

.press { text-align: center; }
.press blockquote {
  margin: 0 auto; max-width: 24ch;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 60;
  font-size: clamp(1.8rem, 4vw, 3.1rem); font-weight: 500;
  line-height: 1.16; letter-spacing: -.025em; color: var(--navy-800);
}
.press blockquote::before { content: "“"; color: var(--lemon); }
.press blockquote::after { content: "”"; color: var(--lemon); }
.press cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint);
}
.press cite a { color: var(--navy); text-decoration-color: var(--lemon); }

/* ---------------------------------------------------------------- visit */

.visit-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: .92fr 1.08fr; } }

.hours-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours-table th, .hours-table td { text-align: left; padding: .78rem 0; border-bottom: 1px solid var(--rule); }
.hours-table th { font-weight: 500; color: var(--text-soft); }
.hours-table td { text-align: right; font-variant-numeric: tabular-nums; color: var(--navy-800); font-weight: 500; }
.hours-table tr.is-today th, .hours-table tr.is-today td { color: var(--navy); font-weight: 600; }

.hours-table--dark th, .hours-table--dark td { border-bottom-color: rgba(255, 255, 255, .15); }
.hours-table--dark th { color: rgba(255, 255, 255, .6); }
.hours-table--dark td { color: #fff; }
.hours-table--dark tr.is-today th { color: var(--lemon); }
.hours-table--dark tr.is-today td { color: var(--lemon); }

.nap { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.5rem; }
.nap li { display: flex; gap: 1rem; align-items: flex-start; }
.nap svg { flex-shrink: 0; color: var(--navy); margin-top: .25rem; }
.nap b { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: .3rem; font-weight: 600; }
.nap a { color: var(--navy-800); text-decoration-color: var(--lemon); text-decoration-thickness: 2px; }

.map-frame {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--rule);
  background: var(--paper-2); min-height: 340px; height: 100%;
  display: grid; place-items: center;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map-fallback { text-align: center; padding: 3rem 2rem; }
.map-fallback .pic img { border-radius: var(--r); margin-bottom: 1.4rem; }

/* --------------------------------------------------------------- footer */

.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .62); padding-top: clamp(4rem, 7vw, 6rem); }
.site-footer h4 {
  color: #fff; font-family: var(--font-sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.footer-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.footer-grid > *:first-child { grid-column: span 2; max-width: 40ch; }
@media (max-width: 700px) { .footer-grid > *:first-child { grid-column: span 1; } }
.footer-brand { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.footer-brand img { width: 54px; height: 54px; }
.footer-brand span {
  font-family: var(--font-display); font-weight: 600;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 30;
  font-size: 1.3rem; color: #fff; letter-spacing: -.015em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; font-size: .9rem; }
.site-footer li { margin-bottom: .7rem; }
.site-footer a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--lemon); }

.socials { display: flex; gap: .7rem; margin-top: 1.6rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background-color .3s var(--ease), border-color .3s, color .3s, transform .3s var(--ease-out);
}
.socials a:hover { background: var(--lemon); border-color: var(--lemon); color: var(--navy-900); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-block: 1.6rem 2.2rem;
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font-size: .78rem; color: rgba(255, 255, 255, .45);
}

/* ------------------------------------------------------------ subpages */

.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--navy-900); color: #fff;
  padding-block: clamp(4.5rem, 11vw, 9rem) clamp(3.5rem, 8vw, 6.5rem);
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(7, 20, 39, .96), rgba(7, 20, 39, .74));
}
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lede { max-width: 58ch; color: rgba(255, 255, 255, .78); }

.crumbs {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55); margin-bottom: 1.8rem;
}
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--lemon); }
.crumbs span { margin-inline: .5rem; opacity: .5; }

.prose { max-width: 68ch; }
.prose h2 { margin-top: 2.8rem; }
.prose h3 { margin-top: 2rem; font-size: 1.25rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul li::marker { color: var(--lemon); }

.card-list { display: grid; gap: 1.35rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card-list--stack { grid-template-columns: 1fr; }
.card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.section--paper2 .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.section--dark .card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .14); }
.section--dark .card:hover { background: rgba(255, 255, 255, .08); box-shadow: none; }
.section--dark .card h3 { color: #fff; }
.section--dark .card p { color: rgba(255, 255, 255, .7); }
.card h3 { font-size: 1.18rem; margin-bottom: .6rem; }
.card p { font-size: .93rem; color: var(--text-soft); }
.card__icon { color: var(--navy); display: block; margin-bottom: .9rem; }
.section--dark .card__icon { color: var(--lemon); }
.card__num {
  font-family: var(--font-display); font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  font-size: 2.1rem; color: var(--lemon-700); line-height: 1; display: block; margin-bottom: 1rem;
  letter-spacing: -.04em;
}

.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 2rem;
  padding: .95rem 0; border-bottom: 1px solid var(--rule);
  font-size: .96rem;
}
.spec-list li b { font-weight: 500; color: var(--navy-800); }
.spec-list li span { color: var(--text-soft); text-align: right; font-size: .88rem; }

/* ------------------------------------------------------------- gallery */

.gallery {
  columns: 4 240px; column-gap: 1rem;
}
.gallery .pic { break-inside: avoid; margin-bottom: 1rem; border-radius: var(--r); overflow: hidden;
  background: var(--paper-3); }
.gallery .pic img { width: 100%; transition: transform .8s var(--ease-out), filter .5s var(--ease); }
.gallery .pic:hover img { transform: scale(1.035); }

.reels-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.reels-grid .reel { scroll-snap-align: none; }

/* ------------------------------------------------------------------ faq */

.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 24;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem); font-weight: 500;
  color: var(--navy-800); letter-spacing: -.012em;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--navy); }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%;
  width: 13px; height: 13px; margin-top: -6px;
  background:
    linear-gradient(var(--navy), var(--navy)) center/13px 1.5px no-repeat,
    linear-gradient(var(--navy), var(--navy)) center/1.5px 13px no-repeat;
  transition: transform .35s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 3rem 1.6rem 0; color: var(--text-soft); font-size: .97rem; max-width: 72ch; }

.faq--dark { border-top-color: rgba(255, 255, 255, .16); }
.faq--dark details { border-bottom-color: rgba(255, 255, 255, .16); }
.faq--dark summary { color: #fff; }
.faq--dark summary:hover { color: var(--lemon); }
.faq--dark summary::after {
  background:
    linear-gradient(var(--lemon), var(--lemon)) center/13px 1.5px no-repeat,
    linear-gradient(var(--lemon), var(--lemon)) center/1.5px 13px no-repeat;
}
.faq--dark details p { color: rgba(255, 255, 255, .72); }

/* -------------------------------------------------------------- figures */

.fig { margin: 0; }
.fig figcaption {
  margin-top: .95rem; font-size: .82rem; color: var(--text-faint); letter-spacing: .015em;
}
.section--dark .fig figcaption { color: rgba(255, 255, 255, .5); }

/* A full-width photograph, shown at its own aspect ratio. */
.band .pic img { width: 100%; border-radius: var(--r-lg); }

/* ------------------------------------------------------------ dev notice */

.devbar {
  background: repeating-linear-gradient(45deg, #1c1c1c, #1c1c1c 12px, #262626 12px, #262626 24px);
  color: var(--lemon); font-size: .8rem; padding: .7rem 0;
}
.devbar b { color: #fff; }
.devbar code { background: rgba(255, 255, 255, .1); padding: .12rem .4rem; border-radius: 4px; }

/* --------------------------------------------------------------- reveal */

[data-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }
[data-reveal-delay="4"] { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
}

/* -------------------------------------------------------------- utility */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.text-centre { text-align: center; }
.max-58 { max-width: 58ch; }
.max-46 { max-width: 46ch; }
.mx-auto { margin-inline: auto; }
.flex-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.flex-actions--centre { justify-content: center; }
.dot--inline { display: inline-block; vertical-align: middle; margin-right: .55rem; }
address { font-style: normal; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media print {
  .site-header, .topbar, .site-footer, .reels, .hero__media, .scroll-cue { display: none !important; }
  body { background: #fff; color: #000; }
}
