/* ============================================================
   OMA — Borough Market, London
   Design system: calm coastal luxury — ivory grounds,
   Aegean navy, sand accents, wide-tracked lowercase type.
   Stack: GSAP (ScrollSmoother / ScrollTrigger / SplitText),
   Swiper, flatpickr — mirroring the reference site.
   ============================================================ */

:root {
  --ivory: #f5f1e8;
  --ivory-deep: #ece6d8;
  --white: #fdfcf9;
  --navy: #16324a;
  --navy-deep: #0e2233;
  --sand: #b9a284;
  --sand-light: #d8cbb6;
  --sea: #4a7a96;
  --ink: #22292e;
  --muted: #6f6a5e;
  --line: rgba(22, 50, 74, 0.14);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --space-section: clamp(5rem, 12vw, 9rem);
  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

p {
  margin: 0 0 1.1rem;
}

/* SplitText line masks */
[data-split] .split-line {
  overflow: hidden;
  display: block;
}

/* ------------------------------------------------------------
   Utilities
   ------------------------------------------------------------ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--sand);
  margin: 0 0 1.4rem;
}

.eyebrow--dark {
  color: var(--sand-light);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 34em;
}

.button {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-decoration: none;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.button:hover {
  background: transparent;
  color: var(--navy);
}

.button--small {
  padding: 0.68rem 1.5rem;
  font-size: 0.7rem;
}

.button--stroke {
  background: transparent;
  color: var(--navy);
}

.button--stroke:hover {
  background: var(--navy);
  color: var(--ivory);
}

.text-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-decoration: none;
  color: var(--navy);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--sand);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.text-link:hover {
  color: var(--sea);
  border-color: var(--sea);
}

.section {
  padding: var(--space-section) var(--gutter);
  max-width: 1440px;
  margin-inline: auto;
}

.section__intro--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section__intro--row > div {
  max-width: 36em;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem var(--gutter);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease),
    padding 0.5s var(--ease), transform 0.6s var(--ease);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-solid {
  background: rgba(245, 241, 232, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 0.7rem;
}

.brand {
  justify-self: center;
  display: block;
  line-height: 0;
}

.brand__logo {
  height: clamp(30px, 3.4vw, 42px);
  width: auto;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
  /* logo artwork is dark — invert to ivory over the hero */
  filter: brightness(0) invert(0.95);
}

.site-header.is-solid .brand__logo,
body.nav-open .site-header .brand__logo {
  filter: none;
}

body.nav-open .site-header .brand__logo {
  filter: brightness(0) invert(0.95);
}

.header-reserve {
  justify-self: end;
  background: transparent;
  border-color: rgba(245, 241, 232, 0.55);
  color: var(--ivory);
}

.header-reserve:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy);
}

.site-header.is-solid .header-reserve {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--ivory);
}

.site-header.is-solid .header-reserve:hover {
  background: transparent;
  color: var(--navy);
}

/* burger */
.nav-toggle {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem 0;
  z-index: 92;
}

.nav-toggle__lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 30px;
}

.nav-toggle__lines span {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--ivory);
  transition: transform 0.45s var(--ease), width 0.45s var(--ease),
    background 0.4s var(--ease);
}

.nav-toggle__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ivory);
  transition: color 0.4s var(--ease);
}

.site-header.is-solid .nav-toggle__lines span {
  background: var(--navy);
}

.site-header.is-solid .nav-toggle__label {
  color: var(--navy);
}

body.nav-open .nav-toggle__lines span,
body.nav-open .site-header.is-solid .nav-toggle__lines span {
  background: var(--ivory);
}

body.nav-open .nav-toggle__label,
body.nav-open .site-header.is-solid .nav-toggle__label {
  color: var(--ivory);
}

body.nav-open .nav-toggle__lines span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-toggle__lines span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

body.nav-open .site-header {
  background: transparent;
  box-shadow: none;
}

body.nav-open .site-header .header-reserve {
  border-color: rgba(245, 241, 232, 0.55);
  background: transparent;
  color: var(--ivory);
}

/* ------------------------------------------------------------
   Fullscreen menu overlay
   ------------------------------------------------------------ */

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--navy-deep);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
}

.site-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-menu__link {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.4s var(--ease), letter-spacing 0.5s var(--ease);
}

.site-menu__link span {
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--sand);
}

.site-menu__link:hover {
  color: var(--sand-light);
  letter-spacing: 0.04em;
}

.site-menu__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 5rem;
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
  font-size: 0.85rem;
  color: rgba(245, 241, 232, 0.75);
}

.site-menu__meta a {
  display: block;
  text-decoration: none;
  line-height: 2;
}

.site-menu__meta a:hover {
  color: var(--sand-light);
}

/* ------------------------------------------------------------
   Hero — fullscreen media + centered logo
   ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 34, 51, 0.45) 0%,
    rgba(14, 34, 51, 0.15) 45%,
    rgba(14, 34, 51, 0.55) 100%
  );
}

.hero__center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
}

.hero__logo {
  display: block;
  width: clamp(220px, 34vw, 460px);
  height: auto;
  margin-inline: auto;
  color: var(--ivory);
}

.hero__logo-path {
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
}

.hero__tag {
  margin-top: 1.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.44em;
  color: rgba(245, 241, 232, 0.85);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  letter-spacing: 0.44em;
  color: rgba(245, 241, 232, 0.7);
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 0.7rem auto 0;
  background: rgba(245, 241, 232, 0.5);
  animation: scroll-pulse 2.2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scroll-pulse {
  0% {
    transform: scaleY(0);
  }
  45% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ------------------------------------------------------------
   Marquee (advantages)
   ------------------------------------------------------------ */

.marquee {
  overflow: hidden;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee__track span {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--navy);
  white-space: nowrap;
}

.marquee__track i {
  font-style: normal;
  color: var(--sand);
  font-size: 0.8rem;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------------------------------------
   Scrub band — full-bleed image, words fill in on scroll
   ------------------------------------------------------------ */

.scrub-band {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.scrub-band__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.7);
}

.scrub-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 64rem;
  padding: clamp(6rem, 15vh, 10rem) var(--gutter);
}

.scrub-band__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  color: var(--sand-light);
  margin: 0 0 2rem;
}

.scrub-band__title {
  font-size: clamp(1.8rem, 3.8vw, 3.3rem);
  color: var(--ivory);
  margin: 0;
}

.scrub-band__title .scrub-word {
  opacity: 0.18;
  display: inline-block;
}

.gsap-off .scrub-band__title .scrub-word {
  opacity: 1;
}

/* ------------------------------------------------------------
   Info split with hover list
   ------------------------------------------------------------ */

.info-split {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.info-split__media {
  grid-column: 1 / span 6;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

.info-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease);
}

.info-split__body {
  grid-column: 7 / span 6;
}

@media (max-width: 860px) {
  .info-split {
    display: block;
  }

  .info-split__media {
    aspect-ratio: 4 / 3;
  }

  .info-split__body {
    margin-top: 2rem;
  }
}

.hover-list {
  list-style: none;
  margin: 2.4rem 0;
  padding: 0;
}

.hover-list li {
  position: relative;
  padding: 1.1rem 0;
  cursor: pointer;
}

.hover-list hr {
  margin: 0 0 1.1rem;
  border: 0;
  border-top: 1px solid var(--line);
  transform-origin: left;
  transition: border-color 0.4s var(--ease);
}

.hover-list span {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--navy);
  transition: padding-left 0.5s var(--ease), color 0.4s var(--ease);
}

.hover-list li:hover span,
.hover-list li.is-active span {
  padding-left: 1.2rem;
  color: var(--sea);
}

/* ------------------------------------------------------------
   Full-bleed banner
   ------------------------------------------------------------ */

.banner {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ivory);
  overflow: hidden;
  background: var(--navy-deep);
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  opacity: 0.55;
}

.banner__content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter);
  max-width: 56rem;
}

.banner__content h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  font-style: italic;
}

/* ------------------------------------------------------------
   Page hero (interior pages)
   ------------------------------------------------------------ */

.page-hero {
  position: relative;
  min-height: clamp(340px, 46vh, 480px);
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  background: var(--navy-deep);
  overflow: hidden;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  opacity: 0.55;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 7.5rem var(--gutter) clamp(2rem, 4vh, 3rem);
}

.page-hero__content h1 {
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.page-hero__content .lede {
  color: rgba(245, 241, 232, 0.82);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

/* ------------------------------------------------------------
   Scattered, draggable carousel (tilted prints)
   ------------------------------------------------------------ */

.carousel-block {
  padding-block: var(--space-section);
  overflow: hidden;
}

.carousel-block__head {
  max-width: 46em;
  margin-inline: auto;
  padding: 0 var(--gutter);
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.carousel-block__stage {
  position: relative;
}

.carousel-block .swiper {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  overflow: visible;
  cursor: grab;
}

.carousel-block .swiper:active {
  cursor: grabbing;
}

.carousel-block .swiper-slide {
  width: clamp(240px, 26vw, 380px);
}

.carousel-block figure {
  margin: 0;
  transition: transform 0.7s var(--ease);
}

/* the scattered tilt pattern */
.carousel-block .swiper-slide:nth-child(5n + 1) figure {
  transform: rotate(-7deg) translateY(1.6rem);
}

.carousel-block .swiper-slide:nth-child(5n + 2) figure {
  transform: rotate(5deg) translateY(-0.6rem);
}

.carousel-block .swiper-slide:nth-child(5n + 3) figure {
  transform: rotate(-3deg) translateY(2.6rem);
}

.carousel-block .swiper-slide:nth-child(5n + 4) figure {
  transform: rotate(7deg) translateY(0.4rem);
}

.carousel-block .swiper-slide:nth-child(5n + 5) figure {
  transform: rotate(-5deg) translateY(1.8rem);
}

.carousel-block .swiper-slide figure:hover {
  transform: rotate(0deg) translateY(0) scale(1.02);
}

.carousel-block figure > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 50px rgba(14, 34, 51, 0.16);
}

.carousel-block figcaption {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--navy);
  text-align: center;
  margin-top: 1.2rem;
}

/* overlapping pill CTA, like the reference */
.carousel-block__cta {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.15rem 2rem;
  background: var(--navy);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(14, 34, 51, 0.28);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.carousel-block__cta:hover {
  background: var(--sea);
  transform: translateY(-50%) scale(1.04);
}

.carousel-block__cta span {
  transition: transform 0.4s var(--ease);
}

.carousel-block__cta:hover span {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .carousel-block__cta {
    position: static;
    transform: none;
    margin: 2rem var(--gutter) 0;
  }

  .carousel-block__cta:hover {
    transform: scale(1.04);
  }
}

.carousel-block__hint {
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
}

/* ------------------------------------------------------------
   Menu preview
   ------------------------------------------------------------ */

.menu-preview {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 860px) {
  .menu-preview__grid {
    grid-template-columns: 1fr;
  }
}

.dish-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dish-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.dish-list li:first-child {
  padding-top: 0;
}

.dish-list .dish__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.dish-list .dish__price {
  font-size: 0.85rem;
  color: var(--sand);
  white-space: nowrap;
}

/* ------------------------------------------------------------
   Journal cards
   ------------------------------------------------------------ */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

@media (max-width: 1000px) {
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .journal-grid {
    grid-template-columns: 1fr;
  }
}

.journal-card {
  text-decoration: none;
  display: block;
}

.journal-card__media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  margin-bottom: 1.2rem;
}

.journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.journal-card:hover .journal-card__media img {
  transform: scale(1.05);
}

.journal-card time {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--sand);
}

.journal-card h3 {
  font-size: 1.3rem;
  margin: 0.55rem 0 0.35rem;
  transition: color 0.35s var(--ease);
}

.journal-card:hover h3 {
  color: var(--sea);
}

.journal-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ------------------------------------------------------------
   Location
   ------------------------------------------------------------ */

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory-deep);
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .location {
    grid-template-columns: 1fr;
  }
}

.location__map {
  min-height: 480px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  filter: grayscale(0.9) sepia(0.12);
}

.location__body {
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
}

.location__details {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.4rem;
}

.location__details strong {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

.location__details p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.location__details a {
  color: var(--navy);
  text-decoration: none;
}

.location__details a:hover {
  color: var(--sea);
}

/* ------------------------------------------------------------
   Newsletter
   ------------------------------------------------------------ */

.newsletter {
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.newsletter .section {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

@media (max-width: 800px) {
  .newsletter .section {
    grid-template-columns: 1fr;
  }
}

.newsletter form {
  display: flex;
  gap: 0.8rem;
}

.newsletter input {
  flex: 1;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.newsletter input:focus {
  outline: none;
  border-color: var(--sea);
}

@media (max-width: 520px) {
  .newsletter form {
    flex-direction: column;
  }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */

.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 241, 232, 0.8);
  overflow: hidden;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter) 3rem;
  max-width: 1440px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo {
  width: clamp(140px, 14vw, 200px);
  filter: brightness(0) invert(0.95);
}

.site-footer__strap {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: var(--sand-light);
  margin-top: 1rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--sand-light);
  margin: 0 0 1.2rem;
}

.site-footer a {
  display: block;
  font-size: 0.86rem;
  color: rgba(245, 241, 232, 0.8);
  text-decoration: none;
  line-height: 2.1;
  transition: color 0.3s var(--ease);
}

.site-footer a:hover {
  color: var(--sand-light);
}

.site-footer address {
  font-style: normal;
  font-size: 0.86rem;
  line-height: 2.1;
}

.site-footer__bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.14);
  padding: 1.5rem var(--gutter);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.5);
  max-width: 1440px;
  margin-inline: auto;
}

/* dev screenshot mode (?at=…): cap viewport-height sections */
html.dev-shot .hero,
html.dev-shot .scrub-band,
html.dev-shot .banner {
  min-height: 900px;
}

html.dev-shot .page-hero {
  min-height: 480px;
}

/* ------------------------------------------------------------
   Menu page columns
   ------------------------------------------------------------ */

.menu-columns {
  columns: 2;
  column-gap: clamp(3rem, 7vw, 7rem);
}

@media (max-width: 860px) {
  .menu-columns {
    columns: 1;
  }
}

.menu-group {
  break-inside: avoid;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.menu-group h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--sand);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--navy);
}

.menu-note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

/* ------------------------------------------------------------
   Text intro (between image-heavy sections)
   ------------------------------------------------------------ */

.text-intro {
  text-align: center;
  max-width: 54rem;
}

.text-intro .lede {
  margin-inline: auto;
}

.text-intro__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2.5rem, 7vw, 6rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.text-intro__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.text-intro__stats span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ------------------------------------------------------------
   Line icons
   ------------------------------------------------------------ */

.licon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -3px;
  margin-right: 0.55rem;
  color: var(--sand);
  flex: 0 0 auto;
}

.site-footer .licon,
.site-menu .licon {
  color: var(--sand-light);
}

.site-menu__meta a,
.site-menu__meta p {
  display: flex;
  align-items: baseline;
}

/* ------------------------------------------------------------
   Instagram grid
   ------------------------------------------------------------ */

.insta-block {
  padding-top: 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.7rem, 1.4vw, 1.2rem);
}

@media (max-width: 900px) {
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .insta-grid a:nth-child(n + 4) {
    display: none;
  }
}

.insta-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.insta-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 34, 51, 0);
  transition: background 0.45s var(--ease);
}

.insta-grid a:hover img {
  transform: scale(1.06);
}

.insta-grid a:hover::after {
  background: rgba(14, 34, 51, 0.28);
}

/* ------------------------------------------------------------
   Reveal base states (animated by GSAP)
   ------------------------------------------------------------ */

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

.no-js [data-reveal],
.gsap-off [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}
