:root {
  --burgundy: #3a070b;
  --burgundy-deep: #250508;
  --burgundy-soft: #5a1617;
  --ivory: #f7efe1;
  --ivory-deep: #efe1c9;
  --cream: #fbf6ec;
  --charcoal: #12110f;
  --charcoal-soft: #1f1d18;
  --olive: #242a1d;
  --olive-soft: #313826;
  --brass: #c99c50;
  --brass-soft: #e0c17a;
  --ink: #241816;
  --muted: #725f51;
  --line: rgba(93, 54, 31, 0.2);
  --shadow: 0 20px 48px rgba(47, 22, 8, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cormorant Garamond and Montserrat ship no Greek glyphs. When the site is in
   Greek (set by the language switcher), swap the type to Alegreya + Manrope,
   which have proper Greek. English keeps Cormorant + Montserrat untouched. */
html[lang="el"] {
  --serif: "Alegreya", "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Montserrat", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

html.loader-scroll-lock,
body.loader-scroll-lock {
  overflow: hidden;
}

/* Page grain texture disabled — the fixed dotted overlay read as noise over
   the dark hero photo. (Re-enable only if scoped away from the hero.) */
body::before {
  display: none;
}

.loader-overlay {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% 44%, rgba(199, 111, 39, 0.22), transparent 24rem),
    radial-gradient(circle at 50% 54%, rgba(201, 156, 80, 0.13), transparent 16rem),
    linear-gradient(138deg, #120f0e 0%, #250508 43%, #080807 100%);
  opacity: 1;
  isolation: isolate;
}

.loader-overlay[hidden] {
  display: none;
}

.loader-overlay::after {
  position: absolute;
  inset: -2rem;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.075;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255, 245, 219, 0.85) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 64%, rgba(18, 8, 5, 0.88) 0 1px, transparent 1px);
  background-size: 17px 17px, 23px 23px;
}

.loader-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(72vw, 20rem);
}

.loader-logo {
  width: min(70vw, 19rem);
  max-height: 10rem;
  object-fit: contain;
  opacity: 0;
  filter:
    brightness(0) invert(95%) sepia(10%) saturate(562%) hue-rotate(340deg) brightness(104%) contrast(94%)
    drop-shadow(0 18px 30px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 24px rgba(224, 156, 76, 0.16));
  transform: translateY(0.75rem) scale(0.985);
  animation: loader-logo-in 640ms var(--ease) 70ms forwards;
}

.loader-subtitle {
  margin: 1.1rem 0 0;
  color: rgba(247, 239, 225, 0.82);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.31em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.35rem);
  animation: loader-subtitle-in 520ms var(--ease) 180ms forwards;
}

.loader-line {
  display: block;
  width: 7.4rem;
  height: 1px;
  margin-top: 0.78rem;
  background: linear-gradient(90deg, transparent, rgba(224, 193, 122, 0.88), transparent);
  opacity: 0;
  transform: scaleX(0);
  animation: loader-line-in 560ms var(--ease) 250ms forwards;
}

.loader-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(74vw, 30rem);
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(224, 121, 52, 0.38) 0%, rgba(201, 86, 35, 0.18) 24%, transparent 63%);
  filter: blur(24px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  animation: loader-glow-pulse 920ms var(--ease) 90ms forwards;
}

.loader-exit {
  pointer-events: none;
  animation: loader-fade-out 260ms ease forwards;
}

body.loader-visible .mobile-sticky-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

@keyframes loader-logo-in {
  to {
    opacity: 1;
    transform: translateY(-0.45rem) scale(1);
  }
}

@keyframes loader-subtitle-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-line-in {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes loader-glow-pulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }

  46% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1);
  }

  100% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(0.96);
  }
}

@keyframes loader-fade-out {
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo,
  .loader-subtitle,
  .loader-line,
  .loader-glow {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .loader-glow {
    opacity: 0.24;
    transform: translate(-50%, -50%);
  }

  .loader-line {
    transform: scaleX(1);
  }

  .loader-exit {
    animation-duration: 180ms;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--brass-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  padding: 0.7rem 1rem;
  color: var(--charcoal);
  background: var(--brass-soft);
  transform: translateY(-140%);
  transition: transform 220ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--ivory);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  width: min(100% - 2rem, 1280px);
  min-height: 5.05rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

/* Real logo (black line-art PNG) tinted to warm ivory so it reads on the dark
   hero, with a soft shadow for legibility over the photo. */
.brand-logo {
  display: block;
  height: 2.9rem;
  width: auto;
  filter:
    brightness(0) invert(95%) sepia(10%) saturate(562%) hue-rotate(340deg)
    brightness(104%) contrast(94%)
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.55));
}

.brand-name {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-subtitle {
  position: relative;
  margin-top: 0.38rem;
  color: var(--ivory-deep);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.brand-subtitle::after {
  display: block;
  width: 4.2rem;
  height: 1px;
  margin-top: 0.42rem;
  content: "";
  background: linear-gradient(90deg, var(--brass), transparent);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.7rem);
  color: rgba(247, 239, 225, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 0.6rem 0;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.PrimaryButton,
.SecondaryButton,
.OutlineButton {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.18rem;
  padding: 0.92rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 220ms var(--ease),
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.PrimaryButton {
  color: var(--ivory);
  background: var(--burgundy);
  border: 1px solid var(--brass);
  box-shadow:
    0 13px 28px rgba(58, 7, 11, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.PrimaryButton:hover {
  color: #fffaf1;
  background: #4a0b10;
  border-color: var(--brass-soft);
  box-shadow:
    0 16px 34px rgba(58, 7, 11, 0.3),
    inset 0 1px 0 rgba(224, 193, 122, 0.4);
  transform: translateY(-2px);
}

.SecondaryButton {
  color: var(--burgundy-deep);
  background: linear-gradient(180deg, #d8b669, #c59a4d);
  border: 1px solid rgba(89, 54, 20, 0.34);
  box-shadow:
    0 12px 26px rgba(93, 54, 31, 0.18),
    inset 0 1px 0 rgba(255, 246, 212, 0.55);
}

.SecondaryButton:hover {
  background: linear-gradient(180deg, #e3c47d, #cda459);
  transform: translateY(-2px);
}

.OutlineButton {
  color: var(--ivory);
  background: rgba(18, 17, 15, 0.24);
  border: 1px solid rgba(201, 156, 80, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.OutlineButton:hover {
  color: #fff8e9;
  background: rgba(201, 156, 80, 0.12);
  border-color: var(--brass-soft);
  transform: translateY(-2px);
}

.PrimaryButton:active,
.SecondaryButton:active,
.OutlineButton:active {
  transform: translateY(0) scale(0.985);
}

.button-icon,
.button-icon svg {
  width: 1rem;
  height: 1rem;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(201, 156, 80, 0.45);
  border-radius: 0.2rem;
  color: var(--ivory);
  background: rgba(18, 17, 15, 0.22);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 1px;
  margin: 0.26rem auto;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  display: grid;
  align-items: center;
  color: var(--ivory);
  background: var(--charcoal);
}

.hero-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(37, 5, 8, 0.52));
}

.hero-content {
  width: min(100% - 2rem, 1280px);
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
}

.section-label {
  margin: 0 0 0.85rem;
  color: #725016;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 12ch;
  margin: 0;
  color: #fff7eb;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 5.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-wrap: balance;
}

.hero-copy {
  max-width: 38rem;
  margin: 1.45rem 0 0;
  color: rgba(247, 239, 225, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-copy::before {
  display: block;
  width: 12rem;
  height: 1px;
  margin-bottom: 1.35rem;
  content: "";
  background: linear-gradient(90deg, var(--brass), rgba(201, 156, 80, 0));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.quick-info {
  position: relative;
  z-index: 2;
  padding-inline: 1rem;
  background: var(--burgundy);
  border-top: 1px solid rgba(201, 156, 80, 0.4);
  border-bottom: 1px solid rgba(201, 156, 80, 0.3);
}

.quick-info-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  min-width: 0;
  padding: 1.35rem clamp(1rem, 2vw, 1.5rem);
  color: var(--ivory);
  border-right: 1px solid rgba(201, 156, 80, 0.42);
}

.info-item:last-child {
  border-right: 0;
}

.info-icon,
.feature-icon {
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  color: var(--brass-soft);
}

.info-icon svg,
.feature-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.info-title {
  margin: 0 0 0.18rem;
  color: var(--brass-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.info-item p {
  margin: 0;
  color: rgba(247, 239, 225, 0.92);
  font-size: 0.86rem;
  line-height: 1.55;
}

.section {
  padding: clamp(3.8rem, 7vw, 6.5rem) 1rem;
}

.signature-section,
.menu-preview-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 156, 80, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--cream), var(--ivory));
}

.section-heading {
  width: min(100%, 980px);
  margin: 0 auto clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}

.section-heading.dark {
  color: var(--ivory);
}

.section-heading.dark .section-label,
.reviews-section .section-label,
.experience-section .section-label {
  color: var(--brass-soft);
}

.story-copy .section-label,
.visit-info .section-label {
  color: #725016;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-wrap: balance;
}

.section-heading.dark h2 {
  color: #fff6e7;
}

.section-intro {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-heading.dark .section-intro {
  color: rgba(247, 239, 225, 0.78);
}

.pizza-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

/* Carousel controls show only on the mobile (phone) best-seller carousel. */
.pizza-controls {
  display: none;
}

.pizza-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  background: rgba(255, 250, 241, 0.9);
  border: 1px solid rgba(94, 55, 35, 0.28);
  border-radius: 0.36rem;
  box-shadow: 0 14px 30px rgba(80, 48, 24, 0.1);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.pizza-card:hover {
  border-color: rgba(201, 156, 80, 0.74);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.pizza-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  /* Warm placeholder shown only until the local PNG is added (or if missing). */
  background:
    radial-gradient(circle at 30% 24%, rgba(201, 156, 80, 0.18), transparent 62%),
    linear-gradient(135deg, #f3e7cf, #e7d4b0);
}

.pizza-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pizza-card-body {
  display: grid;
  align-content: start;
  min-height: 11rem;
  padding: 1.25rem;
}

.card-accent {
  width: 2.4rem;
  height: 2px;
  margin: 0.6rem 0 0.15rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}

.pizza-card h3,
.experience-item h3,
.hours-panel h3,
.visit-cta h3,
.footer-grid h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

.pizza-card p {
  margin: 0.55rem 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.pizza-card strong {
  align-self: end;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.centered-action {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}

/* ===================== ABOUT / STORY (merged) ===================== */
.about-section {
  padding: clamp(3.8rem, 7vw, 6.5rem) 1rem;
  /* Warm parchment — deliberately deeper than the cream Best-Sellers section
     above, so the two light sections read as separate blocks. */
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 156, 80, 0.16), transparent 26rem),
    linear-gradient(180deg, #efe4cd, #e6d7ba);
  border-top: 1px solid rgba(94, 55, 35, 0.22);
  border-bottom: 1px solid rgba(94, 55, 35, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 251, 240, 0.5);
}

.about-intro {
  width: min(100%, 760px);
  margin: 0 auto clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
}

.about-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: center;
}

.about-portrait {
  margin: 0;
}

.about-portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(94, 55, 35, 0.22);
  background:
    radial-gradient(circle at 30% 22%, rgba(201, 156, 80, 0.2), transparent 60%),
    linear-gradient(150deg, #efe1c9, #e2d1ac);
  box-shadow: var(--shadow);
}

/* Owner photo fills the 4:5 frame. If the file is missing, onerror removes the
   <img>, the :has() rule below stops hiding the hint, and the warm placeholder
   shows again. */
.about-portrait-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-portrait-frame:has(.about-portrait-img) .about-portrait-hint {
  display: none;
}

.about-portrait-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.42rem 0.85rem;
  border-radius: 0.15rem;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-portrait-hint {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(74, 53, 30, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.about-portrait-hint svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: rgba(74, 53, 30, 0.48);
}

.about-portrait figcaption {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.about-story h3 {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}

.brass-rule {
  display: block;
  width: 9rem;
  height: 1px;
  margin-bottom: 1.45rem;
  background: linear-gradient(90deg, var(--brass), transparent);
}

.about-story p {
  margin: 0 0 1rem;
  color: #46352c;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 60ch;
}

.about-quote {
  margin: 1.45rem 0 0;
  padding: 0.3rem 0 0.3rem 1.25rem;
  border-left: 2px solid var(--brass);
  color: var(--burgundy);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.28rem;
  line-height: 1.4;
}

.about-stats {
  list-style: none;
  margin: 1.7rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-stats li {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 1rem;
  border-radius: 0.3rem;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(94, 55, 35, 0.16);
}

.about-stats strong {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 700;
  line-height: 1;
  color: var(--burgundy);
}

.about-stats span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.about-pillars {
  width: min(100%, 1180px);
  margin: clamp(2.4rem, 5vw, 3.6rem) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

/* Carousel controls show only on the mobile (phone) pillar carousel. */
.pillar-controls {
  display: none;
}

.pillar {
  padding: 1.5rem 1.35rem;
  border-radius: 0.3rem;
  background: rgba(255, 250, 241, 0.88);
  border: 1px solid rgba(94, 55, 35, 0.18);
  border-top: 2px solid var(--brass);
  box-shadow: 0 12px 26px rgba(80, 48, 24, 0.08);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(201, 156, 80, 0.16);
  color: var(--burgundy);
}

.pillar-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.pillar p {
  margin: 0;
  color: #5a4639;
  font-size: 0.9rem;
  line-height: 1.6;
}

.signature {
  margin: 1.55rem 0 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-style: italic;
}

/* ===== Interlude: full-width photo band between About and "Why choose us".
   Breaks up the back-to-back card grids and gives a different kind of seam. */
.interlude-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 40vw, 30rem);
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 156, 80, 0.28);
  border-bottom: 1px solid rgba(201, 156, 80, 0.28);
}

.interlude-media {
  position: absolute;
  inset: 0;
}

.interlude-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.interlude-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 7, 6, 0.62) 0%,
    rgba(8, 7, 6, 0.3) 45%,
    rgba(8, 7, 6, 0.7) 100%
  );
}

.interlude-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 720px);
  padding: 2.5rem 1rem;
}

.interlude-content .section-label {
  color: var(--brass-soft);
}

.interlude-line {
  margin: 0.85rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  color: #fff7ea;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.55);
}

.experience-section {
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 156, 80, 0.16), transparent 24rem),
    radial-gradient(circle at 86% 92%, rgba(139, 46, 0, 0.2), transparent 26rem),
    linear-gradient(135deg, var(--olive), var(--charcoal) 72%);
  border-top: 1px solid rgba(201, 156, 80, 0.22);
  border-bottom: 1px solid rgba(201, 156, 80, 0.22);
}

/* Ornamental divider under the heading — marks the section as its own block. */
.experience-section .section-heading::after {
  content: "";
  display: block;
  width: 5.5rem;
  height: 1px;
  margin: 1.35rem auto 0;
  background: linear-gradient(90deg, transparent, var(--brass-soft), transparent);
}

.experience-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

/* Carousel controls show only on the mobile (phone) experience carousel. */
.experience-controls {
  display: none;
}

/* Scroll-reveal: cards fade-up with a gentle stagger when scrolled into view.
   Classes are added by JS only when motion is allowed; without JS the cards
   stay fully visible. The classes are removed when the animation ends so the
   hover lift keeps working normally. */
.experience-grid.reveal-armed .experience-item {
  opacity: 0;
}

.experience-grid.reveal-in .experience-item {
  animation: experienceReveal 0.6s var(--ease);
}

.experience-grid.reveal-in .experience-item:nth-child(2) {
  animation-delay: 0.09s;
}

.experience-grid.reveal-in .experience-item:nth-child(3) {
  animation-delay: 0.18s;
}

.experience-grid.reveal-in .experience-item:nth-child(4) {
  animation-delay: 0.27s;
}

@keyframes experienceReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Each reason is now a distinct dark-glass card (not a divider-stacked list). */
.experience-item {
  padding: clamp(1.5rem, 2.4vw, 2rem) clamp(1.35rem, 2.2vw, 1.85rem);
  border-radius: 0.45rem;
  background: rgba(247, 239, 225, 0.045);
  border: 1px solid rgba(201, 156, 80, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    background-color 260ms var(--ease);
}

.experience-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 156, 80, 0.5);
  background: rgba(247, 239, 225, 0.07);
}

.experience-item .feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(201, 156, 80, 0.14);
  border: 1px solid rgba(201, 156, 80, 0.34);
  color: var(--brass-soft);
}

.experience-item .feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.experience-item h3 {
  color: #fff7ea;
  margin-top: 1.1rem;
}

.experience-item p {
  margin: 0.6rem 0 0;
  color: rgba(247, 239, 225, 0.76);
  font-size: 0.92rem;
  line-height: 1.65;
}

.menu-tabs {
  width: min(100%, 900px);
  margin: 0 auto 1.35rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.menu-tab {
  min-width: 7rem;
  border: 1px solid rgba(93, 54, 31, 0.25);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.menu-tab.active,
.menu-tab:hover {
  color: var(--ivory);
  background: var(--burgundy);
  border-color: var(--brass);
}

.menu-tile-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.menu-tile {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  isolation: isolate;
  border-radius: 0.25rem;
  background: var(--charcoal);
}

.menu-tile.large {
  min-height: 20rem;
}

.menu-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms var(--ease);
}

.menu-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(18, 17, 15, 0.05), rgba(18, 17, 15, 0.7));
}

.menu-tile span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}

.menu-tile:hover img {
  transform: scale(1.055);
}

.reviews-section {
  color: var(--ivory);
  background:
    radial-gradient(circle at 50% -20%, rgba(201, 156, 80, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--burgundy), var(--burgundy-deep));
  /* Brass hairline so the burgundy block separates from the dark Experience
     section above it. */
  border-top: 1px solid rgba(201, 156, 80, 0.28);
  border-bottom: 1px solid rgba(201, 156, 80, 0.2);
}

/* ===== Reviews: real Google reviews in a one-at-a-time testimonial carousel. */
.reviews-carousel {
  width: min(100%, 760px);
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

/* The snap unit stays full-width; the visible testimonial sits centred inside
   it as an elegant brass-framed card. */
.review-slide {
  scroll-snap-align: center;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(0.5rem, 2vw, 1.2rem);
}

.review-card {
  position: relative;
  width: min(100%, 36rem);
  padding: clamp(2.4rem, 5vw, 3.2rem) clamp(1.5rem, 4vw, 2.6rem) clamp(1.7rem, 4vw, 2.3rem);
  text-align: center;
  border-radius: 1.1rem;
  border: 1px solid rgba(201, 156, 80, 0.3);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 156, 80, 0.13), transparent 60%),
    linear-gradient(165deg, rgba(247, 239, 225, 0.08), rgba(247, 239, 225, 0.02));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Decorative open-quote ornament at the top of the card. */
.review-quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 9vw, 4.8rem);
  line-height: 0.5;
  color: var(--brass-soft);
  opacity: 0.5;
}

.review-stars {
  margin-top: 0.55rem;
  color: var(--brass-soft);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}

.review-card blockquote {
  margin: 1rem auto 1.25rem;
  max-width: 36ch;
  color: rgba(255, 250, 241, 0.96);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.9vw, 1.65rem);
  line-height: 1.46;
}

/* Brass hairline with a small centred diamond — a recurring site motif. */
.review-divider {
  display: block;
  position: relative;
  width: 3.4rem;
  height: 1px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(201, 156, 80, 0.75), transparent);
}

.review-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--brass-soft);
  transform: translate(-50%, -50%) rotate(45deg);
}

.review-card figcaption {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-align: left;
}

/* Monogram avatar (initials) — brass ring, since reviews have no photos. */
.review-avatar {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 156, 80, 0.6);
  background: radial-gradient(circle at 30% 25%, rgba(201, 156, 80, 0.24), rgba(18, 17, 15, 0.55));
  color: var(--brass-soft);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
}

.review-meta {
  display: grid;
  gap: 0.2rem;
}

.review-name {
  color: #fff7ea;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(247, 239, 225, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-g {
  width: 0.95rem;
  height: 0.95rem;
}

/* The Google "G" keeps its own fills; cancel the global svg stroke. */
.review-g path {
  stroke: none;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.review-arrow {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 156, 80, 0.5);
  border-radius: 50%;
  background: rgba(247, 239, 225, 0.06);
  color: var(--brass-soft);
  font-size: 1.5rem;
  line-height: 1;
  transition:
    background-color 200ms var(--ease),
    border-color 200ms var(--ease),
    color 200ms var(--ease),
    opacity 200ms var(--ease);
}

.review-arrow:hover,
.review-arrow:focus-visible {
  background: var(--brass-soft);
  border-color: var(--brass-soft);
  color: var(--burgundy-deep);
}

.review-arrow:disabled {
  opacity: 0.32;
  pointer-events: none;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.review-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 239, 225, 0.3);
  transition: background-color 200ms var(--ease), width 200ms var(--ease);
}

.review-dot.active {
  width: 1.5rem;
  border-radius: 1rem;
  background: var(--brass-soft);
}

/* ===================== VISIT / CONTACT ===================== */
.visit-section {
  padding: clamp(3.8rem, 7vw, 6.5rem) 1rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 156, 80, 0.1), transparent 26rem),
    linear-gradient(180deg, var(--ivory), var(--cream));
  border-top: 1px solid rgba(94, 55, 35, 0.14);
  border-bottom: 1px solid rgba(94, 55, 35, 0.14);
}

.visit-intro {
  width: min(100%, 760px);
  margin: 0 auto clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
}

.visit-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: stretch;
}

.visit-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: 0.5rem;
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid rgba(94, 55, 35, 0.18);
  box-shadow: var(--shadow);
}

.visit-facts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.visit-fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(93, 54, 31, 0.12);
}

.visit-fact:first-child {
  padding-top: 0;
}

.visit-fact:last-child {
  border-bottom: 0;
}

.visit-fact-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(201, 156, 80, 0.16);
  color: var(--burgundy);
}

.visit-fact-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.visit-fact-label {
  display: block;
  margin-bottom: 0.18rem;
  color: #8a6a2e;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-fact-body address,
.visit-fact-body p,
.visit-fact-body a {
  margin: 0;
  color: #46352c;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.55;
}

.visit-fact-body a {
  color: var(--burgundy);
  font-weight: 600;
  transition: color 180ms var(--ease);
}

.visit-fact-body a:hover {
  color: var(--brass);
}

.visit-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.visit-map {
  min-height: 22rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(94, 55, 35, 0.18);
  box-shadow: var(--shadow);
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: rgba(247, 239, 225, 0.76);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================== FOOTER (compact) ===================== */
.site-footer {
  color: rgba(247, 239, 225, 0.82);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 156, 80, 0.1), transparent 20rem),
    linear-gradient(180deg, #141210, #0f0e0d);
}

.footer-inner {
  width: min(100% - 2rem, 1000px);
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 3.6rem) 0 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-logo {
  display: block;
  height: 3.4rem;
  width: auto;
  filter:
    brightness(0) invert(95%) sepia(10%) saturate(562%) hue-rotate(340deg)
    brightness(104%) contrast(94%);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-nav a {
  color: rgba(247, 239, 225, 0.82);
  transition: color 180ms var(--ease);
}

.footer-nav a:hover {
  color: var(--brass-soft);
}

.footer-contact {
  margin: 0;
  color: rgba(247, 239, 225, 0.58);
  font-size: 0.85rem;
}

.footer-contact a {
  color: rgba(247, 239, 225, 0.82);
  transition: color 180ms var(--ease);
}

.footer-contact a:hover {
  color: var(--brass-soft);
}

.footer-dot {
  margin: 0 0.55rem;
  color: rgba(201, 156, 80, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(201, 156, 80, 0.4);
  border-radius: 50%;
  color: var(--brass-soft);
  transition:
    background-color 200ms var(--ease),
    border-color 200ms var(--ease),
    color 200ms var(--ease);
}

.footer-social a:hover {
  background: rgba(201, 156, 80, 0.14);
  border-color: var(--brass-soft);
}

.footer-social svg {
  width: 1.2rem;
  height: 1.2rem;
}

.footer-bottom {
  margin: 0;
  padding: 1.3rem 1rem;
  text-align: center;
  border-top: 1px solid rgba(201, 156, 80, 0.14);
  color: rgba(247, 239, 225, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

.mobile-sticky-bar {
  display: none;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 1.2rem;
  }

  .pizza-grid,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-tile.large {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .loader-mark {
    width: min(72vw, 15rem);
  }

  .loader-logo {
    width: min(64vw, 15rem);
    max-height: 8rem;
  }

  .site-header {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    width: min(100% - 1.1rem, 1280px);
    min-height: 4.15rem;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .brand-name {
    font-size: 1.62rem;
  }

  .brand-subtitle {
    margin-top: 0.28rem;
    font-size: 0.53rem;
    letter-spacing: 0.24em;
  }

  .brand-subtitle::after {
    width: 3.1rem;
    margin-top: 0.32rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    width: min(100% - 1.1rem, 1280px);
    margin: 0 auto;
    gap: 0.15rem;
    opacity: 0;
    transition: max-height 280ms var(--ease), opacity 220ms var(--ease), padding 220ms var(--ease);
  }

  .site-header.menu-open .mobile-menu {
    max-height: 26rem;
    padding: 0.35rem 0 0.85rem;
    opacity: 1;
  }

  .mobile-menu a:not(.PrimaryButton) {
    padding: 0.72rem 0;
    color: rgba(247, 239, 225, 0.88);
    border-bottom: 1px solid rgba(201, 156, 80, 0.16);
    font-size: 0.88rem;
    font-weight: 600;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: 0.55rem;
  }

  .hero-section {
    min-height: min(70svh, 35rem);
    background: var(--charcoal);
  }

  .hero-content {
    width: min(100% - 1.5rem, 1280px);
    padding: 5rem 0 3rem;
  }

  .hero-content h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 29rem;
    margin-top: 1.1rem;
    font-size: 0.94rem;
  }

  .hero-copy::before {
    width: 8rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 22rem;
    gap: 0.65rem;
    margin-top: 1.3rem;
  }

  .quick-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.35rem 0;
  }

  .info-item {
    grid-template-columns: 2.1rem 1fr;
    gap: 0.72rem;
    padding: 0.92rem 0.75rem;
    border-right: 1px solid rgba(201, 156, 80, 0.26);
    border-bottom: 1px solid rgba(201, 156, 80, 0.18);
  }

  .info-item:nth-child(2n) {
    border-right: 0;
  }

  .info-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .info-icon,
  .feature-icon {
    width: 2rem;
    height: 2rem;
  }

  .info-icon svg,
  .feature-icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  .info-title {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
  }

  .info-item p {
    font-size: 0.75rem;
    line-height: 1.42;
  }

  .section {
    padding: 3.2rem 0.85rem;
  }

  .section-heading {
    margin-bottom: 1.55rem;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  /* 601–820px (small tablets): the 2-column grid from the max-width:1080px
     block applies. The swipe carousel is now phone-only (see max-width:600px). */
  .pizza-card-body {
    min-height: 10.5rem;
    padding: 1rem;
  }

  .about-section {
    padding: clamp(2.8rem, 8vw, 3.6rem) 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-portrait-frame {
    aspect-ratio: 3 / 4;
  }

  .about-story h3 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .about-story p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .about-quote {
    font-size: 1.15rem;
  }

  /* Mobile: one-card swipe carousel (matches the best-sellers carousel) */
  .about-pillars {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 0.9rem;
    margin-top: 2rem;
    padding: 0.2rem 0 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .about-pillars::-webkit-scrollbar {
    display: none;
  }

  .pillar {
    scroll-snap-align: center;
    padding: 1.15rem 1rem;
  }

  .pillar h3 {
    font-size: 1.15rem;
  }

  /* Carousel navigation: prev/next arrows + dots, centered below the card. */
  .pillar-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.15rem;
  }

  .pillar-arrow {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 156, 80, 0.6);
    border-radius: 50%;
    background: #fffdf8;
    color: var(--burgundy);
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(80, 48, 24, 0.14);
    transition:
      background-color 200ms var(--ease),
      border-color 200ms var(--ease),
      color 200ms var(--ease),
      transform 200ms var(--ease),
      opacity 200ms var(--ease);
  }

  .pillar-arrow:hover,
  .pillar-arrow:focus-visible {
    background: var(--burgundy);
    border-color: var(--brass);
    color: var(--ivory);
    transform: translateY(-1px);
  }

  .pillar-arrow:disabled {
    opacity: 0.32;
    box-shadow: none;
    pointer-events: none;
  }

  .pillar-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .pillar-dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(94, 55, 35, 0.3);
    transition: background-color 200ms var(--ease), width 200ms var(--ease);
  }

  .pillar-dot.active {
    width: 1.5rem;
    border-radius: 1rem;
    background: var(--brass);
  }

  /* Mobile: one-card swipe carousel (matches the best-sellers carousel) */
  .experience-grid {
    width: 100%;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    padding-bottom: 0.5rem;
  }

  .experience-grid::-webkit-scrollbar {
    display: none;
  }

  .experience-item {
    scroll-snap-align: center;
    padding: 1.3rem 1rem;
  }

  .experience-item h3 {
    font-size: 1.25rem;
  }

  .experience-item p {
    font-size: 0.84rem;
  }

  /* Carousel navigation: prev/next arrows + dots, styled for the dark section. */
  .experience-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.35rem;
  }

  .experience-arrow {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 156, 80, 0.5);
    border-radius: 50%;
    background: rgba(247, 239, 225, 0.05);
    color: var(--brass-soft);
    font-size: 1.5rem;
    line-height: 1;
    transition:
      background-color 200ms var(--ease),
      border-color 200ms var(--ease),
      color 200ms var(--ease),
      transform 200ms var(--ease),
      opacity 200ms var(--ease);
  }

  .experience-arrow:hover,
  .experience-arrow:focus-visible {
    background: rgba(201, 156, 80, 0.16);
    border-color: var(--brass);
    color: #fff7ea;
    transform: translateY(-1px);
  }

  .experience-arrow:disabled {
    opacity: 0.3;
    pointer-events: none;
  }

  .experience-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .experience-dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(247, 239, 225, 0.28);
    transition: background-color 200ms var(--ease), width 200ms var(--ease);
  }

  .experience-dot.active {
    width: 1.5rem;
    border-radius: 1rem;
    background: var(--brass);
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    min-width: auto;
    flex: 0 0 auto;
    padding: 0.65rem 0.95rem;
  }

  .menu-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .menu-tile,
  .menu-tile.large {
    min-height: 10.5rem;
  }

  .menu-tile.large {
    grid-column: span 2;
    min-height: 13rem;
  }

  .menu-tile span {
    font-size: 1.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1rem;
    padding: 2.2rem 0 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 1.1rem;
  }

  .mobile-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    color: var(--ivory);
    background: linear-gradient(180deg, rgba(39, 6, 9, 0.98), rgba(18, 17, 15, 0.98));
    border-top: 1px solid rgba(201, 156, 80, 0.38);
    box-shadow: 0 -12px 28px rgba(18, 9, 7, 0.26);
  }

  .mobile-sticky-bar a {
    display: flex;
    min-height: 4.35rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    color: rgba(247, 239, 225, 0.9);
    border-right: 1px solid rgba(201, 156, 80, 0.22);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-sticky-bar a:last-child {
    border-right: 0;
  }

  .mobile-sticky-bar svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--brass-soft);
  }
}

@media (max-width: 520px) {
  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-label {
    font-size: 0.59rem;
    letter-spacing: 0.18em;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-content {
    padding: 4.2rem 0 2.8rem;
  }

  .hero-content h1 {
    max-width: 10.2ch;
  }

  .experience-grid {
    gap: 0.85rem;
  }

  .experience-item {
    padding: 1.2rem 1rem;
  }

  .experience-item .feature-icon {
    width: 2.6rem;
    height: 2.6rem;
  }

  .experience-item .feature-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-bar a {
    min-height: 4.15rem;
    font-size: 0.6rem;
  }
}

/* Premium carousel hero */
body.nav-open,
html.nav-open {
  overflow: hidden;
}

body.nav-open .mobile-sticky-bar,
body.loader-visible .mobile-sticky-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: 5.35rem;
  grid-template-columns: auto 1fr auto;
}

.brand,
.menu-toggle {
  position: relative;
  z-index: 75;
}

/* Hide the centred logo while the mobile menu is open, so it can't overlap the
   menu links (only the close button stays). */
.site-header.menu-open .brand {
  opacity: 0;
  pointer-events: none;
}

.brand-name {
  color: #fff7eb;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.brand-subtitle {
  color: rgba(247, 239, 225, 0.82);
}

.header-actions,
.language-switcher {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 1rem;
}

.language-switcher {
  gap: 0.42rem;
  color: rgba(247, 239, 225, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.language-switcher a {
  position: relative;
  padding: 0.45rem 0;
}

.language-switcher a[aria-current="true"],
.language-switcher a:hover {
  color: var(--brass-soft);
}

.hero-section {
  position: relative;
  min-height: 90vh;
  min-height: 90svh;
  min-height: 90dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
  isolation: isolate;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.72) 0%, rgba(34, 5, 8, 0.55) 38%, rgba(8, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.6), rgba(8, 7, 6, 0.08) 48%, rgba(8, 7, 6, 0.62));
}

.hero-section::after {
  background:
    radial-gradient(circle at 24% 55%, rgba(201, 156, 80, 0.18), transparent 24rem),
    linear-gradient(180deg, rgba(18, 17, 15, 0.18), rgba(37, 5, 8, 0.42));
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.03);
  transition:
    opacity 900ms ease,
    transform 5200ms var(--ease);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 1280px);
  margin: 0 auto;
  padding: 8.3rem 0 6.5rem;
}

.hero-brand {
  margin: 0;
  color: #fff7eb;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5.2vw, 5.5rem);
  font-weight: 700;
  line-height: 0.92;
  text-shadow: 0 20px 46px rgba(0, 0, 0, 0.42);
}

.hero-kicker {
  width: fit-content;
  margin: 0.82rem 0 1.7rem;
  color: rgba(247, 239, 225, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker::after {
  display: block;
  width: 8.2rem;
  height: 1px;
  margin-top: 0.72rem;
  content: "";
  background: linear-gradient(90deg, rgba(224, 193, 122, 0.9), transparent);
}

.hero-content h1 {
  max-width: 14.5ch;
  margin: 0;
  color: #fff7eb;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 5.5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.44);
}

.mobile-headline {
  display: none;
}

.hero-copy {
  max-width: 40rem;
  margin: 1.35rem 0 0;
  color: rgba(247, 239, 225, 0.88);
  font-size: clamp(1rem, 1.2vw, 1.13rem);
  line-height: 1.72;
}

.hero-copy::before {
  display: none;
}

.hero-service-line {
  margin: 1rem 0 0;
  color: rgba(224, 193, 122, 0.9);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateX(-50%);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.hero-dot,
.hero-arrow {
  border: 0;
  color: var(--ivory);
  cursor: pointer;
}

.hero-dot {
  width: 2.1rem;
  height: 0.18rem;
  padding: 0;
  background: rgba(247, 239, 225, 0.34);
  transition:
    width 240ms var(--ease),
    background-color 240ms var(--ease),
    transform 240ms var(--ease);
}

.hero-dot.active,
.hero-dot:hover {
  width: 3.2rem;
  background: var(--brass-soft);
}

.hero-arrow {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(224, 193, 122, 0.42);
  border-radius: 50%;
  background: rgba(18, 17, 15, 0.32);
  backdrop-filter: blur(10px);
  font-size: 1.65rem;
  line-height: 1;
  transition:
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.hero-arrow:hover {
  background: rgba(58, 7, 11, 0.62);
  border-color: rgba(224, 193, 122, 0.86);
  box-shadow: 0 0 24px rgba(201, 156, 80, 0.18);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity 220ms ease;
  }

  .site-header.menu-open .mobile-menu a,
  .site-header.menu-open .mobile-menu .mobile-menu-actions,
  .site-header.menu-open .mobile-language-switcher {
    transition-delay: 0ms;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: transparent;
    background-image: none;
    border-bottom: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header-inner {
    width: min(100% - 1.15rem, 1280px);
    min-height: 4.25rem;
    grid-template-columns: 1fr auto;
  }

  .brand-name {
    font-size: 1.58rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 0.24em;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 80;
    display: block;
    width: 2.72rem;
    height: 2.72rem;
    border-color: rgba(224, 193, 122, 0.48);
    background: rgba(18, 17, 15, 0.24);
    backdrop-filter: blur(10px);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 72;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.15rem;
    width: 100%;
    max-height: none;
    margin: 0;
    overflow: hidden;
    padding: 6.4rem 1.25rem 3rem;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    background:
      linear-gradient(180deg, rgba(18, 17, 15, 0.88), rgba(37, 5, 8, 0.93));
    background-position: center;
    background-size: cover;
    backdrop-filter: blur(18px);
    transform: translateY(-0.8rem);
    transition:
      opacity 260ms var(--ease),
      transform 320ms var(--ease),
      visibility 0ms linear 320ms;
  }

  .mobile-menu::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
      radial-gradient(circle at 50% 34%, rgba(201, 156, 80, 0.16), transparent 15rem),
      rgba(18, 17, 15, 0.38);
    backdrop-filter: blur(10px);
  }

  .site-header.menu-open .mobile-menu {
    max-height: none;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity 260ms var(--ease),
      transform 320ms var(--ease),
      visibility 0ms;
  }

  .mobile-menu > a:not(.PrimaryButton):not(.OutlineButton) {
    position: relative;
    padding: 0.18rem 0 0.32rem;
    color: rgba(247, 239, 225, 0.94);
    border-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(2.35rem, 13vw, 4.8rem);
    font-weight: 700;
    line-height: 0.95;
    opacity: 0;
    transform: translateY(1rem);
    transition:
      color 220ms var(--ease),
      opacity 320ms var(--ease),
      transform 320ms var(--ease);
  }

  .mobile-menu > a:not(.PrimaryButton):not(.OutlineButton)::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 3.4rem;
    height: 1px;
    content: "";
    background: var(--brass-soft);
    transform: translateX(-50%) scaleX(0);
    transition: transform 240ms var(--ease);
  }

  .mobile-menu > a:not(.PrimaryButton):not(.OutlineButton):hover,
  .mobile-menu > a:not(.PrimaryButton):not(.OutlineButton):focus-visible {
    color: var(--brass-soft);
  }

  .mobile-menu > a:not(.PrimaryButton):not(.OutlineButton):hover::after,
  .mobile-menu > a:not(.PrimaryButton):not(.OutlineButton):focus-visible::after {
    transform: translateX(-50%) scaleX(1);
  }

  .site-header.menu-open .mobile-menu > a,
  .site-header.menu-open .mobile-menu .mobile-menu-actions,
  .site-header.menu-open .mobile-language-switcher {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.menu-open .mobile-menu > a:nth-child(1) {
    transition-delay: 70ms;
  }

  .site-header.menu-open .mobile-menu > a:nth-child(2) {
    transition-delay: 115ms;
  }

  .site-header.menu-open .mobile-menu > a:nth-child(3) {
    transition-delay: 160ms;
  }

  .site-header.menu-open .mobile-menu > a:nth-child(4) {
    transition-delay: 205ms;
  }

  .mobile-menu-actions {
    width: min(100%, 22rem);
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(1rem);
    transition:
      opacity 320ms var(--ease) 250ms,
      transform 320ms var(--ease) 250ms;
  }

  .mobile-menu-cta {
    width: 100%;
    margin: 0;
  }

  .mobile-language-switcher {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.7rem;
    color: rgba(247, 239, 225, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    opacity: 0;
    transform: translateY(1rem);
    transition:
      opacity 320ms var(--ease) 300ms,
      transform 320ms var(--ease) 300ms;
  }

  .mobile-language-switcher a[aria-current="true"] {
    color: var(--brass-soft);
  }

  .hero-section {
    min-height: 86vh;
    min-height: 86svh;
    min-height: 86dvh;
    align-items: center;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.72) 0%, rgba(37, 5, 8, 0.42) 45%, rgba(8, 7, 6, 0.76) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.3), rgba(8, 7, 6, 0.28));
  }

  .hero-slide:nth-child(1) img {
    object-position: 56% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 62% center;
  }

  .hero-slide:nth-child(3) img {
    object-position: 48% center;
  }

  .hero-content {
    width: min(100% - 1.5rem, 32rem);
    padding: 6.1rem 0 5.2rem;
    text-align: center;
  }

  .hero-brand {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .hero-kicker {
    margin: 0.82rem auto 1.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
  }

  .hero-kicker::after {
    width: 7rem;
    margin-inline: auto;
    background: linear-gradient(90deg, transparent, rgba(224, 193, 122, 0.95), transparent);
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.35rem, 10.5vw, 3.6rem);
    line-height: 0.98;
  }

  .desktop-headline {
    display: none;
  }

  .mobile-headline {
    display: inline;
  }

  .hero-copy {
    display: block;
    max-width: 23rem;
    margin: 1rem auto 0;
    color: rgba(247, 239, 225, 0.84);
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-service-line {
    margin-top: 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 22rem;
    gap: 0.7rem;
    margin: 1.35rem auto 0;
  }

  .hero-actions .PrimaryButton,
  .hero-actions .OutlineButton {
    min-height: 3.15rem;
    padding: 0.82rem 0.72rem;
    font-size: 0.67rem;
    letter-spacing: 0.07em;
  }

  .hero-actions .button-icon {
    display: none;
  }

  .hero-controls {
    bottom: 1.1rem;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dot {
    width: 1.65rem;
  }

  .hero-dot.active,
  .hero-dot:hover {
    width: 2.55rem;
  }
}

@media (max-width: 520px) {
  .hero-section {
    min-height: 86vh;
    min-height: 86svh;
    min-height: 86dvh;
  }

  .hero-content {
    padding: 5.8rem 0 5rem;
  }

  .hero-actions {
    width: 100%;
  }
}

/* Transparent header that overlays the top of the hero and scrolls away
   with the page (it does not stay pinned to the viewport on scroll). */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 70;
  color: var(--ivory);
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    background-color 300ms var(--ease),
    border-color 300ms var(--ease),
    box-shadow 300ms var(--ease),
    backdrop-filter 300ms var(--ease);
}

.site-header.header-scrolled {
  background: rgba(18, 11, 10, 0.86);
  border-bottom-color: rgba(201, 156, 80, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.menu-open {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-header .header-inner {
  min-height: 4.85rem;
}

.site-header .brand-name,
.site-header .brand-subtitle,
.site-header .desktop-nav,
.site-header .language-switcher {
  color: rgba(247, 239, 225, 0.92);
}

.site-header .brand-name {
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.site-header .brand-subtitle {
  color: rgba(247, 239, 225, 0.78);
}

.site-header .brand-subtitle::after,
.site-header .desktop-nav a::after {
  background: linear-gradient(90deg, rgba(224, 193, 122, 0.92), transparent);
}

.site-header .desktop-nav a::after {
  height: 1px;
}

.site-header .desktop-nav a:hover,
.site-header .desktop-nav a[aria-current="page"],
.site-header .language-switcher a[aria-current="true"],
.site-header .language-switcher a:hover {
  color: var(--brass-soft);
}

.site-header .header-cta {
  min-height: 2.78rem;
  padding: 0.82rem 1.08rem;
  background: rgba(58, 7, 11, 0.86);
  border-color: rgba(224, 193, 122, 0.78);
  box-shadow:
    0 10px 22px rgba(18, 7, 5, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.site-header .header-cta:hover {
  border-color: var(--brass-soft);
  box-shadow:
    0 0 22px rgba(201, 156, 80, 0.18),
    0 12px 26px rgba(18, 7, 5, 0.24),
    inset 0 1px 0 rgba(224, 193, 122, 0.24);
}

@media (max-width: 820px) {
  .site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header.header-scrolled {
    background: rgba(18, 11, 10, 0.88);
    border-bottom-color: rgba(201, 156, 80, 0.18);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-header .header-inner {
    min-height: 4rem;
  }

  .site-header .menu-toggle {
    color: var(--ivory);
    background: transparent;
    border-color: rgba(224, 193, 122, 0.52);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition:
      background-color 240ms var(--ease),
      border-color 240ms var(--ease),
      box-shadow 240ms var(--ease);
  }

  .site-header.header-scrolled .menu-toggle {
    background: rgba(18, 17, 15, 0.34);
    border-color: rgba(224, 193, 122, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .site-header.menu-open .menu-toggle {
    background: transparent;
    border-color: rgba(224, 193, 122, 0.68);
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-content {
    padding-top: max(6rem, calc(4rem + 1.65rem));
  }
}

/* Hero viewport fit and SEO PNG carousel structure */
.hero-section {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  align-items: center;
}

.hero-section::before {
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88) 0%, rgba(34, 5, 8, 0.66) 40%, rgba(8, 7, 6, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.52), rgba(8, 7, 6, 0.08) 48%, rgba(8, 7, 6, 0.58));
}

.hero-content {
  width: min(760px, calc(100% - 16vw));
  max-width: 760px;
  margin-right: auto;
  margin-left: max(1.5rem, 8vw);
  padding: clamp(5rem, 9svh, 7rem) 0 clamp(3rem, 6svh, 5rem);
}

.hero-brand {
  display: none;
}

.hero-kicker {
  margin: 0 0 clamp(0.9rem, 1.8svh, 1.25rem);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
}

.hero-kicker::after {
  width: 5.75rem;
  margin-top: 0.52rem;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 clamp(1rem, 2svh, 1.35rem);
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 clamp(0.9rem, 1.8svh, 1.2rem);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.55;
}

.hero-service-line {
  margin: 0 0 clamp(1.2rem, 2.2svh, 1.6rem);
  font-size: clamp(0.78rem, 0.78vw, 0.9rem);
  letter-spacing: 0.16em;
}

.hero-actions {
  gap: 1rem;
  margin-top: 0;
}

.hero-actions .PrimaryButton,
.hero-actions .OutlineButton {
  min-height: 2.9rem;
  padding: 0.82rem 1.15rem;
}

.hero-controls {
  bottom: 1.25rem;
}

.hero-dot {
  width: 1.82rem;
  height: 0.15rem;
}

.hero-dot.active,
.hero-dot:hover {
  width: 2.75rem;
}

.hero-slide:nth-child(1) img {
  object-position: 52% center;
}

.hero-slide:nth-child(2) img {
  object-position: 50% center;
}

.hero-slide:nth-child(3) img {
  object-position: 48% center;
}

@media (min-width: 821px) and (max-height: 820px) {
  .hero-content {
    width: min(720px, calc(100% - 16vw));
    max-width: 720px;
    padding-top: 5rem;
    padding-bottom: 3.4rem;
  }

  .hero-brand {
    display: none;
  }

  .hero-kicker {
    margin-bottom: 0.82rem;
    font-size: 0.56rem;
  }

  .hero-kicker::after {
    margin-top: 0.4rem;
  }

  .hero-content h1 {
    max-width: 700px;
    margin-bottom: 0.82rem;
    font-size: clamp(2.75rem, 4.65vw, 5rem);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 590px;
    margin-bottom: 0.78rem;
    font-size: 0.98rem;
    line-height: 1.44;
  }

  .hero-service-line {
    margin-bottom: 1rem;
    font-size: 0.7rem;
  }

  .hero-actions {
    margin-top: 0;
  }

  .hero-actions .PrimaryButton,
  .hero-actions .OutlineButton {
    min-height: 2.8rem;
    padding-top: 0.78rem;
    padding-bottom: 0.78rem;
  }

  .hero-controls {
    bottom: 0.95rem;
  }
}

@media (max-width: 820px) {
  .hero-section {
    min-height: 86vh;
    min-height: 86svh;
    min-height: 86dvh;
  }

  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.74) 0%, rgba(37, 5, 8, 0.42) 43%, rgba(8, 7, 6, 0.78) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.26), rgba(8, 7, 6, 0.3));
  }

  .hero-content {
    width: min(100% - 1.5rem, 24rem);
    max-width: 24rem;
    margin-inline: auto;
    padding: max(5rem, calc(4rem + 1rem)) 0 4.85rem;
    text-align: center;
  }

  .hero-brand {
    display: none;
  }

  .hero-kicker {
    margin: 0 auto 0.92rem;
    font-size: 0.56rem;
    letter-spacing: 0.24em;
  }

  .hero-kicker::after {
    width: 5.8rem;
    margin: 0.46rem auto 0;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: 20.5rem;
    margin-top: 0.75rem;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .hero-service-line {
    margin-top: 0.74rem;
    font-size: 0.61rem;
    letter-spacing: 0.11em;
    line-height: 1.55;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 21rem;
    gap: 0.64rem;
    margin-top: 1rem;
  }

  .hero-actions .PrimaryButton,
  .hero-actions .OutlineButton {
    min-height: 2.9rem;
    padding: 0.78rem 0.62rem;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .hero-controls {
    bottom: 0.8rem;
  }

  .hero-slide:nth-child(1) img {
    object-position: 58% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 52% center;
  }

  .hero-slide:nth-child(3) img {
    object-position: 47% center;
  }
}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
    max-width: 17rem;
  }

  .hero-content {
    padding-bottom: 5.15rem;
  }
}

/* Final header transparency guard */
.site-header:not(.header-scrolled):not(.menu-open) {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.site-header:not(.header-scrolled):not(.menu-open)::before,
.site-header:not(.header-scrolled):not(.menu-open)::after,
.site-header:not(.header-scrolled):not(.menu-open) .header-inner::before,
.site-header:not(.header-scrolled):not(.menu-open) .header-inner::after {
  display: none;
  content: none;
}

.site-header:not(.header-scrolled):not(.menu-open) .header-inner {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.site-header:not(.header-scrolled):not(.menu-open) .brand,
.site-header:not(.header-scrolled):not(.menu-open) .desktop-nav,
.site-header:not(.header-scrolled):not(.menu-open) .header-actions,
.site-header:not(.header-scrolled):not(.menu-open) .language-switcher {
  background: transparent !important;
  background-image: none !important;
  border-color: transparent;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.site-header.header-scrolled {
  background: rgba(18, 11, 10, 0.86);
  border-bottom: 1px solid rgba(201, 156, 80, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

@media (max-width: 820px) {
  .site-header:not(.header-scrolled):not(.menu-open) {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .site-header:not(.header-scrolled):not(.menu-open) .menu-toggle {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

.site-header.header-scrolled {
  background: rgba(18, 11, 10, 0.88);
  border-bottom: 1px solid rgba(201, 156, 80, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
}

/* Keep the carousel visible behind the transparent header.
   Top ~20% stays clear so nothing shows behind the transparent header;
   a neutral legibility pool sits around the headline (lower-left) and
   fades before it reaches the top. No burgundy tint = no red strip. */
.hero-section::before {
  background:
    linear-gradient(180deg, transparent 0%, transparent 34%, rgba(8, 7, 6, 0.3) 66%, rgba(8, 7, 6, 0.58) 100%),
    radial-gradient(120% 80% at 22% 72%, rgba(8, 7, 6, 0.5) 0%, rgba(8, 7, 6, 0.16) 45%, transparent 66%);
}

.hero-section::after {
  background:
    radial-gradient(circle at 24% 55%, rgba(201, 156, 80, 0.16), transparent 24rem),
    linear-gradient(180deg, transparent 0%, rgba(37, 5, 8, 0.36) 100%);
}

@media (max-width: 820px) {
  .hero-section::before {
    background:
      linear-gradient(180deg, transparent 0%, transparent 24%, rgba(8, 7, 6, 0.34) 52%, rgba(8, 7, 6, 0.74) 100%);
  }
}

/* FINAL hero overlay — overrides ALL earlier duplicate ::before/::after rules.
   Desktop: left-to-right scrim so the left-aligned text is legible while the
   oven/fire on the right stays bright. Continuous horizontal ramp = no band
   (the old band came from a VERTICAL gradient with a light middle). */
.hero-section::before {
  background: linear-gradient(
    90deg,
    rgba(6, 5, 4, 0.9) 0%,
    rgba(6, 5, 4, 0.78) 26%,
    rgba(6, 5, 4, 0.56) 48%,
    rgba(6, 5, 4, 0.24) 68%,
    transparent 86%
  ) !important;
}

.hero-section::after {
  background: none !important;
}

/* Soft halo behind hero text for legibility over bright spots (no banding). */
.hero-content h1,
.hero-kicker,
.hero-copy,
.hero-service-line {
  text-shadow:
    0 2px 22px rgba(0, 0, 0, 0.62),
    0 1px 4px rgba(0, 0, 0, 0.62);
}

@media (max-width: 820px) {
  /* Centered text on mobile: monotonic top-to-bottom darkening (no light
     middle), so it stays band-safe while keeping the headline readable. */
  .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(6, 5, 4, 0.58) 0%,
      rgba(6, 5, 4, 0.7) 50%,
      rgba(6, 5, 4, 0.82) 100%
    ) !important;
  }
}

/* Best-seller pizzas on phones: horizontal swipe carousel (1-at-a-time feel).
   Tablets (601–1080px) keep the 2-column grid; desktop keeps 4 columns. */
@media (max-width: 600px) {
  /* One full card per view (no half-cut card); navigated by buttons/dots/swipe. */
  .pizza-grid {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0 0 0.4rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .pizza-grid::-webkit-scrollbar {
    display: none;
  }

  .pizza-card {
    scroll-snap-align: center;
  }

  /* Carousel navigation: prev/next arrows + dots, centered below the card. */
  .pizza-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.15rem;
  }

  .pizza-arrow {
    width: 2.7rem;
    height: 2.7rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 156, 80, 0.6);
    border-radius: 50%;
    background: #fffdf8;
    color: var(--burgundy);
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(80, 48, 24, 0.14);
    transition:
      background-color 200ms var(--ease),
      border-color 200ms var(--ease),
      color 200ms var(--ease),
      transform 200ms var(--ease),
      opacity 200ms var(--ease);
  }

  .pizza-arrow:hover,
  .pizza-arrow:focus-visible {
    background: var(--burgundy);
    border-color: var(--brass);
    color: var(--ivory);
    transform: translateY(-1px);
  }

  .pizza-arrow:disabled {
    opacity: 0.32;
    box-shadow: none;
    pointer-events: none;
  }

  .pizza-dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
  }

  .pizza-dot {
    width: 0.5rem;
    height: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(94, 55, 35, 0.3);
    transition: background-color 200ms var(--ease), width 200ms var(--ease);
  }

  .pizza-dot.active {
    width: 1.5rem;
    border-radius: 1rem;
    background: var(--brass);
  }
}

/* ============================================================
   MOBILE HERO — mobile-first rebuild (authoritative; overrides the
   earlier scattered mobile hero rules). Phones/small tablets <= 820px.
   ============================================================ */
@media (max-width: 820px) {
  .hero-section {
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    /* top clears the transparent header; bottom leaves room for dots */
    padding: 5rem 1.25rem 3.25rem;
    overflow: hidden;
  }

  /* Readability overlay: dark behind nav (top) and behind buttons/dots
     (bottom), softer through the middle. No separate ::after on mobile. */
  .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(6, 4, 3, 0.5) 0%,
      rgba(6, 4, 3, 0.22) 26%,
      rgba(6, 4, 3, 0.28) 60%,
      rgba(6, 4, 3, 0.6) 100%
    ) !important;
  }

  /* Localized scrim behind the centered text so the photo stays visible
     in the corners while the headline/copy stay readable. */
  .hero-section::after {
    background: radial-gradient(
      135% 55% at 50% 54%,
      rgba(6, 4, 3, 0.52) 0%,
      rgba(6, 4, 3, 0.22) 48%,
      transparent 78%
    ) !important;
  }

  .hero-content {
    width: auto;
    max-width: 92%;
    margin-inline: auto;
    padding: 0;
    text-align: center;
    z-index: 2;
  }

  .hero-kicker {
    width: auto;
    margin: 0 auto 0.9rem;
    font-size: 0.62rem;
    letter-spacing: 0.26em;
  }

  .hero-kicker::after {
    margin: 0.5rem auto 0;
  }

  .hero-content h1 {
    max-width: 16ch;
    margin: 0 auto 1rem;
    font-size: clamp(2.35rem, 11vw, 3.6rem);
    line-height: 0.98;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.65);
  }

  /* Use the naturally-wrapping headline on mobile; the .mobile-headline span
     has a hard <br> ("Authentic Neapolitan Pizza" on one line) that overflows
     narrow phones. */
  .desktop-headline {
    display: inline;
  }

  .mobile-headline {
    display: none;
  }

  .hero-copy {
    max-width: 22rem;
    margin: 0 auto 0.9rem;
    font-size: clamp(0.9rem, 3.6vw, 1rem);
    line-height: 1.55;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  }

  .hero-service-line {
    margin: 0 auto 1.25rem;
    font-size: clamp(0.68rem, 2.8vw, 0.75rem);
    letter-spacing: 0.14em;
    line-height: 1.5;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: none;
    margin: 0 auto;
  }

  .hero-actions .PrimaryButton,
  .hero-actions .OutlineButton {
    flex: 0 1 auto;
    min-height: 2.9rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  /* Carousel: small dots centered at the bottom; arrows hidden on mobile so
     they never overlap the headline text. */
  .hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 1.2rem;
    z-index: 3;
    display: flex;
    justify-content: center;
    transform: none;
    gap: 0;
  }

  .hero-controls .hero-arrow,
  .hero-prev,
  .hero-next {
    display: none !important;
  }

  .hero-dots {
    display: flex;
    flex: 0 0 auto;
    width: auto;
    margin: 0 auto;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Old background-image style restored: full-bleed cover crop with a tuned
     object-position per slide. */
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-slide:nth-child(1) img {
    object-position: 45% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 55% center;
  }

  .hero-slide:nth-child(3) img {
    object-position: center center;
  }
}

/* ============================================================
   MOBILE HEADER — centered logo with the hamburger pinned top-right
   (reference style). Logo/menu button placement only; nothing else changes.
   ============================================================ */
@media (max-width: 820px) {
  .header-inner {
    position: relative;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .brand {
    align-items: center;
    text-align: center;
  }

  /* Big, clear, centered logo on mobile (reference style). */
  .brand-logo {
    height: 4.6rem;
  }

  .brand-subtitle::after {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

/* Interlude photo band — shorter on phones. */
@media (max-width: 820px) {
  .interlude-section {
    min-height: 17rem;
  }

  .interlude-content {
    padding: 2rem 1rem;
  }
}

/* Visit section: stack the info card above the map on phones/small tablets. */
@media (max-width: 820px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 16rem;
  }
}

/* ============================================================
   GALLERY PAGE — Section 1: hero banner
   ============================================================ */
.gallery-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(28rem, 60vh, 40rem);
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
}

/* Placeholder background (warm dark + a wood-fired-oven glow on the right).
   Replace with a real photo by adding background-image here (see gallery.html). */
.gallery-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 80% 42%, rgba(214, 126, 46, 0.42), transparent 38%),
    radial-gradient(circle at 86% 44%, rgba(255, 184, 92, 0.22), transparent 20%),
    linear-gradient(120deg, #14100e 0%, #1d1411 48%, #2a1a13 100%);
  background-size: cover;
  background-position: center;
}

/* Left scrim so the heading stays readable over the photo. */
.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 6, 0.88) 0%,
    rgba(8, 7, 6, 0.72) 34%,
    rgba(8, 7, 6, 0.3) 68%,
    rgba(8, 7, 6, 0.12) 100%
  );
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 1180px);
  margin: 0 auto;
  padding: 6.5rem 0 3rem;
}

.gallery-hero .section-label {
  color: var(--brass-soft);
}

.gallery-hero h1 {
  margin: 0.6rem 0 1rem;
  color: #fff7eb;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.gallery-hero-copy {
  max-width: 34rem;
  margin: 0;
  color: rgba(247, 239, 225, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.gallery-ornament {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.gallery-ornament .line {
  width: 3.2rem;
  height: 1px;
  background: rgba(201, 156, 80, 0.7);
}

.gallery-ornament .diamond {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--brass-soft);
  transform: rotate(45deg);
}

@media (max-width: 820px) {
  .gallery-hero {
    min-height: clamp(22rem, 56svh, 30rem);
    text-align: center;
  }

  .gallery-hero::before {
    background: linear-gradient(
      180deg,
      rgba(8, 7, 6, 0.78) 0%,
      rgba(8, 7, 6, 0.48) 42%,
      rgba(8, 7, 6, 0.72) 100%
    );
  }

  .gallery-hero-content {
    width: min(100% - 2rem, 34rem);
    padding: 6rem 0 2.6rem;
  }

  .gallery-hero-copy {
    margin-inline: auto;
  }

  .gallery-ornament {
    margin-inline: auto;
  }
}

/* ============================================================
   GALLERY PAGE — Section 2: filterable masonry grid
   ============================================================ */
.gallery-grid-section {
  padding: clamp(2.6rem, 5vw, 4rem) 1rem clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 156, 80, 0.1), transparent 22rem),
    linear-gradient(180deg, var(--cream), var(--ivory));
  border-top: 1px solid rgba(94, 55, 35, 0.16);
}

/* One elegant, uniform grid — no filters, no subcategories. */
.gallery-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.15rem);
}

.gallery-tile {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(94, 55, 35, 0.16);
  box-shadow: 0 14px 30px rgba(80, 48, 24, 0.12);
  /* Warm backdrop shown while a photo loads, behind the (placeholder) icon,
     and as the matte if a tile ever uses object-fit: contain. */
  background:
    radial-gradient(circle at 30% 24%, rgba(201, 156, 80, 0.16), transparent 62%),
    linear-gradient(150deg, #efe1c9, #e2d1ac);
}

.gallery-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  color: rgba(74, 53, 30, 0.5);
}

.gallery-ph svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke: rgba(74, 53, 30, 0.4);
}

.gallery-img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms var(--ease);
}

@media (hover: hover) {
  .gallery-tile:hover .gallery-img {
    transform: scale(1.05);
  }
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phones: keep a compact 2-column grid so the gallery reads as a contained
   grid, not an endless single-column waterfall of full-width photos. */
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
  }
}

/* ============================================================
   GALLERY PAGE — Section 3: Experience CTA band
   ============================================================ */
.experience-cta {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 130%, rgba(201, 156, 80, 0.16), transparent 24rem),
    linear-gradient(160deg, #5a1617, var(--burgundy-deep));
  border-top: 1px solid rgba(201, 156, 80, 0.22);
  border-bottom: 1px solid rgba(201, 156, 80, 0.18);
}

.cta-leaf {
  position: absolute;
  bottom: -1.5rem;
  width: clamp(8rem, 16vw, 13.5rem);
  height: auto;
  color: var(--brass-soft);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.cta-leaf--left {
  left: -1.5rem;
}

.cta-leaf--right {
  right: -1.5rem;
  transform: scaleX(-1);
}

.experience-cta-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: clamp(2.6rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.experience-cta-text .section-label {
  color: var(--brass-soft);
}

.experience-cta-text h2 {
  margin: 0.5rem 0 0.7rem;
  color: #fff6e7;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
}

.experience-cta-text p {
  margin: 0;
  max-width: 34rem;
  color: rgba(247, 239, 225, 0.82);
  font-size: 1rem;
  line-height: 1.6;
}

.experience-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 820px) {
  .experience-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .experience-cta-text p {
    margin-inline: auto;
  }

  .experience-cta-actions {
    justify-content: center;
  }

  .cta-leaf {
    width: 7rem;
    opacity: 0.08;
  }
}

/* ============================================================
   CONTACT PAGE — Section 1: hero banner
   ============================================================ */
.contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(28rem, 62vh, 40rem);
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
}

/* Placeholder background (warm dark with lit-window glow on the right).
   Replace with a real photo by adding background-image here (see contact.html). */
.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 46%, rgba(214, 140, 60, 0.34), transparent 34%),
    radial-gradient(circle at 88% 60%, rgba(255, 196, 110, 0.18), transparent 22%),
    linear-gradient(120deg, #13100e 0%, #1c1410 50%, #271a14 100%);
  background-size: cover;
  background-position: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 7, 6, 0.9) 0%,
    rgba(8, 7, 6, 0.72) 36%,
    rgba(8, 7, 6, 0.32) 70%,
    rgba(8, 7, 6, 0.14) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, 1180px);
  margin: 0 auto;
  padding: 6.5rem 0 3rem;
}

.contact-hero .section-label {
  color: var(--brass-soft);
}

.contact-hero h1 {
  margin: 0.6rem 0 1.15rem;
  color: #fff7eb;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.contact-hero-copy {
  max-width: 32rem;
  margin: 0;
  color: rgba(247, 239, 225, 0.86);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

@media (max-width: 820px) {
  .contact-hero {
    min-height: clamp(22rem, 58svh, 30rem);
    text-align: center;
  }

  .contact-hero::before {
    background: linear-gradient(
      180deg,
      rgba(8, 7, 6, 0.78) 0%,
      rgba(8, 7, 6, 0.48) 42%,
      rgba(8, 7, 6, 0.72) 100%
    );
  }

  .contact-hero-content {
    width: min(100% - 2rem, 34rem);
    padding: 6rem 0 2.6rem;
  }

  .contact-hero h1 br {
    display: none;
  }

  .contact-hero-copy {
    margin-inline: auto;
  }
}

/* ============================================================
   CONTACT PAGE — Section 2: Find Us (text + Google Map)
   ============================================================ */
.find-us {
  padding: clamp(2.6rem, 5vw, 4.5rem) 1rem;
  background: var(--cream);
}

.find-us-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}

.find-us-text .section-label {
  color: #8a6a2e;
}

.find-us-text h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  color: var(--ink);
}

.find-us-blurb {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  color: #5a4639;
  font-size: 1rem;
  line-height: 1.7;
}

.find-us-address {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  color: #46352c;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
}

.find-us-hours {
  margin-bottom: 1.7rem;
}

.find-us-pin {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(201, 156, 80, 0.16);
  color: var(--burgundy);
}

.find-us-pin svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Light-background outline button (the default OutlineButton is for dark areas). */
.OutlineButton.is-light {
  color: var(--burgundy);
  background: transparent;
  border-color: rgba(94, 55, 35, 0.4);
  box-shadow: none;
}

.OutlineButton.is-light:hover {
  color: var(--ivory);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

/* WhatsApp call-to-action — same shape as the other buttons, brand green. */
.WhatsAppButton {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 0.18rem;
  padding: 0.92rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  background: #25d366;
  border: 1px solid #1eb955;
  box-shadow:
    0 13px 28px rgba(20, 120, 60, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 220ms var(--ease),
    background-color 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.WhatsAppButton:hover {
  background: #1eb955;
  transform: translateY(-1px);
}

.WhatsAppButton svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.find-us-map {
  min-height: 22rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(94, 55, 35, 0.18);
  box-shadow: var(--shadow);
}

.find-us-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
}

@media (max-width: 820px) {
  .find-us-grid {
    grid-template-columns: 1fr;
  }

  .find-us-map,
  .find-us-map iframe {
    min-height: 16rem;
  }
}

/* ============================================================
   CONTACT PAGE — Section 4: Call to order (takeaway & delivery)
   ============================================================ */
.order-section {
  padding: clamp(2.2rem, 4vw, 3.6rem) 1rem clamp(3rem, 6vw, 5rem);
  background: var(--cream);
}

.order-card {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  border-radius: 0.6rem;
  color: var(--ivory);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 156, 80, 0.14), transparent 18rem),
    linear-gradient(150deg, #2a1411, var(--burgundy-deep));
  box-shadow: 0 24px 50px rgba(40, 12, 8, 0.28);
}

.order-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.order-kicker {
  margin: 0 0 0.7rem;
  color: var(--brass-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.order-card-body h2 {
  margin: 0 0 0.6rem;
  color: #fff6e7;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.order-phone {
  display: inline-block;
  color: var(--brass-soft);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 700;
  transition: color 180ms var(--ease);
}

/* WhatsApp button sits on its own line under the phone, sized to its content. */
.order-whatsapp-btn {
  display: flex;
  width: fit-content;
  margin-top: 0.9rem;
}

.order-phone:hover {
  color: #fff;
}

.order-rule {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: 1px;
  margin: 1.3rem 0;
  background: linear-gradient(90deg, rgba(201, 156, 80, 0.6), transparent);
}

.order-offer-label {
  margin: 0 0 0.9rem;
  color: rgba(247, 239, 225, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-offer {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.order-offer li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(247, 239, 225, 0.92);
  font-size: 0.95rem;
}

.order-offer svg {
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  color: var(--brass-soft);
}

.order-card-media {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(232, 142, 52, 0.42), transparent 46%),
    linear-gradient(120deg, #1a1110, #2a1813);
}

.order-card-ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 0.5rem;
  color: rgba(247, 239, 225, 0.5);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-card-ph svg {
  width: 2rem;
  height: 2rem;
  stroke: rgba(247, 239, 225, 0.42);
}

.order-card-ph em {
  font-style: normal;
}

.order-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) {
  .order-card {
    grid-template-columns: 1fr;
  }

  .order-card-media {
    min-height: 10rem;
  }
}


/* ===================== FLAG LANGUAGE SWITCHER ===================== */
/* GR/EN replaced by flag chips. .flag-icon cancels the global svg stroke. */
.language-switcher a,
.mobile-language-switcher a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  line-height: 0;
  opacity: 0.42;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.language-switcher a:hover,
.mobile-language-switcher a:hover,
.language-switcher a[aria-current="true"],
.mobile-language-switcher a[aria-current="true"] {
  opacity: 1;
}

.language-switcher a:hover,
.mobile-language-switcher a:hover {
  transform: translateY(-1px);
}

.flag-icon {
  display: block;
  height: 1rem;
  width: auto;
  border-radius: 2px;
  stroke: none;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.14),
    0 1px 2px rgba(0, 0, 0, 0.18);
}

.mobile-language-switcher .flag-icon {
  height: 1.2rem;
}

/* Brass ring on the active flag. */
.language-switcher a[aria-current="true"] .flag-icon,
.mobile-language-switcher a[aria-current="true"] .flag-icon {
  box-shadow:
    0 0 0 1.5px var(--brass-soft),
    0 1px 3px rgba(0, 0, 0, 0.22);
}
