:root {
  --rich-black: #001514;
  --white: #fbffff;
  --blood-red: #6b0504;
  --brown: #a3320b;
  --xanthous: #e6af2e;

  --bg-soft: #f5f1eb;
  --max-width: 1200px;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 18px 40px rgba(0, 0, 0, 0.16);
    --font-display: "Playfair Display", serif;
  --font-sans: "Stolzl", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

}

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

html {
  scroll-behavior: smooth;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Stolzl", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-soft);
  color: var(--rich-black);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

/* HEADER / NAV */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(0, 21, 20, 0.9),
    rgba(0, 21, 20, 0.2)
  );
  backdrop-filter: blur(14px);
  color: var(--white);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 21, 20, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-text {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1; /* allows nav to sit nicely between logo and right edge */
}

/* Right-side actions (language + mobile menu) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 255, 254, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--white);
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.lang-btn:hover {
  background: rgba(251, 255, 254, 0.08);
}

.lang-btn[aria-pressed="true"] {
  background: rgba(230, 175, 46, 0.95);
  color: var(--rich-black);
}

.lang-btn:focus-visible {
  outline: 2px solid rgba(230, 175, 46, 0.8);
  outline-offset: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
}


.nav-links a {
  position: relative;
  padding-block: 0.25rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--xanthous), var(--blood-red));
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-reserve {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 175, 46, 0.4);
  background: linear-gradient(
    120deg,
    rgba(230, 175, 46, 0.9),
    rgba(163, 50, 11, 0.95)
  );
  color: var(--rich-black);
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(251, 255, 254, 0.3);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 80px; /* header space */
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-banner.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  will-change: background-position, transform;
  z-index: 0; /* photo at the back */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1; /* dark overlay above photo */
  background:
    radial-gradient(
      circle at top left,
      rgba(230, 175, 46, 0.18),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 21, 20, 0.65),
      rgba(0, 21, 20, 0.92)
    );
}

.hero-inner {
  position: relative;
  z-index: 2; /* content above everything */
  text-align: center;
  padding-block: 3.75rem 3rem;
}

.hero-logo {
  width: 110px;           /* bigger than before */
  height: auto;
  margin: 0 auto 1.3rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55));
}


.hero-arc {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(560px, 90vw);
  height: 260px;
  border-radius: 50%;
  border-top: 1.5px solid rgba(251, 255, 254, 0.6);
  transform: translateX(-50%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.7rem, 5vw, 3.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.hero-tagline {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(1.15rem, 2vw, 1.45rem); /* bigger, but still smaller than H1 */
  opacity: 0.9;
  min-height: 2.4em;
}


.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-cta-row .btn {
  min-width: 190px;
  justify-content: center;
}



/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(
    120deg,
    var(--xanthous),
    var(--brown),
    var(--blood-red)
  );
  color: var(--rich-black);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(251, 255, 254, 0.7);
  background: transparent;
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(251, 255, 254, 0.13);
}

.btn-outline {
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--brown);
}

.btn-outline:hover {
  background: rgba(163, 50, 11, 0.08);
}

.btn-book {
  width: 100%;
  background: var(--xanthous);
  color: var(--rich-black);
  font-weight: 600;
  margin-top: 0.3rem;
}

.btn-book:hover {
  background: #f0be44;
}

/* SECTIONS */

.section {
  padding-block: clamp(4rem, 9vh, 5.5rem);
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin: 0 0 0.6rem;
}

.section-subtitle {
  font-size: 0.98rem;
  opacity: 0.85;
}

/* Taste cards */

.taste-section {
  background: transparent;
}

.promotions-section {
  background: transparent;
  padding-block: 4.5rem 5rem;
}
/* Shared background for Taste + Promotions */
.menu-promos-band {
  position: relative;
  background-color: var(--bg-soft);
  overflow: hidden;
}

/* Shared background for Taste + Promotions using background1.png */
.menu-promos-band {
  position: relative;
  background-color: var(--bg-soft); /* safety colour behind the image */
  overflow: hidden;
}

.menu-promos-band::before {
  content: "";
  position: absolute;
  inset: -80px 0 -80px; /* let it bleed slightly above & below */
  background-image:
    /* soft cream overlay so cards stay readable */
    linear-gradient(
      to bottom,
      rgba(247, 239, 226, 0.80),
      rgba(244, 230, 214, 0.80)
    ),
    url("images/background1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Make sure Taste + Promotions sit above the background image */
.menu-promos-band > .section {
  position: relative;
  z-index: 1;
}

/* Optional: slightly adjust on smaller screens */
@media (max-width: 768px) {
  .menu-promos-band::before {
    inset: -40px 0 -60px;
  }
}


.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.food-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.26);
}

.food-card-media {
  position: relative;
  overflow: hidden;
}
/* Hover overlay for "Click to see full menu" */
.food-card-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.55)
  );
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.food-card-media-overlay span {
  text-align: center;
  padding: 0 0.75rem;
}

.food-card:hover .food-card-media-overlay {
  opacity: 1;
}

/* Show pointer on clickable cards */
.food-card[data-menu-pdf] {
  cursor: pointer;
}

.food-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
    


.food-card:hover .food-card-media img {
  transform: scale(1.06);
}

.food-card-body {
  padding: 1.4rem 1.4rem 1.6rem;
}

.food-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
}

.food-card-tag {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.7rem;
}

.food-card-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ABOUT US */

.about-section {
  background: #fffdf8;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-title-row .section-line {
  flex: 1;
  max-width: 180px;
  height: 1px;
  background: rgba(0, 21, 20, 0.28);
}

.section-title-row .section-heading {
  font-family: var(--font-display); /* Playfair Display */
  font-size: 1.2rem;               /* bigger */
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: center;
}

.about-image-wrap {
  display: flex;
  justify-content: center;
}

.about-image-wrap img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}
/* ABOUT – floating decorative food images */
.about-section {
  position: relative;
  overflow: visible;
  z-index: 0;              /* create a local stacking context */
}

.about-floating-food {
  position: absolute;
  inset: 0;
  pointer-events: none;    /* don't block clicks or hovers */
  z-index: -1;             /* sit behind the main content */
}
.about-image-wrap,
.about-text {
  position: relative;
  z-index: 1;
}
/* base style: no border, just image + soft shadow */
.food-floating {
  position: absolute;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(15, 23, 42, 0.35));
  opacity: 1;                    /* default: fully visible */
  transition: opacity 200ms ease-out;
}

/* general faded version for background feel */
.food-floating--faded {
  opacity: 0.35;                 /* adjust to taste: 0 = invisible, 1 = solid */
}

/* optional even softer variant if you ever need it */
.food-floating--extra-faded {
  opacity: 0.18;
}

/* different sizes + positions (desktop / large screens) */
.food-floating--1 {
  width: clamp(220px, 32vw, 480px);
  top: 0%;
  left: -5%;
  transform: rotate(-10deg);
}

.food-floating--2 {
  width: clamp(160px, 22vw, 300px);
  top: 10%;
  right: 2%;
  transform: rotate(6deg);
}

.food-floating--3 {
  width: clamp(160px, 22vw, 300px);
  top: 48%;
  left: 8%;
  transform: rotate(-4deg);
}

.food-floating--4 {
  width: clamp(220px, 30vw, 400px);
  bottom: 2%;
  right: 1%;
  transform: rotate(16deg);
}

.food-floating--5 {
  width: clamp(180px, 26vw, 350px);
  bottom: 50%;
  right: 30%;
  transform: rotate(16deg);
}

.food-floating--6 {
  width: clamp(140px, 20vw, 250px);
  bottom: 8%;
  left: -5%;
  transform: rotate(16deg);
}

.food-floating--7 {
  width: clamp(110px, 16vw, 150px);
  bottom: 3%;
  right: 20%;
  transform: rotate(16deg);
}



/* Responsive tweaks */
@media (max-width: 1024px) {
  .food-floating--1 { width: 100px; left: 4%; }
  .food-floating--2 { width: 75px; left: 8%; }
  .food-floating--3 { width: 90px; left: 12%; }
  .food-floating--4 { width: 70px; right: 6%; }
}

@media (max-width: 768px) {
  /* fewer / smaller pieces on mobile so it doesn't feel too busy */
  .food-floating--1 { width: 80px; top: 6%; left: 4%; }
  .food-floating--2 { display: none; }
  .food-floating--3 { width: 70px; bottom: 4%; left: 8%; }
  .food-floating--4 { width: 60px; bottom: 22%; right: 4%; }
}

/* Tablet: make them a bit softer and hug the edges more */
@media (max-width: 900px) {
  .food-floating {
    opacity: 0.22; /* softer background feel on smaller screens */
  }

  .food-floating--1 { left: -18%; top: -4%; }
  .food-floating--2 { right: -6%; top: 4%; }
  .food-floating--3 { left: -10%; top: 52%; }
  .food-floating--4 { right: -16%; bottom: -4%; }
}

/* Mobile: keep the section clean – fewer plates, smaller, further out */
@media (max-width: 640px) {
  /* hide a few so it doesn't get busy */
  .food-floating--3,
  .food-floating--5,
  .food-floating--7 {
    display: none;
  }

  /* push remaining ones further out and shrink a bit more */
  .food-floating--1 {
    top: -10%;
    left: -30%;
  }

  .food-floating--2 {
    top: -6%;
    right: -26%;
  }

  .food-floating--4 {
    bottom: -10%;
    right: -30%;
  }

  .food-floating--6 {
    bottom: -14%;
    left: -28%;
  }
}


.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-subtitle {
  font-family: var(--font-display); /* Playfair Display */
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
}

.about-body {
  font-family: var(--font-sans); /* Stolzl */
  font-size: 1.05rem;            /* a bit larger */
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

/* OUR SPACE / PROMISE SECTION
   -------------------------------------------------- */

.space-section {
  background: var(--rich-black);
  color: var(--white);
  padding: 96px 0 88px;
}

.space-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.05fr);
  gap: 3.5rem;
  align-items: center;
}

.space-copy {
  max-width: 38rem;
}

.space-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 175, 46, 0.95); /* xanthous accent */
  margin: 0 0 0.9rem;
}

.space-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 1.1rem;
}

.space-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem;
}

.space-copy p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

/* Image layout: 2 small + 1 tall */

.space-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: stretch;
}

.space-small-grid {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.space-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #071818;
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* “crop” the big images into the boxes */
}

.space-image-small {
  aspect-ratio: 4 / 3; /* two smaller landscape blocks */
}

.space-image-large {
  aspect-ratio: 9 / 16; /* tall block on the right */
  min-height: 320px;
}

/* Right-to-left reveal variant for images */

.reveal.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered text reveal (ties into data-reveal-stagger) */

[data-reveal-stagger] .reveal-child {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal-stagger] .reveal-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* OUR SPACE – stacked image cards
   -------------------------------------------------- */

.space-images {
  display: flex;
  justify-content: flex-end;
}

.space-image-stack {
  position: relative;
  width: min(420px, 100%);
  height: min(420px, 65vh); /* smaller height */
}

.space-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Back card = slightly offset and dimmer */
.space-card.is-back {
  transform: translateX(24px) translateY(18px) scale(0.96);
  filter: brightness(0.92);
  z-index: 1; /* above background extras, below front */
}


/* Front card = full size, interactive */
.space-card.is-front {
  transform: translateX(0) translateY(0) scale(1);
  z-index: 2;
  cursor: grab;
}
/* Extra background cards in the stack */
.space-card--extra {
  z-index: 0;
}

/* Third card – offset to top-left */
.space-card.space-card--third {
  transform: translateX(-32px) translateY(-22px) scale(0.9) rotate(-4deg);
  filter: brightness(0.88);
}

/* Fourth card – offset to bottom-right */
.space-card.space-card--fourth {
  transform: translateX(38px) translateY(26px) scale(0.9) rotate(3deg);
  filter: brightness(0.88);
}

.space-card.is-front.is-dragging {
  cursor: grabbing;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transition: none;
}

@media (max-width: 900px) {
  .space-image-stack {
    margin-inline: auto;
    height: min(360px, 60vh);
  }
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .space-section {
    padding: 80px 0 76px;
  }

  .space-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }

  .space-images {
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .space-images {
    grid-template-columns: minmax(0, 1fr);
  }

  .space-small-grid {
    grid-template-rows: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space-image-large {
    order: -1; /* tall image on top on mobile */
    min-height: 260px;
  }

  .space-title {
    font-size: 2rem;
  }
}



/* SPECIAL PROMOTIONS – IMAGE CAROUSEL
   ------------------------------------ */

.promotions-section {
  background: transparent;
  padding-block: 4.5rem 5rem;
}

.promo-header-row {
  max-width: var(--max-width);
  margin: 0 auto 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.promo-divider {
  flex: 1 1 120px;
  height: 1px;
  background: rgba(0, 21, 20, 0.25);
}

.promo-heading {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rich-black);
  white-space: nowrap;
}

/* Carousel shell */
.promo-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow: visible; /* allow arrows to sit on top */
}

/* Scroll-snap track (smooth swipe on phone + drag on desktop) */
.promo-track {
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 28px; /* prevent shadows from clipping */
  cursor: grab;
  touch-action: pan-y;
}
.promo-track::-webkit-scrollbar {
  display: none;
}

/* Slides */
.promo-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  border-radius: 28px;
  overflow: hidden;
  background: var(--rich-black);
  box-shadow: none  !important
}

/* Keep your image behaviour */
.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Copy */
.promo-copy {
  padding: 2.6rem 3rem;
  color: var(--white);
}
/* Promotions: give the CTA button breathing room */
.promo-cta {
  margin-top: 1.2rem;   /* space between text/list and button */
}

/* FIX: remove default bullets so you don’t see double bullets */
.promotions-list{
  list-style: none;
  padding-left: 0;
  margin: 1.2rem 0 1.4rem; /* top | left-right | bottom */
}

.promotions-list li {
  list-style: none;
}

/* Ensure your custom bullet still works (keep your existing ::before design) */
.promotions-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--xanthous);
}

/* Arrows on TOP (not behind image) */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 50; /* important */
}
.promo-arrow--prev {
  left: -22px;
}
.promo-arrow--next {
  right: -22px;
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 21, 20, 0.35);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.promo-dot.is-active {
  background: var(--xanthous);
  border-color: var(--xanthous);
}

/* Responsive: phone should NOT be 2 columns */
@media (max-width: 960px) {
  .promo-slide {
    grid-template-columns: 1fr;
  }

  /* control image height so it looks “normal” on phone */
  .promo-image img {
    height: 320px;
  }

  .promo-copy {
    padding: 2.2rem 2rem 2.6rem;
  }
}

@media (max-width: 720px) {
  .promo-arrow {
    display: none; /* swipe instead */
  }

  .promo-track {
    padding-block: 18px;
  }

  .promo-copy {
    padding: 2rem 1.5rem 2.3rem;
  }

  .promo-image img {
    height: 280px;
  }
}


/* Events */

.events-section {
  background: var(--bg-soft);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.event-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.event-media img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}

.event-body {
  padding: 1.5rem 1.4rem 1.6rem;
}

.event-title {
  font-family: "Playfair Display", serif;
  margin: 0 0 0.4rem;
}

.event-text {
  font-size: 0.9rem;
}
/* MERCHANDISE SECTION
   -------------------------------------------------- */

.merch-section {
  position: relative;
  padding-block: clamp(4rem, 9vh, 5.5rem);
  color: var(--white);
  overflow: hidden;
}

/* Background photo + overlay (uses background2.png) */
.merch-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(230, 175, 46, 0.16),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 21, 20, 0.88),
      rgba(0, 21, 20, 0.96)
    ),
    url("images/background2.png");
  background-size: cover;
  background-position: center;
  opacity: 0.98;
  z-index: 0;
}

.merch-inner {
  position: relative;
  z-index: 1;
}

/* Make headings work on dark background */
.merch-section .section-header {
  text-align: left;
  max-width: 640px;
  margin-inline: 0;
  margin-bottom: 2.2rem;
}

.merch-section .section-eyebrow {
  color: var(--xanthous);
}

.merch-section .section-title,
.merch-section .section-subtitle {
  color: var(--white);
}

.merch-section .section-subtitle {
  opacity: 0.92;
}

/* Layout: text + slider side by side on desktop */
.merch-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 2.5rem;
  align-items: center;
  /* IMPORTANT: keep the shell transparent so we only see the section bg */
  background: transparent;
  box-shadow: none;
}

.merch-copy {
  max-width: 520px;
}

.merch-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0 0 0.9rem;
}

.merch-text {
  margin: 0 0 0.75rem;
  font-size: 0.96rem;
  line-height: 1.7;
  opacity: 0.9;
}

/* Carousel */
.merch-carousel {
  overflow: hidden;
}

.merch-track {
  display: flex;
  gap: 1.4rem;
  will-change: transform;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base card style – now matches "Getting Here" card colour */
.merch-item {
  flex: 0 0 210px;
  background: #fffdf8;                 /* same tone as directions card */
  color: var(--rich-black);            /* dark text inside cards */
  border-radius: 26px;
  padding: 1.2rem 1.1rem 1.3rem;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
  opacity: 0.45;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 280ms ease-out,
    transform 280ms ease-out,
    box-shadow 280ms ease-out;
}

.merch-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.merch-item:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Image wrap – keep the dark panel so the product pops */
.merch-image-wrap {
  position: relative;
  margin-bottom: 0.8rem;
  border-radius: 22px;
  padding: 0.9rem;
  background:
    radial-gradient(
      circle at top left,
      rgba(230, 175, 46, 0.23),
      transparent 60%
    ),
    #001514; /* deep green, like other dark cards */
  overflow: hidden;
}

.merch-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.16),
    transparent 55%
  );
  mix-blend-mode: screen;
  opacity: 0.8;
}

.merch-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(6px);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merch-item.is-active .merch-image-wrap img,
.merch-item:hover .merch-image-wrap img {
  transform: translateY(0) scale(1.04);
}

/* Text inside cards */
.merch-item-title {
  font-size: 0.98rem;
  margin: 0 0 0.25rem;
  color: var(--rich-black);
  font-weight: 600;
}

.merch-item-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(0, 21, 20, 0.82);
}


/* Responsive */
@media (max-width: 960px) {
  .merch-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .merch-section .section-header {
    text-align: center;
    margin-inline: auto;
  }

  .merch-copy {
    max-width: 100%;
    text-align: center;
  }

  .merch-carousel {
    margin-top: 1.5rem;
  }
}

@media (max-width: 720px) {
  .merch-track {
    gap: 1rem;
  }

  .merch-item {
    flex-basis: 70%;
  }
}

/* Testimonials */

.testimonials-section {
  background: #fffdf8;
}

.testimonials-section .section-header {
  max-width: 780px;
}

.testimonials-marquee {
  margin-top: 2.4rem;
  overflow: hidden;
  position: relative;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  pointer-events: none;
  z-index: 2;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fffdf8, rgba(255, 253, 248, 0));
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fffdf8, rgba(255, 253, 248, 0));
}

.testimonials-track {
  display: flex;
  gap: 1.8rem;
  width: max-content;
  padding-block: 0.4rem 0.8rem;
  animation: testimonials-marquee 25s linear infinite;
  animation-play-state: paused; /* start only when section is visible */
}

/* reveal.js adds .is-visible to .reveal elements */
.testimonials-section.is-visible .testimonials-track {
  animation-play-state: running;
}

/* Pause when hovering so user can read */
.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonial-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 1.7rem 1.7rem 1.5rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(0, 21, 20, 0.9);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(230, 175, 46, 0.9); /* xanthous ring */
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rich-black);
  margin: 0 0 0.15rem;
}

.testimonial-meta {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(0, 21, 20, 0.65);
}

/* Marquee animation */

@keyframes testimonials-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */

@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 260px;
    padding: 1.5rem 1.4rem 1.4rem;
  }
}

@media (max-width: 600px) {
  .testimonials-marquee::before,
  .testimonials-marquee::after {
    width: 48px;
  }

  .testimonial-card {
    flex: 0 0 240px;
  }
}


/* Location & booking */

.location-section {
  position: relative;
  color: var(--white);
  padding-block: clamp(4.2rem, 7vh, 5rem);
  overflow: hidden;
}

.location-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/location-background.png");
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top left,
      rgba(230, 175, 46, 0.18),
      transparent 55%
    ),
    linear-gradient(
      to right,
      rgba(0, 21, 20, 0.85),
      rgba(0, 21, 20, 0.5)
    );
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.location-copy .section-title {
  color: var(--white);
}

.location-hours,
.location-contact,
.location-address,
.location-note {
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.booking-form-wrap {
  background: rgba(0, 0, 0, 0.82);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
}

.booking-title {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  width: 100%;
}

.form-row-inline {
  display: flex;
  gap: 0.75rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  border: 1px solid rgba(251, 255, 254, 0.25);
  background: rgba(251, 255, 254, 0.02);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(251, 255, 254, 0.6);
}

.booking-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fbffff 50%),
    linear-gradient(135deg, #fbffff 50%, transparent 50%);
  background-position: calc(100% - 18px) center,
    calc(100% - 12px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.booking-form textarea {
  resize: vertical;
}

.booking-small-text {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* FOOTER */

.site-footer {
  background: #050909;
  color: rgba(251, 255, 254, 0.7);
  padding-block: 1.4rem;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
/* Directions / navigation apps
   -------------------------------------------------- */

.directions-section {
  background: #e9ddc7; /* warm neutral, fits palette */
  padding-block: 80px;
}

.directions-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.directions-card {
  background: #fffdf8;
  border-radius: 24px;
  padding: 2.1rem 2.4rem 2rem;
  box-shadow: var(--shadow-card);
  color: var(--rich-black);
}

.location-directions {
  align-self: center;
}

.directions-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.25;
  margin: 0 0 0.9rem;
  color: var(--rich-black);
}

.directions-text {
  margin: 0 0 1.6rem;
  font-size: 0.98rem;
}

.directions-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease, color 0.18s ease;
}

/* Waze – updated colour */
.nav-button--waze {
  background: #4cccff;
  color: #001514;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Google Maps stays the same */
.nav-button--google {
  background: #ffffff;
  color: var(--rich-black);
  border: 1px solid rgba(0, 21, 20, 0.24);
}

/* WhatsApp – updated colour */
.nav-button--whatsapp {
  background: #57e95e;
  color: #001514;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.nav-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

/* Slightly darker on hover so the colour change feels natural */
.nav-button--waze:hover {
  background: #32b7eb;
}

.nav-button--whatsapp:hover {
  background: #42d449;
}

.nav-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70% 70%;
}

/* Use your actual icon files */
.nav-icon--waze {
  background-color: #ffffff;
  background-image: url("images/waze.png");
}

.nav-icon--google {
  background: conic-gradient(
    from 45deg,
    #4285f4 0deg,
    #4285f4 90deg,
    #ea4335 90deg,
    #ea4335 180deg,
    #fbbc05 180deg,
    #fbbc05 270deg,
    #34a853 270deg,
    #34a853 360deg
  );
}

.nav-icon--whatsapp {
  background-color: #25d366;
  background-image: url("images/whatsapp.png");
}

/* Map card */

.directions-map-card {
  display: block;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: translateY(0) scale(1);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.directions-map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.directions-map-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Responsive */

@media (max-width: 900px) {
  .directions-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .directions-map-card {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .directions-card {
    padding-inline: 1.6rem;
  }

  .directions-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-button {
    justify-content: center;
  }
}

/* REVEAL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* RESPONSIVE LAYOUTS
   ------------------------------------------------------------------ */

@media (max-width: 960px) {
  .card-row,
  .events-grid,
  .about-grid,
  .promotions-grid,
  .location-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .events-grid,
  .card-row {
    gap: 1.4rem;
  }

  .promotions-grid {
    gap: 2rem;
  }

  .location-grid {
    gap: 2rem;
  }

  .hero-inner {
    padding-inline: 0.5rem;
  }
}

@media (max-width: 780px) {
  .nav-actions {
    gap: 0.6rem;
  }

  .lang-btn {
    padding: 0.32rem 0.6rem;
  }
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 1.2rem 1rem;
    background: rgba(0, 21, 20, 0.97);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .brand-text {
    display: none;
  }

  .section {
    padding-inline: 1.25rem;
  }

  .hero-section {
    text-align: left;
  }

  .hero-cta-row {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .booking-form-card {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 1rem;
  }

  .hero-inner {
    padding-block: 3rem 2.25rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }

  .hero-description {
    font-size: 0.82rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .booking-form-card {
    padding: 1.5rem 1.25rem;
  }

  .location-grid {
    padding-inline: 0;
  }

  .form-row-inline {
    flex-direction: column;
    gap: 0.75rem;
  }

  .form-row-inline .field {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .space-images {
    justify-content: center;
    width: 100%;
    display: block;
  }

  .space-image-stack[data-space-stack] {
    position: relative !important;
    width: 100% !important;
    height: auto !important;

    display: flex !important;
    gap: 16px;

    overflow-x: auto !important;
    overflow-y: hidden !important;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;

    padding: 6px 6px 14px;
    scrollbar-width: none;
  }

  .space-image-stack[data-space-stack]::-webkit-scrollbar {
    display: none;
  }

  .space-image-stack[data-space-stack] .space-card {
    position: relative !important;
    inset: auto !important;

    flex: 0 0 88% !important;
    max-width: 88% !important;

    scroll-snap-align: center;
    scroll-snap-stop: always;

    transform: none !important;
    filter: none !important;
    z-index: auto !important;

    transition: none !important;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }

  .space-card.is-front,
  .space-card.is-back,
  .space-card.space-card--third,
  .space-card.space-card--fourth {
    transform: none !important;
    filter: none !important;
  }

  .space-image-stack[data-space-stack] .space-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
  }
}
/* Promotions: keep arrows ABOVE the promo image */
.promo-carousel { position: relative; }
.promo-track { position: relative; z-index: 1; }
.promo-slide { position: relative; z-index: 1; }
.promo-image { position: relative; z-index: 1; }
.promo-arrow { z-index: 50; }

/* Merch – enable smooth drag/swipe feel */
.merch-carousel {
  cursor: grab;
}

.merch-track.is-dragging {
  transition: none !important;
  cursor: grabbing;
}

.merch-track {
  touch-action: pan-y; /* allow vertical scroll, JS handles horizontal swipe */
}
