/* ============================================================
   TIPSY SQUIRREL EVENTS — Main Stylesheet
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --color-dark:       #1a1410;
  --color-dark-soft:  #2a211a;
  --color-gold:       #c8973a;
  --color-gold-light: #e4b668;
  --color-cream:      #f7f2eb;
  --color-cream-dark: #ede5d8;
  --color-text:       #3d342a;
  --color-text-light: #7a6a5a;
  --color-white:      #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ---------- UTILITIES ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section--dark  { background: var(--color-dark); color: var(--color-cream); }
.section--cream { background: var(--color-cream); }

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}
.section__eyebrow--light { color: var(--color-gold-light); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}
.section__title--light { color: var(--color-white); }
.section__title em { font-style: italic; color: var(--color-gold); }

.section__sub {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section--dark .section__sub { color: #a89880; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}
.btn--sm { padding: 0.65rem 1.6rem; font-size: 0.8rem; }
.btn--full { width: 100%; text-align: center; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--color-dark);
  padding: 0.8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-white);
  font-weight: 600;
}
.nav__logo em { color: var(--color-gold); font-style: italic; }
.nav__logo-icon { font-size: 1.3rem; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--color-gold-light); }
.nav__cta {
  background: var(--color-gold) !important;
  color: var(--color-dark) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}
.nav__cta:hover { background: var(--color-gold-light) !important; }

.nav__icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.75rem;
}
.nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav__icon:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  background: rgba(200,151,58,0.1);
}
@media (max-width: 900px) {
  .nav__icons { display: none; }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-dark-soft);
  padding: 1rem 2rem 1.5rem;
}
.nav__mobile a {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--color-gold-light); }
.nav__mobile.open { display: flex; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  background-image: url("images/scallops.png");
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,20,16,0.3) 0%,
    rgba(26,20,16,0.55) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin: 1.25rem 0 1.5rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero__title em { color: var(--color-gold-light); font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
}

/* ---------- STRIP ---------- */
.strip {
  background: var(--color-gold);
  padding: 1.2rem 2rem;
}
.strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
}
.strip__icon { font-size: 0.6rem; }
.strip__divider {
  width: 1px; height: 24px;
  background: rgba(26,20,16,0.25);
  flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about {
  background:
    linear-gradient(to right, rgba(247,242,235,0.96) 0%, rgba(247,242,235,0.90) 40%, rgba(247,242,235,0.55) 70%, rgba(247,242,235,0.25) 100%),
    url('Images/lavendar.png') center / cover no-repeat;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.about__image {
  border-radius: var(--radius);
  overflow: hidden;
}
.about__image--main {
  position: absolute;
  inset: 0;
  width: 75%;
  height: 85%;
  top: 0; left: 0;
}
.about__image--accent {
  position: absolute;
  width: 55%;
  height: 50%;
  bottom: 0; right: 0;
  border: 6px solid var(--color-white);
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__badge {
  position: absolute;
  bottom: 10%;
  left: 60%;
  transform: translate(-50%, 0);
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.about__badge-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.about__badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 2px;
}
.about__copy p {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

/* ---------- SERVICES ---------- */
.services {
  position: relative;
  background: var(--color-dark) url('Images/canapes.png') center / cover no-repeat;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,20,16,0.92);
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  background: rgba(200,151,58,0.08);
  border-top-color: var(--color-gold-light);
  transform: translateY(-7px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.service-card__icon {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: #9a8870;
  line-height: 1.8;
}

/* ---------- EXPERIENCE / STEPS ---------- */
.experience {
  background-image: url('Images/cauliflower.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.76);
  z-index: 0;
}
.experience .container {
  position: relative;
  z-index: 1;
}
.experience .section__eyebrow { color: var(--color-gold); }
.experience .section__title   { color: var(--color-cream); }
.experience .section__sub     { color: #a89880; }
.experience .step__body h3    { color: var(--color-cream); }
.experience .step__body p     { color: #a89880; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 0 1rem;
}
.step__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.step__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}
.step__body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
}
.step__connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(to right, var(--color-gold), transparent);
  margin-top: 3rem;
  opacity: 0.3;
  align-self: flex-start;
}

/* ---------- MENUS ---------- */
.menus {
  background-image: url('Images/mango-prawn.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.menus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 235, 0.82);
  z-index: 0;
}
.menus .container {
  position: relative;
  z-index: 1;
}

/* --- Mobile zone picker --- */
.menus__mobile-zones {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.menus__mobile-zone {
  background: rgba(200,151,58,0.08);
  border: 1px solid rgba(200,151,58,0.45);
  border-radius: var(--radius);
  padding: 0.9rem 0.5rem;
  color: var(--color-cream);
  font-family: var(--font-serif);
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}
.menus__mobile-zone:hover,
.menus__mobile-zone.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
  font-weight: 700;
}
@media (max-width: 700px) {
  .menus__map-wrap    { display: none; }
  .menus__mobile-zones { display: grid; }
}

/* --- World Map (D3 / Natural Earth atlas) --- */
.menus__map-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 48px rgba(0,0,0,0.28);
  border: 1px solid #b09060;
  background: #2b3d52;
}
#worldMap svg {
  display: block;
  width: 100%;
  height: auto;
}
/* Atlas ocean */
.map-sphere { fill: #2b3d52; }
/* Graticule grid lines */
.map-graticule {
  fill: none;
  stroke: #3d5268;
  stroke-width: 0.4;
}
/* Country fills — warm parchment */
.map-country {
  fill: #c9b97e;
  stroke: #8b6914;
  stroke-width: 0.35;
  transition: fill 0.2s;
}
/* Country borders mesh */
.map-borders {
  fill: none;
  stroke: #7a5c10;
  stroke-width: 0.5;
}
/* Highlighted (active region) countries */
.map-country.highlighted { fill: #c8973a; }

/* region pins */
.map-pin {
  cursor: pointer;
}
.map-pin__ring {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  opacity: 0;
  animation: pin-pulse 2.4s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.map-pin__dot {
  fill: var(--color-gold);
  stroke: #fff;
  stroke-width: 1.2;
  transition: fill 0.2s;
}
.map-pin:hover .map-pin__dot,
.map-pin.active .map-pin__dot { fill: #fff; }
.map-pin.active .map-pin__ring { stroke: #fff; }
.map-pin__label {
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  fill: #fff;
  text-anchor: middle;
  pointer-events: none;
  paint-order: stroke;
  stroke: #2b3d52;
  stroke-width: 3px;
}
@keyframes pin-pulse {
  0%   { r: 7;  opacity: 0.7; }
  80%  { r: 20; opacity: 0;   }
  100% { r: 20; opacity: 0;   }
}

/* --- Region sub-tabs + panels --- */
.menus__region-header {
  display: none;
  text-align: center;
  margin-bottom: 2rem;
}
.menus__region-header.visible { display: block; }
.menus__region-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.menus__region-prompt {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}
.menus__subtabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.menu-subtab {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: all var(--transition);
}
.menu-subtab.active,
.menu-subtab:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

/* Zone sub-region cards (tier-1 selector) */
.menus__zone-cards-wrap {
  display: none;
  text-align: center;
  margin: 0 auto 1.75rem;
}
.menus__zone-cards-wrap.visible { display: block; }
.menus__zone-hint {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.85rem;
}
.menus__zone-cards {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.menus__zone-card {
  padding: 0.55rem 1.3rem;
  background: transparent;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: all var(--transition);
}
.menus__zone-card:hover,
.menus__zone-card.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

/* keep existing panel show/hide */
.menu-tab { display: none; }
.menu-tab.active,
.menu-tab:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-panel__courses {
  max-width: 700px;
  margin: 0 auto;
}
.menu-course {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
}
.menu-course:last-child { border-bottom: none; }
.menu-course__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  min-width: 110px;
}
.menu-course p {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text);
}
/* multi-dish menu layout */
.menu-panel__sections {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}
.menu-section { }
.menu-section--tall { grid-row: span 2; }
.menu-section--wide { grid-column: span 2; }
.menu-section--wide .menu-section__items { columns: 2; column-gap: 2rem; }
.menu-section--wide .menu-item { break-inside: avoid; }
.menu-section__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.menu-section__title span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.menu-item {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-cream-dark);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.menu-item__desc {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.menu-item__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--color-gold);
  border-radius: 3px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 6px;
}
@media (max-width: 700px) {
  .menu-panel__sections { grid-template-columns: 1fr; gap: 2rem; }
}

.menus__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ---------- GALLERY ---------- */
.gallery.section { padding-bottom: 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
  margin-top: 3rem;
}
.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery__item--wide { grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gallery__item--wide { grid-column: span 1; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background-image: url('Images/cappacio.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.82);
  z-index: 0;
}
.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials__slider { position: relative; }
.testimonials__viewport { overflow: hidden; }
.testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.slider__btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.slider__btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}
.slider__dots {
  display: flex;
  gap: 0.5rem;
}
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider__dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial__stars {
  color: var(--color-gold);
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.testimonial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial__author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-white);
}
.testimonial__author span {
  font-size: 0.78rem;
  color: #a89880;
}

/* ---------- PERSONALISE MENU ---------- */
.personalise {
  background-image: url('Images/mex-salad.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.personalise::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 235, 0.90);
  z-index: 0;
}
.personalise .container { position: relative; z-index: 1; }

.personalise__form-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.personalise__form .btn--full { margin-top: 0.5rem; }

/* dietary pill checkboxes */
.dietary-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.dietary-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition);
  user-select: none;
}
.dietary-item:hover { border-color: var(--color-gold); }
.dietary-item input[type="checkbox"] { accent-color: var(--color-gold); width: 13px; height: 13px; }
.dietary-item:has(input:checked) {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

/* three-column row */
.form-row--three { grid-template-columns: 1fr 1fr 1fr; }

/* loading spinner */
.personalise__loading {
  text-align: center;
  padding: 4rem 2rem;
}
.personalise__spinner {
  width: 52px;
  height: 52px;
  border: 4px solid var(--color-cream-dark);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: pm-spin 0.9s linear infinite;
  margin: 0 auto 1.25rem;
}
@keyframes pm-spin { to { transform: rotate(360deg); } }
.personalise__loading p { color: var(--color-text-light); font-style: italic; }

/* result area */
.personalise__result { margin-top: 3.5rem; }
.personalise__result-header { text-align: center; margin-bottom: 2.5rem; }
.personalise__result-header h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--color-dark);
  margin-bottom: 0.4rem;
}
.personalise__meta { color: var(--color-text-light); font-size: 0.9rem; }

.personalise__courses { display: flex; flex-direction: column; gap: 2.5rem; }

.pm-course { border-top: 2px solid var(--color-gold); padding-top: 1.5rem; }
.pm-course__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.pm-course__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.pm-option {
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1rem;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
  position: relative;
  user-select: none;
}
.pm-option:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.pm-option.selected {
  border-color: var(--color-gold);
  background: rgba(200,151,58,0.06);
  box-shadow: 0 0 0 2px var(--color-gold);
}
.pm-option__tick {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.pm-option__tick svg { display: none; }
.pm-option.selected .pm-option__tick {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.pm-option.selected .pm-option__tick svg { display: block; }
.pm-option__number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
  padding-right: 1.75rem;
}
.pm-option__dish {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pm-option__desc {
  font-size: 0.83rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.personalise__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .form-row--three { grid-template-columns: 1fr; }
  .pm-course__options { grid-template-columns: 1fr; }
}

/* ---------- CONTACT ---------- */
.contact {
  background-image: url('Images/mixed-beetroot.png');
  background-size: cover;
  background-position: center;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.78);
  z-index: 0;
}
.contact .container {
  position: relative;
  z-index: 1;
}
.contact .section__eyebrow { color: var(--color-gold); }
.contact .section__title   { color: var(--color-cream); }
.contact .section__sub     { color: #a89880; }
.contact__detail           { color: var(--color-cream); }
.contact__social a         { border-color: rgba(255,255,255,0.2); color: #a89880; }

.contact__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.contact__sub {
  color: #a89880;
  margin-top: 0.75rem;
  font-size: 1rem;
}
.contact__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-cream);
}
.contact__detail-icon { font-size: 1rem; }
.contact__detail a { color: var(--color-gold); }
.contact__detail a:hover { color: var(--color-gold-light); }
.contact__social {
  display: flex;
  gap: 0.6rem;
}
.contact__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a89880;
  transition: all var(--transition);
}
.contact__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* --- form --- */
.contact__form-wrap {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select[multiple] {
  background-image: none;
  padding-right: 1rem;
  height: auto;
  min-height: 160px;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select[multiple] option {
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
}
.form-group select[multiple] option:checked {
  background: var(--color-gold);
  color: #fff;
}
.form-label__note {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-gold);
  margin-left: 0.5rem;
}
/* postcode */
.postcode-wrap { position: relative; }
.postcode-status {
  display: block;
  font-size: 0.72rem;
  margin-top: 0.3rem;
  font-weight: 600;
}
.postcode-status--ok  { color: #2e7d4f; }
.postcode-status--err { color: #c0392b; }
/* menu checkboxes */
.menu-checkboxes {
  border: 1px solid var(--color-cream-dark);
  border-radius: var(--radius);
  max-height: 280px;
  overflow-y: auto;
  padding: 0.35rem 0;
}
.menu-checkbox-group-label {
  display: block;
  padding: 0.55rem 0.85rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  border-top: 1px solid var(--color-cream-dark);
  margin-top: 0.25rem;
}
.menu-checkbox-group-label:first-child {
  border-top: none;
  margin-top: 0;
}
.menu-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}
.menu-checkbox-item:hover { background: rgba(200,151,58,0.07); }
.menu-checkbox-item input[type="checkbox"] {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--color-gold);
  cursor: pointer;
  -webkit-appearance: checkbox;
  appearance: checkbox;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}
.menu-checkbox-item input[type="checkbox"]:disabled { opacity: 0.35; cursor: not-allowed; }
.menu-checkbox-item input[type="checkbox"]:disabled + span { opacity: 0.45; }
.menu-checkbox-item span {
  font-size: 0.875rem;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form__success {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(200,151,58,0.12);
  border: 1px solid rgba(200,151,58,0.4);
  border-radius: var(--radius);
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding-top: 4rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .nav__logo { margin-bottom: 1rem; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-serif);
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a,
.footer__contact a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--color-gold-light); }
.footer__contact p { font-size: 0.88rem; margin-bottom: 0.5rem; }
.footer__bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ---------- ANIMATIONS (scroll-reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about__grid  { gap: 3rem; }
  .contact__grid { gap: 3rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 500px; margin: 0 auto 2rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step__connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--color-gold), transparent); margin: 0; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 4rem 0; }
  .services__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .strip__inner { flex-direction: column; gap: 0.6rem; text-align: center; }
  .strip__divider { display: none; }
  .contact__form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .about__image-wrap { aspect-ratio: auto; min-height: 340px; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .map-pin__label { font-size: 7px; }
}
