/* Olive's — modern Mediterranean restaurant landing
   Palette: olive green + warm cream + terracotta (brand-adjacent) */

:root {
  --olive-950: #1a1f14;
  --olive-900: #252b1c;
  --olive-800: #2f3824;
  --olive-700: #3d4a2e;
  --olive-600: #4f5f3a;
  --olive-500: #5c6f44;
  --olive-400: #7a8f5c;
  --cream: #f6f3ea;
  --cream-dark: #e8e2d4;
  --terracotta: #c2563d;
  --terracotta-dark: #9a4330;
  --gold: #b8956c;
  --white: #fdfcfa;
  --text: var(--olive-950);
  --text-muted: rgba(26, 31, 20, 0.72);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 12px rgba(26, 31, 20, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 31, 20, 0.12);
  --shadow-lg: 0 24px 64px rgba(26, 31, 20, 0.18);
  --header-h: 72px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--olive-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--terracotta);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--olive-800);
  color: var(--cream);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s, color 0.2s,
    border-color 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive-800) 100%);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta-band .btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.cta-band .btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--olive-800);
  border-color: rgba(47, 56, 36, 0.25);
}

.btn-ghost:hover {
  border-color: var(--olive-600);
  background: rgba(255, 255, 255, 0.5);
}

.btn-on-dark {
  background: var(--cream);
  color: var(--olive-900);
}

.btn-on-dark:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 243, 234, 0.45);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cream);
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(246, 243, 234, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(47, 56, 36, 0.08), 0 8px 24px rgba(26, 31, 20, 0.06);
}

.header-inner {
  width: min(1200px, 100% - 1.5rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  /* Solid cream so JPEG white blends reliably (multiply/darken need an opaque backdrop) */
  background-color: var(--cream);
  padding: 2px 8px 3px 4px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(47, 56, 36, 0.06);
}

.logo:hover .logo-img {
  opacity: 0.88;
}

.logo-img {
  display: block;
  height: clamp(40px, 8vw, 52px);
  width: auto;
  max-width: min(200px, 52vw);
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.2s ease;
  /* min() with page cream removes white matte more reliably than multiply on glass header */
  mix-blend-mode: darken;
}

@media (min-width: 900px) {
  .logo-img {
    max-width: 220px;
    height: 52px;
  }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease-out);
}

.nav-toggle:hover {
  transform: scale(1.04);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.nav-toggle-bar,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  height: 2px;
  width: 24px;
  margin-inline: auto;
  background: var(--olive-800);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s, background 0.2s ease;
}

.nav-toggle:hover .nav-toggle-bar,
.nav-toggle:hover::before,
.nav-toggle:hover::after {
  background: var(--olive-700);
}

.nav-toggle-bar {
  margin: 0 auto;
}

.site-header.is-menu-open .nav-toggle::before {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle-bar {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle::after {
  transform: translateY(-8px) rotate(-45deg);
}

.header-triggers {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.header-order-chip {
  padding: 0.5rem 0.95rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.header-order-chip:hover {
  transform: translateY(-1px);
}

.header-order-chip:active {
  transform: translateY(0) scale(0.98);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-list .nav-item-mobile-only {
    display: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--olive-800);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover {
  background: rgba(47, 56, 36, 0.08);
  color: var(--olive-900);
}

.nav-list a[aria-current="page"] {
  background: rgba(47, 56, 36, 0.12);
  color: var(--olive-900);
  font-weight: 600;
}

.nav-cta {
  flex-shrink: 0;
}

@media (max-width: 899px) {
  .header-triggers {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(246, 243, 234, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), opacity 0.3s, visibility 0.35s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-list a {
    padding: 0.85rem 1rem;
    font-size: 1.125rem;
  }

  .nav-cta {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100dvh, 900px);
  padding: calc(var(--header-h) + 2.5rem) 0 clamp(4.25rem, 8vw, 5.25rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Soft blend into the next section (home-catering) */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(56px, 14vw, 112px);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(246, 243, 234, 0) 0%,
    rgba(246, 243, 234, 0.25) 40%,
    rgba(255, 255, 255, 0.55) 78%,
    rgba(255, 255, 255, 0.88) 100%
  );
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(194, 86, 61, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(90, 107, 68, 0.18) 0%, transparent 50%),
    linear-gradient(165deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1200px, 100% - 1.5rem);
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.hero-offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: -0.35rem 0 1rem;
  padding: 0.45rem 0.95rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--olive-900);
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(194, 86, 61, 0.38);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, border-color 0.2s;
  max-width: 100%;
}

.hero-offer-chip:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
  color: var(--olive-950);
}

.hero-offer-chip-stars {
  letter-spacing: 0.05em;
  color: #b07d2a;
  font-size: 0.72rem;
  line-height: 1;
}

.hero-offer-chip-text {
  line-height: 1.25;
  text-align: left;
}

/* Hero → first section bridge (Google gyros offer) */
.hero-offer-strip {
  position: relative;
  z-index: 3;
  margin-top: clamp(-1.25rem, -2vw, -0.35rem);
  padding: clamp(2rem, 5vw, 2.75rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  background: linear-gradient(
    180deg,
    rgba(246, 243, 234, 0.45) 0%,
    rgba(255, 255, 255, 0.65) 28%,
    var(--cream) 100%
  );
  border-bottom: 1px solid rgba(47, 56, 36, 0.07);
}

.hero-offer-strip-inner {
  position: relative;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.65rem, 4vw, 2.15rem) clamp(1.35rem, 4vw, 2.5rem) clamp(1.5rem, 3.5vw, 2rem);
  padding-top: clamp(1.85rem, 4.5vw, 2.45rem);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow:
    0 2px 0 rgba(194, 86, 61, 0.12),
    0 20px 48px rgba(26, 31, 20, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
}

.hero-offer-strip-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--olive-700) 0%, var(--terracotta) 48%, var(--gold) 100%);
  opacity: 0.95;
}

.hero-offer-strip-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.hero-offer-strip-stars {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: #b8892e;
  line-height: 1;
}

.hero-offer-strip-heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 3.2vw, 1.7rem);
  font-weight: 700;
  color: var(--olive-900);
  line-height: 1.28;
  letter-spacing: -0.025em;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.hero-offer-strip-lead {
  margin: 0 auto 1.5rem;
  max-width: 38rem;
  font-size: 0.96875rem;
  line-height: 1.62;
  color: var(--text-muted);
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.hero-offer-strip-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  max-width: 36rem;
  margin-inline: auto;
}

@media (min-width: 560px) {
  .hero-offer-strip-actions {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.hero-offer-strip-loc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.1rem 1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(246, 243, 234, 0.5) 0%, var(--white) 100%);
  border: 2px solid rgba(47, 56, 36, 0.12);
  border-radius: var(--radius-md);
  transition:
    border-color 0.2s ease,
    box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.hero-offer-strip-loc:hover {
  border-color: rgba(194, 86, 61, 0.55);
  box-shadow: 0 8px 28px rgba(194, 86, 61, 0.12);
}

.hero-offer-strip-loc:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-color: rgba(194, 86, 61, 0.45);
}

@media (hover: hover) {
  .hero-offer-strip-loc:hover {
    transform: translateY(-2px);
  }
}

.hero-offer-strip-loc-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--olive-900);
  letter-spacing: -0.02em;
}

.hero-offer-strip-loc-cta {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.hero-offer-strip-loc-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-offer-strip-terms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  margin: 1.35rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(47, 56, 36, 0.08);
  list-style: none;
}

.hero-offer-strip-terms li {
  margin: 0;
  padding: 0.32rem 0.75rem;
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-700);
  background: rgba(47, 56, 36, 0.06);
  border-radius: 999px;
  border: 1px solid rgba(47, 56, 36, 0.06);
}

.hero-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--olive-900);
}

.hero-title-accent {
  display: block;
  margin-top: 0.35em;
  max-width: 28ch;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--olive-600) 0%, var(--olive-800) 45%, var(--terracotta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  max-width: 36ch;
  color: var(--text-muted);
}

.hero-catering {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  max-width: 52ch;
  color: var(--olive-800);
  line-height: 1.55;
}

.hero-catering em {
  font-style: italic;
  color: var(--olive-900);
}

.hero-catering strong {
  color: var(--olive-900);
}

.hero-catering a {
  font-weight: 600;
  text-decoration: none;
}

.hero-catering a:hover {
  text-decoration: underline;
}

.hero-catering-tel {
  display: inline;
  font-weight: 600;
  color: var(--olive-700);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.hero-catering-tel:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-meta-compact {
  margin: 0.55rem 0 0;
  max-width: 52ch;
  font-size: 0.75rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

@media (min-width: 960px) {
  .hero-visual {
    min-height: 420px;
    justify-content: flex-end;
  }
}

.hero-photo {
  margin: 0;
  width: min(100%, 420px);
  animation: hero-float 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.5deg);
  }
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(47, 56, 36, 0.08);
}

.hero-photo-caption {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-600);
  text-align: center;
}

@media (max-width: 959px) {
  .hero {
    min-height: 0;
    padding: calc(var(--header-h) + 1rem) 0 clamp(2.5rem, 7vw, 3.25rem);
    align-items: flex-start;
  }

  .hero-grid {
    gap: 1.5rem;
    width: min(1200px, 100% - 1.25rem);
  }

  .hero .eyebrow {
    margin-bottom: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    margin-bottom: 0.85rem;
    font-size: clamp(1.85rem, 6.5vw + 0.35rem, 3.2rem);
    line-height: 1.06;
  }

  .hero-title-accent {
    margin-top: 0.28em;
    max-width: none;
    font-size: clamp(1.05rem, 3.2vw + 0.4rem, 1.55rem);
    line-height: 1.28;
  }

  .hero-lead,
  .hero-catering {
    max-width: none;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 0.8rem;
  }

  .hero-catering {
    font-size: 0.9375rem;
    line-height: 1.52;
    margin-bottom: 0.8rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.15rem;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .hero-meta-compact {
    max-width: none;
    font-size: 0.6875rem;
    line-height: 1.42;
  }

  .hero-visual {
    min-height: 0;
    order: -1;
  }

  .hero-photo {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .hero-photo-caption {
    margin-top: 0.55rem;
    font-size: 0.75rem;
    letter-spacing: 0.035em;
  }
}

@media (max-width: 959px) and (prefers-reduced-motion: no-preference) {
  @keyframes hero-float-mobile {
    0%,
    100% {
      transform: translateY(0) rotate(-0.35deg);
    }
    50% {
      transform: translateY(-5px) rotate(0.35deg);
    }
  }

  .hero-photo {
    animation-name: hero-float-mobile;
    animation-duration: 10s;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--olive-900);
}

/* Centred section titles: gradient rule under the heading */
.section-head .section-title {
  margin-bottom: 0;
}

.section-head .section-title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.6rem auto 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--olive-600) 55%, var(--olive-500) 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(47, 56, 36, 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--olive-800);
}

.feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Menu teaser */
.menu-teaser {
  background: var(--olive-900);
  color: var(--cream);
}

.menu-teaser .section-title {
  color: var(--cream);
}

.menu-teaser-copy .section-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.55rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(246, 243, 234, 0.92) 100%);
  opacity: 0.95;
}

.menu-teaser p {
  color: rgba(246, 243, 234, 0.85);
}

.menu-teaser a:not(.btn) {
  color: var(--gold);
}

.menu-teaser-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .menu-teaser-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.menu-tags {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-tags li {
  padding: 0.4rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(246, 243, 234, 0.95);
}

.menu-teaser .btn-primary {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  color: var(--olive-900);
}

.menu-teaser .btn-primary:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.menu-teaser-panel {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.menu-teaser-panel img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.menu-teaser-caption {
  padding: 0.85rem 1rem 1rem;
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(246, 243, 234, 0.85);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }

  .about-visual {
    order: -1;
  }
}

.about-brand-panel {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  aspect-ratio: 5 / 6;
  max-height: 440px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 56, 36, 0.08);
  box-shadow: var(--shadow-md);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(90, 107, 68, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
}

.about-brand-inner {
  padding: 2rem 1.75rem;
  text-align: center;
}

.about-brand-logo {
  display: block;
  width: min(100%, 280px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: darken;
}

.about-brand-tagline {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--olive-600);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.about-copy .section-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin: 0.55rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--olive-600) 100%);
}

.about-copy .lead {
  font-size: 1.125rem;
  color: var(--olive-800);
  margin: 0 0 1rem;
}

.about-copy p:last-child {
  margin: 0;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--olive-800) 0%, var(--olive-900) 50%, #1f2618 100%);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cta-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--cream);
}

.cta-title::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2px;
  margin: 0.65rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(246, 243, 234, 0.8) 100%);
  opacity: 0.92;
}

.cta-text {
  margin: 0;
  max-width: 42ch;
  color: rgba(246, 243, 234, 0.82);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Contact */
.contact-head {
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card-wide {
    grid-column: 1 / -1;
  }
}

.contact-card {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(47, 56, 36, 0.06);
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-600);
}

.contact-card p {
  margin: 0;
  font-style: normal;
  color: var(--text-muted);
}

.contact-card a {
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--olive-800);
}

.contact-card a:hover {
  color: var(--terracotta);
}

.contact-hours-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Maps (home) */
.maps-section {
  background: var(--white);
  border-top: 1px solid rgba(47, 56, 36, 0.06);
}

.maps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .maps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.map-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(47, 56, 36, 0.08);
  padding: 1.25rem 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.map-card-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive-900);
}

.map-card-address {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(47, 56, 36, 0.1);
  background: var(--white);
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-open-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--olive-700);
}

.map-open-link:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

/* Our brands — Slipz, LetCompliance (home, above footer) */
.partners-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 50%, rgba(232, 226, 212, 0.65) 100%);
  border-top: 1px solid rgba(47, 56, 36, 0.07);
}

.partners-section-inner {
  max-width: 920px;
  margin-inline: auto;
}

.partners-section-head {
  text-align: center;
  margin-bottom: 0.25rem;
}

.partners-section-head .section-sub {
  margin-inline: auto;
  max-width: 40rem;
}

.partners-grid {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
  max-width: 52rem;
}

@media (min-width: 720px) {
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: stretch;
  }
}

.partner-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 26rem;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow: 0 8px 32px rgba(26, 31, 20, 0.08), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

@media (hover: hover) {
  .partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 44px rgba(26, 31, 20, 0.11), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  }
}

.partner-card-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  padding: 1.35rem 1rem;
  text-decoration: none;
  overflow: hidden;
}

.partner-card-thumb-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.partner-card-thumb-bg--slipz {
  background:
    radial-gradient(ellipse 90% 120% at 30% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 55%),
    linear-gradient(145deg, #1e3a5f 0%, #0f172a 48%, #1e293b 100%);
}

.partner-card--slipz .partner-card-thumb,
.partner-card--letcompliance .partner-card-thumb {
  flex-direction: column;
  gap: 0.45rem;
  min-height: 8.25rem;
  padding: 1.15rem 1rem;
}

.partner-card-thumb-wordmark {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #f1f5f9;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.partner-card-thumb-tagline {
  position: relative;
  z-index: 1;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 245, 249, 0.72);
}

.partner-card--letcompliance .partner-card-thumb-tagline {
  color: rgba(240, 253, 250, 0.78);
}

.partner-card-thumb-wordmark--long {
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  letter-spacing: -0.03em;
}

.partner-card-thumb-bg--letcompliance {
  background:
    radial-gradient(ellipse 90% 120% at 70% 15%, rgba(255, 255, 255, 0.28) 0%, transparent 50%),
    linear-gradient(145deg, #0d4f4a 0%, #0f766e 42%, #134e4a 100%);
}

.partner-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.45rem 1.5rem;
  text-align: center;
}

.partner-card-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.partner-card-title-link {
  color: var(--olive-900);
  text-decoration: none;
  transition: color 0.2s ease;
}

.partner-card-title-link:hover {
  color: var(--terracotta);
}

.partner-card-text {
  margin: 0 0 1.15rem;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--text-muted);
  text-align: left;
}

.partner-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: auto;
  align-self: center;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive-800) 100%);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
}

.partner-card-cta:hover {
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.partner-card-cta:active {
  transform: scale(0.98);
}

.partner-card-cta-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
}

.partner-card-cta:hover .partner-card-cta-arrow {
  transform: translateX(3px);
}

/* Footer */
.site-footer {
  padding: 2.75rem 0 2rem;
  background: linear-gradient(180deg, #1f2618 0%, var(--olive-950) 45%);
  color: rgba(246, 243, 234, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-shell {
  max-width: 1100px;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr 1.2fr;
    gap: 2rem;
    align-items: start;
  }
}

.footer-col-brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-col-brand {
    text-align: left;
  }
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-logo-wrap {
  display: inline-block;
  padding: 5px 12px 6px;
  margin-bottom: 0.65rem;
  background: rgba(15, 18, 12, 0.55);
  border-radius: 12px;
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

@media (min-width: 768px) {
  .footer-logo {
    height: 42px;
    max-width: 190px;
  }
}

.footer-tag {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(246, 243, 234, 0.88);
  font-weight: 500;
}

.footer-address-short {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(246, 243, 234, 0.55);
}

.footer-hours {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(246, 243, 234, 0.78);
}

.footer-col-nav {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-col-nav {
    text-align: left;
    padding-top: 0.15rem;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-nav {
    align-items: flex-start;
  }
}

.footer-nav a {
  color: rgba(246, 243, 234, 0.78);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-otter {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(246, 243, 234, 0.35);
}

.footer-otter:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.footer-legal-tip {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(246, 243, 234, 0.5);
  font-style: italic;
}

.footer-legal-tip a {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
}

.footer-legal-tip a:hover {
  text-decoration: underline;
  color: var(--cream);
}

.footer-ch-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.footer-ch-link:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-entities {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.footer-entity {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-entity-title {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(246, 243, 234, 0.95);
}

.footer-entity-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(246, 243, 234, 0.65);
}

.footer-entity-name {
  font-weight: 600;
  color: rgba(246, 243, 234, 0.85);
}

.footer-reg-no {
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.footer-entity-hint {
  font-size: 0.75rem;
  color: rgba(246, 243, 234, 0.45);
}

.footer-vat-line {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: rgba(246, 243, 234, 0.65);
}

.footer-trust-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer-trust-links a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.footer-trust-links a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-bar {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

/* Scroll reveal — soft fade-up into view */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.88s var(--ease-out),
      transform 0.88s var(--ease-out);
  }

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

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(246, 243, 234, 0.5);
}

/* Phones — scale down type, spacing & cards so nothing feels oversized */
@media (max-width: 639px) {
  .container {
    width: min(1120px, 100% - 1.25rem);
  }

  .section {
    padding: clamp(2.2rem, 5.5vw, 3.5rem) 0;
  }

  .section-head {
    margin-bottom: 1.85rem;
  }

  .section-title {
    font-size: clamp(1.45rem, 5.2vw, 1.95rem);
  }

  .section-head .section-title::after {
    width: 2.25rem;
    height: 2px;
    margin: 0.5rem auto 0.7rem;
  }

  .section-sub {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.55rem;
  }

  .btn {
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
  }

  .btn-lg {
    padding: 0.68rem 1.1rem;
    font-size: 0.9375rem;
  }

  .feature-card {
    padding: 1.2rem 1.15rem;
  }

  .feature-icon {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .menu-teaser-inner {
    gap: 1.65rem;
  }

  .menu-teaser-copy .section-title {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
  }

  .menu-teaser-copy .section-title::after {
    width: 2.15rem;
    height: 2px;
    margin-top: 0.45rem;
  }

  .menu-teaser p {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .menu-tags {
    margin: 1.15rem 0 1.35rem;
    gap: 0.4rem;
  }

  .menu-tags li {
    padding: 0.32rem 0.7rem;
    font-size: 0.75rem;
  }

  .about-grid {
    gap: 1.75rem;
  }

  .about-brand-panel {
    min-height: 200px;
    max-height: 320px;
    border-radius: var(--radius-lg);
  }

  .about-brand-inner {
    padding: 1.35rem 1.1rem;
  }

  .about-brand-tagline {
    font-size: 0.9375rem;
    margin-top: 1rem;
  }

  .about-copy .section-title {
    font-size: clamp(1.45rem, 5vw, 1.9rem);
  }

  .about-copy .section-title::after {
    width: 2.15rem;
    height: 2px;
    margin-top: 0.45rem;
  }

  .about-copy .lead {
    font-size: 1rem;
  }

  .about-copy p:last-child {
    font-size: 0.9375rem;
  }

  .cta-band {
    padding: clamp(1.65rem, 4vw, 2.35rem) 0;
  }

  .cta-inner {
    gap: 1.15rem;
  }

  .cta-title {
    font-size: clamp(1.28rem, 4.8vw, 1.65rem);
  }

  .cta-title::after {
    width: 2rem;
    margin-top: 0.5rem;
  }

  .cta-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-head {
    margin-bottom: 1.5rem;
  }

  .contact-card {
    padding: 1.2rem 1.15rem;
  }

  .contact-card h3 {
    font-size: 0.75rem;
    margin-bottom: 0.55rem;
  }

  .contact-card a {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.9375rem;
  }

  .map-card {
    padding: 1.05rem 0.95rem 1.1rem;
  }

  .map-card-title {
    font-size: 1.05rem;
  }

  .map-card-address {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .map-open-link {
    font-size: 0.875rem;
    margin-top: 0.65rem;
  }

  .page-hero {
    padding: calc(var(--header-h) + 1.65rem) 0 2.25rem;
  }

  .page-hero-title {
    font-size: clamp(1.55rem, 6.5vw, 2.35rem);
    margin-bottom: 0.75rem;
  }

  .page-hero-title::after {
    width: 2.35rem;
    height: 2px;
    margin-top: 0.55rem;
  }

  .page-hero-lead {
    font-size: 0.9375rem;
    margin-bottom: 1.2rem;
    line-height: 1.55;
  }

  .page-hero-hint {
    font-size: 0.875rem;
    margin-top: 0.65rem;
    padding-top: 0.65rem;
  }

  .catering-occasion-card {
    padding: 1.15rem 1.1rem 1.2rem;
  }

  .catering-occasion-card h3 {
    font-size: 1.02rem;
  }

  .catering-occasion-card p {
    font-size: 0.875rem;
  }

  .home-catering-inner {
    gap: 1.5rem;
  }

  .home-catering-copy .section-title {
    font-size: clamp(1.42rem, 4.8vw, 1.85rem);
    margin-bottom: 0.75rem;
  }

  .home-catering-copy .section-title::after {
    width: 2.15rem;
    height: 2px;
    margin-top: 0.45rem;
  }

  .home-catering-lead,
  .home-catering-text {
    font-size: 0.9375rem;
    line-height: 1.58;
  }

  .home-catering-point-body {
    font-size: 0.8125rem;
  }

  .home-catering-point-body strong {
    font-size: 0.75rem;
  }

  .home-catering-card {
    padding: 1.15rem 1.1rem 1.25rem;
    border-radius: var(--radius-md);
  }

  .home-catering-card-title {
    font-size: 1.08rem;
  }

  .home-catering-card-kicker {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .home-catering-card-list li {
    font-size: 0.875rem;
    padding: 0.38rem 0;
  }

  .menu-block-title {
    font-size: 1.12rem;
  }

  .menu-block-sub {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .catering-sidebar-title {
    font-size: 1.05rem;
  }

  .catering-portion-guide-title {
    font-size: 1.05rem;
  }

  .catering-portion-guide-intro,
  .catering-portion-guide-list {
    font-size: 0.875rem;
  }

  .cyprus-note p {
    font-size: 0.9375rem;
  }

  /* Hero (home) — slightly tighter than 959px breakpoint */
  .hero-title {
    font-size: clamp(1.68rem, 6vw + 0.28rem, 2.45rem);
  }

  .hero-title-accent {
    font-size: clamp(0.95rem, 2.9vw + 0.38rem, 1.38rem);
  }

  .hero-lead {
    font-size: 0.9375rem;
  }

  .hero-catering {
    font-size: 0.875rem;
  }

  .hero-meta-compact {
    font-size: 0.6875rem;
    margin-top: 0.45rem;
  }

  .hero-photo img {
    border-radius: var(--radius-lg);
  }

}

@media (max-width: 767px) {
  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-grid {
    gap: 0;
  }

  .footer-col-brand,
  .footer-col-nav,
  .footer-col-legal {
    text-align: left;
  }

  .footer-col-brand {
    padding-bottom: 1.35rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-logo-wrap {
    display: block;
    width: fit-content;
    max-width: 100%;
  }

  .footer-tag,
  .footer-address-short {
    max-width: 36rem;
  }

  .footer-col-nav {
    padding-bottom: 1.35rem;
    margin-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    margin-bottom: 0.85rem;
  }

  .footer-nav a {
    padding: 0.65rem 0.6rem;
    text-align: center;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-nav a:hover {
    background: rgba(255, 255, 255, 0.11);
    color: var(--cream);
  }

  .footer-otter {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    margin-top: 0.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(246, 243, 234, 0.2);
    border-bottom: 1px solid rgba(246, 243, 234, 0.2);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.9375rem;
  }

  .footer-otter:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(246, 243, 234, 0.35);
  }

  .footer-col-legal .footer-heading {
    margin-bottom: 0.65rem;
  }

  .footer-legal-tip {
    font-size: 0.8125rem;
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .footer-entity {
    padding: 0.85rem 0.9rem;
  }

  .footer-entity-text {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .footer-trust-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .footer-trust-links a {
    display: block;
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius-sm);
  }

  .footer-trust-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .footer-bar {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
  }

  .footer-copy {
    max-width: 22rem;
    margin-inline: auto;
    line-height: 1.5;
    padding-inline: 0.5rem;
  }
}

/* Home — catering spotlight (before Why Olive's) */
.home-catering {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(194, 86, 61, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 42%, rgba(232, 226, 212, 0.85) 100%);
  border-top: 1px solid rgba(47, 56, 36, 0.05);
  border-bottom: 1px solid rgba(47, 56, 36, 0.07);
}

.home-catering-inner {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .home-catering-inner {
    grid-template-columns: 1fr min(320px, 34%);
    gap: clamp(2rem, 4vw, 3.25rem);
    align-items: stretch;
  }
}

.home-catering-head {
  margin-bottom: 0.25rem;
}

.home-catering-head .eyebrow {
  margin-bottom: 0.65rem;
}

.home-catering-copy .section-title {
  text-align: left;
  margin-bottom: 0;
}

.home-catering-copy .section-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.65rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--olive-600) 55%, var(--gold) 100%);
}

.home-catering-panel {
  margin-top: 1.35rem;
  padding: clamp(1.25rem, 3vw, 1.65rem) clamp(1.2rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(47, 56, 36, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(26, 31, 20, 0.05);
}

.home-catering-lead,
.home-catering-text {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: none;
}

.home-catering-text {
  margin-top: 1rem;
}

.home-catering-lead em {
  font-style: normal;
  font-weight: 600;
  color: var(--olive-800);
}

.home-catering-text strong {
  color: var(--olive-800);
}

.home-catering-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .home-catering-points {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.home-catering-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  padding: 1rem 1.05rem 1.1rem;
  background: var(--white);
  border: 1px solid rgba(47, 56, 36, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid rgba(194, 86, 61, 0.45);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .home-catering-point:hover {
    box-shadow: var(--shadow-md);
    border-top-color: var(--terracotta);
  }
}

.home-catering-point-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.9;
}

.home-catering-point-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--olive-800);
}

.home-catering-point-body strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--olive-900);
}

.home-catering-point-body span {
  color: var(--text-muted);
  font-weight: 500;
}

.home-catering-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(47, 56, 36, 0.08);
}

.home-catering-aside {
  position: relative;
}

@media (min-width: 900px) {
  .home-catering-aside {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.home-catering-card {
  position: relative;
  height: 100%;
  padding: 1.55rem 1.5rem 1.7rem;
  padding-top: 1.65rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, var(--white) 0%, rgba(246, 243, 234, 0.35) 100%);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow: 0 12px 40px rgba(26, 31, 20, 0.1);
  overflow: hidden;
}

.home-catering-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive-700) 0%, var(--olive-500) 40%, var(--terracotta) 100%);
}

.home-catering-card-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--olive-900);
}

.home-catering-card-kicker {
  margin: 0 0 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-muted);
}

.home-catering-card-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(47, 56, 36, 0.08);
  background: var(--white);
}

.home-catering-card-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--olive-800);
  border-bottom: 1px solid rgba(47, 56, 36, 0.06);
}

.home-catering-card-list li:last-child {
  border-bottom: 0;
}

.home-catering-card-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(90, 107, 68, 0.15) 0%, rgba(194, 86, 61, 0.12) 100%);
  color: var(--olive-900);
  border: 1px solid rgba(47, 56, 36, 0.08);
}

.home-catering-card-foot {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.home-catering-card-foot a {
  font-weight: 700;
  color: var(--olive-700);
  text-decoration: none;
}

.home-catering-card-foot a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

/* Inner pages (e.g. catering) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(48px, 11vw, 96px);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(246, 243, 234, 0) 0%,
    rgba(255, 255, 255, 0.45) 75%,
    rgba(255, 255, 255, 0.94) 100%
  );
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 90% 20%, rgba(194, 86, 61, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(90, 107, 68, 0.14) 0%, transparent 45%),
    linear-gradient(170deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}

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

.page-hero-head {
  margin-bottom: 0.15rem;
}

.page-hero-head .eyebrow {
  margin-bottom: 0.65rem;
}

.page-hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--olive-900);
  line-height: 1.08;
}

.page-hero-title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.7rem 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--olive-600) 55%, var(--gold) 100%);
}

.page-hero-lead {
  margin: 1.25rem 0 1.75rem;
  font-size: 1.0625rem;
  max-width: 52ch;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-hero-hint {
  display: block;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(47, 56, 36, 0.1);
  font-size: 0.9375rem;
  color: var(--olive-800);
}

.page-hero-hint strong {
  color: var(--olive-900);
}

.page-hero-actions {
  margin-bottom: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(47, 56, 36, 0.09);
}

@media (min-width: 720px) {
  .page-hero-actions {
    padding-top: 1.35rem;
    max-width: 52rem;
  }
}

/* Catering — richer hero (split layout + card visual) */
.page-hero-catering {
  padding-bottom: clamp(3rem, 7vw, 4.5rem);
}

.page-hero-catering .page-hero-actions {
  max-width: none;
}

.page-hero-catering .page-hero-head {
  margin-bottom: 0;
}

.page-hero-catering .page-hero-title::after {
  margin-bottom: 0.75rem;
}

.page-hero-title-accent {
  margin: 0 0 1rem;
  max-width: 38ch;
  font-size: clamp(1.05rem, 2.3vw, 1.38rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--olive-600) 0%, var(--olive-800) 42%, var(--terracotta) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero-pills {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}

.page-hero-pills li {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.8rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--olive-800);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(47, 56, 36, 0.1);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-hero-catering .page-hero-lead {
  max-width: none;
}

.page-hero-catering .page-hero-hint {
  margin-top: 0.55rem;
  padding-top: 0.8rem;
  border-top-color: rgba(47, 56, 36, 0.08);
}

.page-hero-actions-catering {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: none;
  align-items: stretch;
}

.page-hero-actions-catering .page-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-hero-cta-meta {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--olive-800);
}

.page-hero-cta-meta a {
  font-weight: 600;
  color: var(--olive-700);
  text-decoration: none;
}

.page-hero-cta-meta a:hover {
  color: var(--terracotta);
  text-decoration: underline;
}

.page-hero-cta-sep {
  display: inline-block;
  margin: 0 0.4rem;
  color: rgba(47, 56, 36, 0.32);
  font-weight: 400;
}

.page-hero-card {
  position: relative;
  margin: 0 auto;
  max-width: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow:
    0 22px 56px rgba(26, 31, 20, 0.11),
    0 4px 14px rgba(26, 31, 20, 0.05);
}

.page-hero-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive-700) 0%, var(--olive-500) 40%, var(--terracotta) 100%);
  z-index: 1;
}

.page-hero-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Panoramic crop: shorter box = less left/right trimmed, more table & horizon visible */
.page-hero-card-feast img {
  width: 100%;
  height: clamp(150px, 36vw, 260px);
  object-fit: cover;
  object-position: 50% 44%;
}

@media (min-width: 600px) {
  .page-hero-card-feast img {
    height: clamp(170px, 32vw, 300px);
  }
}

@media (min-width: 900px) {
  .page-hero-card-feast img {
    height: clamp(200px, 24vh, 340px);
    object-position: 50% 40%;
  }
}

.page-hero-card-caption {
  margin: 0;
  padding: 1rem 1.2rem 1.2rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: linear-gradient(180deg, rgba(246, 243, 234, 0.4) 0%, var(--cream) 100%);
  border-top: 1px solid rgba(47, 56, 36, 0.07);
}

.page-hero-card-feast .page-hero-card-caption {
  line-height: 1.62;
  padding: 1.1rem 1.25rem 1.25rem;
  color: var(--olive-800);
}

@media (min-width: 900px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 2.5rem 3rem;
  }

  .page-hero-card {
    margin: 0;
    max-width: none;
  }
}

@media (min-width: 1100px) {
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 3rem 3.75rem;
  }
}

@media (max-width: 540px) {
  .page-hero-pills li {
    font-size: 0.75rem;
    padding: 0.32rem 0.68rem;
  }

  .page-hero-cta-meta {
    font-size: 0.875rem;
  }
}

/* Catering hero — phones & small tablets */
@media (max-width: 899px) {
  .page-hero-catering {
    overflow-x: clip;
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  .page-hero-catering .page-hero-grid {
    gap: 1.35rem;
  }

  .page-hero-catering .page-hero-aside {
    order: -1;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .page-hero-catering .page-hero-card {
    margin: 0;
    max-width: none;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: 0 12px 40px rgba(26, 31, 20, 0.08);
  }

  .page-hero-catering .page-hero-card-feast img {
    height: clamp(200px, 46vw, 300px);
    object-position: 50% 42%;
  }

  .page-hero-catering .page-hero-card-feast .page-hero-card-caption {
    padding: 0.95rem 1rem 1.1rem;
    font-size: 0.8125rem;
    line-height: 1.58;
  }

  .page-hero-catering .page-hero-title-accent {
    max-width: none;
    font-size: clamp(1rem, 4.2vw, 1.2rem);
  }

  .page-hero-catering .page-hero-pills {
    margin-bottom: 0.95rem;
    gap: 0.4rem 0.45rem;
  }

  .page-hero-catering .page-hero-lead {
    margin-bottom: 0.85rem;
  }

  .page-hero-catering .page-hero-hint {
    margin-top: 0.45rem;
    padding-top: 0.75rem;
  }

  .page-hero-catering .page-hero-actions {
    padding-top: 1rem;
  }
}

@media (max-width: 520px) {
  .page-hero-catering .page-hero-cta-meta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    font-size: 0.9375rem;
  }

  .page-hero-catering .page-hero-cta-meta a {
    padding: 0.35rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .page-hero-catering .page-hero-cta-sep {
    display: none;
  }
}

/* Catering hero — hint to scroll to menu builder */
.page-hero-scroll-cue {
  margin: clamp(1.15rem, 3vw, 1.85rem) 0 0;
  padding: 0;
  text-align: center;
}

.page-hero-scroll-cue-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--olive-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-hero-scroll-cue-link:hover {
  color: var(--terracotta);
}

.page-hero-scroll-cue-link:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

.page-hero-scroll-cue-arrow {
  display: block;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.9;
}

@media (prefers-reduced-motion: no-preference) {
  .page-hero-scroll-cue-arrow {
    animation: page-hero-scroll-nudge 1.75s ease-in-out infinite;
  }
}

@keyframes page-hero-scroll-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

#catering-popular-starters {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.catering-occasions-section {
  background:
    radial-gradient(ellipse 70% 45% at 0% 30%, rgba(90, 107, 68, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--cream) 55%, var(--cream) 100%);
  border-top: 1px solid rgba(47, 56, 36, 0.05);
  border-bottom: 1px solid rgba(47, 56, 36, 0.06);
}

.catering-section-head .section-title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  margin: 0.55rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--terracotta) 0%, var(--olive-600) 100%);
}

.catering-occasions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 480px) {
  .catering-occasions {
    gap: 1rem;
  }
}

@media (min-width: 640px) {
  .catering-occasions {
    gap: 1.25rem;
  }
}

@media (min-width: 1000px) {
  .catering-occasions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.catering-occasion-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.45rem 1.55rem;
  border: 1px solid rgba(47, 56, 36, 0.09);
  border-top: 3px solid rgba(194, 86, 61, 0.5);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-top-color 0.2s ease;
}

.catering-occasion-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--terracotta);
}

.catering-occasion-card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--olive-900);
}

.catering-occasion-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.catering-menu-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 12%, var(--white) 100%);
  border-top: 1px solid rgba(47, 56, 36, 0.05);
}

.catering-menu-placeholder {
  max-width: 640px;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(47, 56, 36, 0.18);
  background: var(--cream);
  text-align: center;
}

.catering-menu-placeholder p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.catering-menu-placeholder a {
  font-weight: 600;
}

/* Catering menu builder */
.catering-menu-wide {
  width: min(1240px, 100% - 2rem);
}

.catering-portion-guide {
  position: relative;
  margin: 0 auto 1.75rem;
  max-width: 720px;
  padding: 1.5rem 1.55rem 1.6rem;
  padding-top: 1.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, var(--white) 0%, rgba(246, 243, 234, 0.4) 100%);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow: 0 10px 36px rgba(26, 31, 20, 0.07);
  overflow: hidden;
}

.catering-portion-guide-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive-700) 0%, var(--olive-500) 42%, var(--terracotta) 100%);
}

.catering-portion-guide-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--olive-900);
}

.catering-portion-guide-intro {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.catering-portion-guide-list {
  margin: 0;
  padding: 0.65rem 0 0;
  list-style: none;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--olive-800);
  border-radius: var(--radius-md);
  border: 1px solid rgba(47, 56, 36, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.catering-portion-guide-list li {
  margin: 0;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(47, 56, 36, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.catering-portion-guide-list li:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.catering-portion-guide-list li:last-child {
  border-bottom: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.catering-portion-guide-list > li > strong {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding: 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(90, 107, 68, 0.14) 0%, rgba(194, 86, 61, 0.1) 100%);
  color: var(--olive-900);
  border: 1px solid rgba(47, 56, 36, 0.08);
}

.catering-portion-guide-foot {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(47, 56, 36, 0.08);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.catering-portion-guide-foot strong {
  color: var(--olive-800);
}

.catering-portion-guide-hint {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

.catering-sidebar-tip {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.catering-sidebar-tip a {
  font-weight: 600;
  color: var(--olive-700);
  text-decoration: none;
}

.catering-sidebar-tip a:hover {
  text-decoration: underline;
  color: var(--terracotta);
}

.cyprus-note {
  margin: 0 auto 2.5rem;
  max-width: 720px;
  padding: 1.35rem 1.5rem 1.4rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(90, 107, 68, 0.11) 0%, rgba(194, 86, 61, 0.07) 100%);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow: 0 6px 24px rgba(26, 31, 20, 0.05);
  border-top: 3px solid rgba(90, 107, 68, 0.45);
}

.cyprus-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--olive-800);
}

.cyprus-note strong {
  color: var(--olive-900);
}

.catering-builder-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .catering-builder-layout {
    grid-template-columns: 1fr min(380px, 36%);
    gap: 2.5rem;
  }
}

.catering-builder-main {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.menu-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid rgba(47, 56, 36, 0.07);
  box-shadow: var(--shadow-sm);
}

.menu-block-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--olive-900);
}

.menu-block-sub {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-block-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.menu-item-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 0.65rem 0.75rem;
  margin: 0;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.menu-item-row:hover {
  background: rgba(47, 56, 36, 0.04);
}

.menu-item-row:has(input:checked) {
  background: rgba(90, 107, 68, 0.08);
  border-color: rgba(47, 56, 36, 0.1);
}

.menu-item-row input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--olive-700);
  cursor: pointer;
}

.menu-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  cursor: pointer;
}

.menu-item-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--olive-900);
}

.menu-item-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.menu-item-qty-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.menu-item-qty-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.menu-item-qty {
  width: 4rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: 1px solid rgba(47, 56, 36, 0.2);
  border-radius: var(--radius-sm);
  text-align: center;
}

.menu-item-qty:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.menu-block-mains .main-style-fieldset {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
}

.main-style-hint {
  margin: 0 0 0.65rem;
  max-width: 52ch;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.main-style-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.main-style-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--olive-800);
  cursor: pointer;
}

.main-style-opt input {
  accent-color: var(--olive-700);
}

.main-columns {
  display: grid;
  gap: 1.5rem;
}

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

.main-column-title {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--olive-600);
}

.catering-builder-sidebar {
  position: relative;
}

.catering-sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(47, 56, 36, 0.1);
  box-shadow: var(--shadow-md);
}

.catering-sidebar-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--olive-900);
}

.catering-sidebar-title-form {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(47, 56, 36, 0.1);
}

.catering-summary-list {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  max-height: min(240px, 40vh);
  overflow-y: auto;
}

.catering-summary-empty {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0.5rem 0;
}

.catering-summary-group,
.catering-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(47, 56, 36, 0.06);
}

.catering-summary-line > span:first-child {
  min-width: 0;
  overflow-wrap: break-word;
  text-align: left;
}

.catering-summary-section {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--terracotta-dark);
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  list-style: none;
}

.catering-summary-section:first-child {
  margin-top: 0;
  padding-top: 0;
}

.catering-summary-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.catering-summary-val {
  font-weight: 600;
  color: var(--olive-800);
}

.catering-summary-remove {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  background: rgba(47, 56, 36, 0.08);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--olive-800);
}

.catering-summary-remove:hover {
  background: rgba(194, 86, 61, 0.15);
  color: var(--terracotta-dark);
}

.catering-quote-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.catering-quote-form .form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--olive-800);
}

.catering-quote-form .form-field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
}

.catering-quote-form .form-field-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--olive-700);
  flex-shrink: 0;
}

.catering-quote-form .form-field-checkbox span {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.catering-quote-form input[type="text"],
.catering-quote-form input[type="tel"],
.catering-quote-form input[type="email"],
.catering-quote-form input[type="number"],
.catering-quote-form input[type="date"],
.catering-quote-form select,
.catering-quote-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid rgba(47, 56, 36, 0.2);
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.catering-quote-form textarea {
  resize: vertical;
  min-height: 4rem;
}

.catering-form-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.catering-submit {
  width: 100%;
}

.catering-form-status {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 1.25rem;
}

.catering-form-status.is-success {
  color: var(--olive-700);
  font-weight: 500;
}

.catering-form-status.is-error {
  color: var(--terracotta-dark);
  font-weight: 500;
}

/* Narrow viewports — catering rows, stacked CTAs, tighter cards */
@media (max-width: 540px) {
  .menu-item-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 0.45rem;
    column-gap: 0.65rem;
  }

  .menu-item-qty-wrap {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 0.1rem;
  }

  .menu-item-row > input[type="checkbox"] {
    margin-top: 0.3rem;
  }
}

@media (max-width: 480px) {
  .page-hero-actions .btn,
  .home-catering-actions .btn,
  .cta-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .page-hero-actions-catering .page-hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-actions-catering .page-hero-cta-row .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .menu-block {
    padding: 1.2rem 1rem 1.45rem;
  }

  .catering-portion-guide {
    padding: 1.15rem 1.1rem 1.25rem;
  }

  .catering-sidebar-sticky {
    padding: 1.2rem 1rem;
  }

  .cyprus-note {
    padding: 1.1rem 1rem;
  }

  .contact-card {
    padding: 1.25rem 1.15rem;
  }

  .map-card {
    padding: 1.1rem 1rem 1.2rem;
  }
}

/* Standalone 404 (no main nav JS) */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.page-404 .site-header {
  position: relative;
}

.page-404-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
}

.page-404-inner {
  width: min(32rem, 100%);
  text-align: center;
}

.page-404-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-404-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--olive-900);
  line-height: 1.2;
}

.page-404-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.page-404-foot {
  margin: 2rem 0 0;
  font-size: 0.9375rem;
}

.page-404-foot a {
  font-weight: 600;
}

.page-404 .header-inner {
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.page-404-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.page-404-quick a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--olive-800);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.page-404-quick a:hover {
  background: rgba(47, 56, 36, 0.08);
  color: var(--olive-900);
}

.page-404 .site-footer {
  padding: 1rem 0 1.25rem;
  margin-top: auto;
}

.page-404 .footer-bar {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
