:root {
  --cream: #efe2cf;
  --cream-2: #e2cfb6;
  --light: #f5eadc;
  --dark: #11100d;
  --dark-2: #1a1814;
  --panel: #f3e8d9;
  --panel-2: #2d3a28;
  --olive: #36412d;
  --olive-2: #4d5a43;
  --orange: #c64d28;
  --orange-2: #a83f1e;
  --paper: #f8f0e4;
  --ink: #221b15;
  --muted: #66513f;
  --line: rgba(255, 239, 220, 0.08);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4e7d6;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.page {
  width: 100%;
  min-height: 100dvh;
  background: #17120f;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── NAV ─── */

.hero-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px 2px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.08), 0 10px 24px rgba(0, 0, 0, 0.38);
}

.brand-copy {
  display: grid;
  gap: 0;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.9;
}

.brand-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  opacity: 0.92;
}

.nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.nav a {
  position: relative;
  color: rgba(255, 248, 239, 0.84);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: #f6dfc9;
}

.nav a.active {
  color: #f6dfc9;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 2px;
  background: linear-gradient(180deg, #d55b2f 0%, #ba4921 100%);
  color: #fff7f0;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-cta:active {
  transform: translateY(0);
}

/* ─── HERO ─── */

.hero {
  position: relative;
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: #17120f;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.loaded {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, transparent 0 70%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 320px;
  padding: 8px 16px 14px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 0;
  min-height: 240px;
}

.hero-left {
  align-self: center;
  padding: 0 6px 4px 8px;
  max-width: 670px;
}

.hero-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  color: #f3e5d6;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 6.5vw, 6.1rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
}

.hero-title span {
  display: block;
  margin-left: 92px;
  margin-top: 6px;
  font-family: "Caveat", cursive;
  font-size: clamp(3.1rem, 5vw, 5rem);
  color: #c65134;
  line-height: 0.9;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin: 10px 0 0;
  color: rgba(255, 249, 243, 0.92);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.hero-subtitle strong {
  display: block;
  margin-top: 2px;
  font-size: 1.05rem;
  letter-spacing: 0.44em;
}

.hero-tagline {
  margin: 14px 0 0;
  color: rgba(255, 245, 231, 0.78);
  font-size: 0.95rem;
  max-width: 34ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.08), 0 8px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.24);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 4px 8px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  background: linear-gradient(180deg, #d45a2d, #ba4820);
  color: #fff9f1;
}

.btn-secondary {
  background: linear-gradient(180deg, #334126, #2a3620);
  color: #f4e9dd;
}

/* ─── CONTENT WRAPPER ─── */

.content-wrap {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
}
.content-wrap:not(.page-cta-banner) {
  transform: translateY(-2px);
}

/* ─── CARDS ROW ─── */

.cards-row {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 0;
  background: transparent;
}

.card {
  min-height: 246px;
  padding: 20px 24px;
  background: var(--paper);
  border-right: 1px solid rgba(105, 86, 69, 0.18);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.card:first-child {
  border-top-left-radius: 0;
}

.card:last-child {
  border-right: 0;
  border-top-right-radius: 12px;
}

.card-kicker {
  margin: 0 0 10px;
  color: #8c5d47;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.card h2,
.card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--ink);
  line-height: 0.98;
}

.card h2 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.card h3 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
}

.about-text,
.event-text,
.card p,
.contact-details p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
}

.script-line {
  margin: 14px 0 0;
  font-family: "Caveat", cursive;
  color: #9e513a;
  font-size: 1.35rem;
  line-height: 1;
}

.outline-btn,
.menu-link,
.ask-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.outline-btn:hover,
.menu-link:hover,
.ask-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.outline-btn:active,
.menu-link:active,
.ask-btn:active {
  transform: translateY(0) scale(0.98);
}

.outline-btn {
  margin-top: 16px;
  background: #24331f;
  color: #f1e8dc;
}

/* ─── MENU LIST ─── */

.menu-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.menu-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(105, 86, 69, 0.14);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list em {
  font-style: normal;
  color: #7c6753;
  letter-spacing: -0.02em;
}

.menu-link {
  margin-top: 16px;
  color: #c05a37;
  padding-left: 0;
  justify-content: flex-start;
}

.menu-link:hover {
  color: #a83f1e;
}

/* ─── BOOKING CARD ─── */

.booking-card {
  background: var(--paper);
}

.booking-card .card-kicker {
  color: #8c5d47;
}

.booking-card h3 {
  color: var(--ink);
}

.booking-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.booking-list li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--olive);
}

.ask-btn {
  margin-top: 18px;
  background: var(--olive);
  color: #f1e8dc;
}

.contact-card .ask-btn {
  background: var(--olive);
  color: #f1e8dc;
}

/* ─── FEATURES ─── */

.feature-strip {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
}

.features-contact {
  display: grid;
  grid-template-columns: 1.7fr 1.1fr;
  gap: 0;
  margin-top: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #2f4327;
}

.feature {
  min-height: 82px;
  padding: 14px 16px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: #ded2c2;
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.88;
}

.feature-icon svg {
  display: block;
}

.feature strong {
  display: block;
  margin-top: 8px;
  color: #e9ddcf;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature p {
  margin: 4px 0 0;
  color: #c8bcae;
  font-size: 0.72rem;
  line-height: 1.35;
}

/* ─── CONTACT BAND ─── */

.contact-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: stretch;
  background: #f0e2cf;
}

.contact-block {
  padding: 18px 22px;
  border-left: 1px solid rgba(105, 86, 69, 0.15);
  display: grid;
  align-content: center;
}

.social-block {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 146, 67, 0.12), transparent 22%),
    #f0e2cf;
}

.social-block p {
  margin: 0;
  color: #8c5d47;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.social-block strong {
  margin-top: 6px;
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-details {
  display: grid;
  gap: 7px;
}

.contact-details p {
  margin: 0;
  color: #30261f;
  font-size: 0.92rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
  justify-content: flex-end;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #24331f;
  color: #f2e9de;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, background 0.15s ease;
}

.social-icons a:hover {
  transform: translateY(-1px);
  background: #36412d;
}

/* ─── PAGE HEADER (for inner pages) ─── */

.page-header {
  position: relative;
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  overflow: hidden;
  background-color: #17120f;
  background-image: url('assets/la-fiamme-hero-bg.png');
  background-size: cover;
  background-position: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, transparent 0 70%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  padding: 8px 16px 28px;
}

.page-header-title {
  margin: 30px 0 0;
  color: #f3e5d6;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
  padding: 0 8px;
}

.page-header-title span {
  display: block;
  margin-left: 60px;
  margin-top: 6px;
  font-family: "Caveat", cursive;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #c65134;
  line-height: 0.9;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.page-header-subtitle {
  margin: 14px 0 0;
  color: rgba(255, 245, 231, 0.78);
  font-size: 0.95rem;
  max-width: 50ch;
  line-height: 1.65;
  padding: 0 8px;
}

.page-header-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.page-header-truck {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.page-header-truck img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.88;
}

/* ─── PAGE CONTENT ─── */

.page-content {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  padding: 0 0 60px;
}

.page-section {
  background: var(--paper);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
  padding: 28px 32px;
}

.page-section h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--ink);
  line-height: 1;
}

.page-section h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink);
  line-height: 1.05;
}

.page-section p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
  margin: 10px 0 0;
}

.section-kicker {
  margin: 0 0 10px;
  color: #8c5d47;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

/* ─── TRUCK IMAGE SECTIONS ─── */

.truck-image-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.truck-image-section img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.92;
  transition: opacity 0.4s ease;
}

.truck-image-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 231, 214, 0.15) 0%, transparent 30%, transparent 70%, rgba(244, 231, 214, 0.2) 100%),
    linear-gradient(90deg, rgba(244, 231, 214, 0.1), transparent 20%, transparent 80%, rgba(244, 231, 214, 0.1));
  pointer-events: none;
  mix-blend-mode: soft-light;
}

/* ─── FULL MENU GRID ─── */

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

.menu-grid-item {
  padding: 24px 28px;
  background: var(--paper);
  border-right: 1px solid rgba(105, 86, 69, 0.18);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.menu-grid-item:nth-child(even) {
  border-right: 0;
}

.menu-grid-item h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--ink);
}

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

.menu-full-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(105, 86, 69, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

.menu-full-list li:last-child {
  border-bottom: 0;
}

.menu-full-list .item-name {
  color: var(--ink);
}

.menu-full-list .item-desc {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}

.menu-full-list .item-price {
  color: #8c5d47;
  font-weight: 800;
  white-space: nowrap;
}

/* ─── BOOKING SECTION ─── */

.booking-hero-card {
  background: var(--paper);
  padding: 32px;
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.booking-hero-card h2 {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 16px;
}

.booking-hero-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
  margin: 0 0 20px;
  max-width: 50ch;
}

.booking-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.booking-option {
  padding: 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(105, 86, 69, 0.15);
  border-radius: 8px;
}

.booking-option h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.booking-option p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ─── CONTACT CARDS ─── */

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

.contact-card {
  padding: 28px;
  background: var(--paper);
  border-right: 1px solid rgba(105, 86, 69, 0.18);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.contact-card:last-child {
  border-right: 0;
}

.contact-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--ink);
}

.contact-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.96rem;
  margin: 0 0 8px;
}

.contact-card a {
  color: #c05a37;
  font-weight: 700;
}

/* ─── FOOTER ─── */

.site-footer {
  background: var(--dark);
  color: rgba(255, 245, 231, 0.7);
  padding: 40px 0 28px;
}

.footer-inner {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 0 8px;
}

.footer-brand .brand-name {
  color: #f3e5d6;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.footer-brand .brand-subtitle {
  color: rgba(255, 245, 231, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 2px 0 0;
}

.footer-brand p {
  color: rgba(255, 245, 231, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 30ch;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #f3e5d6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(255, 245, 231, 0.6);
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #f3e5d6;
}

.footer-bottom {
  width: min(calc(100% - 24px), var(--max));
  margin: 24px auto 0;
  padding: 16px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 245, 231, 0.35);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255, 245, 231, 0.5);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #f3e5d6;
}

.section-spacer {
  display: none;
}

/* ─── HAMBURGER MENU ─── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 248, 239, 0.84);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 16, 13, 0.92);
  backdrop-filter: blur(12px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: none;
}

.mobile-menu.open {
  pointer-events: auto;
}

.mobile-menu a {
  color: #f3e5d6;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.3s; }

.mobile-menu a:hover {
  color: #c65134;
}

/* ─── FOCUS STYLES ─── */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1050px) {
  .hero-nav {
    grid-template-columns: auto 1fr auto;
    justify-items: start;
  }

  .nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-overlay,
  .mobile-menu {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-header-split {
    grid-template-columns: 1fr;
  }

  .page-header-truck img {
    min-height: 200px;
    max-height: 260px;
  }

  .cards-row {
    grid-template-columns: 1fr;
  }

  .card {
    border-right: 0;
    border-bottom: 1px solid rgba(105, 86, 69, 0.18);
  }

  .card:last-child {
    border-bottom: 0;
    border-top-right-radius: 0;
  }

  .features-contact {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-band {
    grid-template-columns: 1fr;
  }

  .contact-block {
    border-left: 0;
    border-top: 1px solid rgba(105, 86, 69, 0.15);
  }

  .social-icons {
    justify-content: flex-start;
    padding-right: 22px;
    padding-bottom: 18px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid-item {
    border-right: 0;
    border-bottom: 1px solid rgba(105, 86, 69, 0.18);
  }

  .menu-grid-item:last-child {
    border-bottom: 0;
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-right: 0;
    border-bottom: 1px solid rgba(105, 86, 69, 0.18);
  }

  .contact-card:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .hero {
    width: calc(100% - 12px);
  }

  .hero-inner,
  .content-wrap,
  .feature-strip,
  .page-header,
  .page-content {
    width: calc(100% - 12px);
  }

  .hero-inner {
    padding: 8px 10px 12px;
    min-height: unset;
  }

  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-title span {
    margin-left: 34px;
    font-size: clamp(2.5rem, 10vw, 3.3rem);
  }

  .page-header-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .page-header-title span {
    margin-left: 24px;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .brand-mark {
    width: 74px;
    height: 74px;
  }

  .brand-copy {
    transform: translateY(-2px);
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .nav {
    gap: 10px 14px;
  }

  .nav a {
    font-size: 0.62rem;
  }

  .hero-tagline {
    max-width: none;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .page-section {
    padding: 20px 18px;
  }

  .booking-hero-card {
    padding: 22px 18px;
  }

  .page-header-inner {
    padding: 8px 10px 22px;
  }

  .footer-inner {
    padding: 0 4px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-form {
    margin-top: 20px;
  }

  .booking-form .ask-btn {
    justify-self: stretch;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    border-right: 0;
    border-bottom: 1px solid rgba(105, 86, 69, 0.18);
  }

  .testimonial-card:last-child {
    border-bottom: 0;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-gallery-item:nth-child(2) {
    border-right: 0;
  }

  .hero-gallery-item:nth-child(even) {
    border-bottom: 0;
  }

  .hero-gallery-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(105, 86, 69, 0.18);
  }

  .hero-gallery-item:nth-child(4) {
    border-right: 0;
    border-top: 1px solid rgba(105, 86, 69, 0.18);
  }

  .map-embed {
    border: 0;
    border-radius: 0;
  }

  .map-embed iframe {
    height: 240px;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-cell:nth-child(2) {
    border-right: 0;
  }

  .stat-cell:nth-child(3) {
    border-top: 1px solid rgba(105, 86, 69, 0.14);
  }

  .stat-cell:nth-child(4) {
    border-top: 1px solid rgba(105, 86, 69, 0.14);
    border-right: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-form {
    margin-top: 20px;
  }

  .booking-form .ask-btn {
    justify-self: stretch;
  }

  .page-cta-banner {
    padding: 24px 18px;
  }
}

/* ─── SKIP NAVIGATION ─── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--orange);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

/* ─── BOOKING FORM ─── */

.booking-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  color: #d2bdac;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 10px 14px;
  color: #f4eadf;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244, 234, 223, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c65134;
  background: rgba(255, 255, 255, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d2bdac' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: #2f4327;
  color: #f4eadf;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.booking-form .ask-btn {
  justify-self: start;
  margin-top: 8px;
}

.form-note {
  color: rgba(200, 188, 174, 0.6);
  font-size: 0.82rem;
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ─── SCROLL REVEAL ─── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── TESTIMONIALS ─── */

.testimonials-section {
  padding: 40px 0 50px;
}

.testimonials-title {
  text-align: center;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin: 0 0 24px;
  line-height: 1;
}

.testimonials-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 32px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card {
  padding: 24px 28px;
  background: var(--paper);
  border-right: 1px solid rgba(105, 86, 69, 0.18);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.testimonial-card:last-child {
  border-right: 0;
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  user-select: none;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 14px;
}

.testimonial-author {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.testimonial-event {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 2px;
}

/* ─── MAP EMBED ─── */

.map-embed {
  border-right: 1px solid rgba(105, 86, 69, 0.18);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
  background: var(--panel);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

/* ─── HERO GALLERY ─── */

.hero-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
}

.hero-gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 1 / 1;
}

.hero-gallery-item:first-child {
  border-top-left-radius: 0;
}

.hero-gallery-item:last-child {
  border-top-right-radius: 0;
  border-right: 0;
}

.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.hero-gallery-item:hover img {
  transform: scale(1.05);
}

.hero-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-gallery-item:hover .hero-gallery-overlay {
  opacity: 1;
}

.hero-gallery-caption {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── STICKY CTA ─── */

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #d55b2f 0%, #ba4921 100%);
  color: #fff7f0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(198, 77, 40, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(198, 77, 40, 0.55);
  color: #fff;
}

.sticky-cta:active {
  transform: translateY(0);
}

.sticky-cta svg {
  flex-shrink: 0;
}

/* ─── FORM FEEDBACK ─── */

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

.form-status.error {
  display: block;
  background: rgba(198, 77, 40, 0.1);
  border: 1px solid rgba(198, 77, 40, 0.3);
  color: #c64d28;
}

.form-status-dismissible {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-status-dismiss {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0 4px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.form-status-dismiss:hover {
  opacity: 1;
}

.form-group.disabled-field {
  opacity: 0.5;
  pointer-events: none;
}

/* ─── 404 FULL HEADER ─── */

.error-page-content {
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}

.error-page-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.error-code {
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--orange);
  margin: 0 0 8px;
  line-height: 1;
}

/* ─── INNER PAGE CTA ─── */

.page-cta-banner {
  background: linear-gradient(180deg, #2f4327 0%, #26351f 100%);
  padding: 32px 24px;
  text-align: center;
}

.page-cta-banner h3 {
  color: #f6ebdf;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin: 0 0 8px;
}

.page-cta-banner p {
  color: #c8bcae;
  font-size: 0.92rem;
  margin: 0 0 18px;
  line-height: 1.6;
}

.page-cta-banner .ask-btn {
  display: inline-flex;
}

/* ─── DIVIDER ─── */

.section-divider {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(105, 86, 69, 0.35);
}

/* ─── REQUIRED FIELD MARKER ─── */

.required {
  color: var(--orange);
  margin-left: 2px;
}

/* ─── STATS ROW ─── */

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--paper);
  border-top: 1px solid rgba(105, 86, 69, 0.12);
}

.stat-cell {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(105, 86, 69, 0.14);
}

.stat-cell:last-child {
  border-right: 0;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

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