/* ================================
   ARCO CAFE - GLOBAL STYLES
   Mobile-first: 390px -> 1440px
   ================================ */

/* --- CSS Variables (Brand Colors) --- */
:root {
  --rosso: #922721;
  --rosso-rgb: 146, 39, 33;
  --giallo: #F3BE00;
  --verde: #008F74;
  --blu: #006B8F;
  --dark: #1A1A1A;
  --warm-gray: #5A534F;
  --cream: #FDF8F0;
  --warm-white: #FEFCF9;
  --white: #FFFFFF;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  background-color: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--dark);
}

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

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

/* Accessibility: links distinguishable without color alone */
.reservation-walk-ins a,
.visit-reservation-note a,
.seo-content a,
.story-content a,
.accessibility-content a,
.privacy-content a,
.faq-answer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}


/* ================================
   SECTION 1: NAVIGATION
   ================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 48px;
  height: 48px;
}

/* Desktop nav links - hidden on mobile */
.nav-links {
  display: none;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--dark);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--rosso);
}

.nav-reserve-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  border-radius: 8px;
  background: transparent;
  color: var(--rosso) !important;
  border: 2px solid var(--rosso);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-reserve-cta:hover {
  background: var(--rosso) !important;
  color: var(--white) !important;
  border-color: var(--rosso);
}

/* Action buttons container - hidden on mobile */
.nav-actions {
  display: none;
  gap: 12px;
  align-items: center;
}

.nav-actions a {
  width: 160px;
  justify-content: center;
}

/* Nav CTA buttons container - hidden on mobile */
.nav-ctas {
  display: none;
  gap: 8px;
  align-items: center;
}

.nav-ctas .btn {
  min-width: 140px;
  text-align: center;
  box-sizing: border-box;
  padding: 12px 24px;
  font-size: 13px;
}

/* Hamburger - visible on mobile only */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hamburger open state */
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ================================
   MOBILE MENU OVERLAY
   ================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--rosso);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-menu-links a {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--white);
  transition: opacity 0.2s;
}

.mobile-menu-links a:hover {
  opacity: 0.8;
}

.mobile-menu-links .btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: var(--white);
  color: var(--rosso);
  border-color: var(--white);
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
  max-width: 280px;
}

.mobile-menu-ctas .btn {
  width: 100%;
  flex: 1;
  min-width: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.mobile-menu-ctas .btn-outline {
  background: var(--rosso);
  color: var(--white);
  border-color: var(--white);
}


/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--rosso);
  color: var(--white);
  border-color: var(--rosso);
}

.btn-primary:hover {
  background: #7a201b;
  border-color: #7a201b;
}

.btn-white {
  background: var(--white);
  color: var(--rosso);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* ================================
   CONTAINER (reusable)
   ================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
}


/* ================================
   OVERLINE (reusable)
   ================================ */
.overline {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}


/* ================================
   SECTION 2: HERO
   ================================ */
.hero {
  position: relative;
  background: var(--rosso);
  padding-top: 72px;
  overflow: hidden;
  margin: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero .overline {
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  font-size: 36px;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-ctas .btn {
  flex: 1;
  text-align: center;
}

/* Pavoncella watermark */
.hero-watermark {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  opacity: 0.08;
  pointer-events: none;
}


/* ================================
   SECTION 3: FEATURED DISHES
   ================================ */
.featured-dishes {
  padding: 60px 20px;
  background: var(--warm-white);
  text-align: center;
  margin: 0;
}

.featured-dishes .overline {
  color: var(--rosso);
}

.featured-dishes h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin: 8px 0 32px;
  line-height: 1.2;
}

.dish-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}

.dish-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dish-card-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dish-card:hover .dish-card-image img {
  transform: scale(1.05);
}

.dish-card-info {
  padding: 16px 20px 20px;
  text-align: left;
}

.dish-card-info h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  margin: 0 0 4px;
}

.dish-card-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--warm-gray);
  margin: 0 0 8px;
  line-height: 1.5;
}

.dish-price {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--rosso);
}

.featured-cta {
  margin-top: 32px;
}


/* ================================
   SECTION 4: ONLINE ORDERING CTA
   ================================ */
.order-cta {
  position: relative;
  padding: 60px 20px;
  background: var(--cream);
  text-align: center;
  overflow: hidden;
  margin: 0;
}

.order-cta .overline {
  color: var(--rosso);
}

.order-cta h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 8px 0 16px;
}

.order-cta-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.order-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.order-option-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}

.card-icon {
  text-align: center;
  margin-bottom: 12px;
  color: var(--warm-gray);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-option-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.order-option-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

.order-cta-btn {
  margin-top: 0;
}

/* Decorative focaccia accent */
.order-cta-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.06;
  pointer-events: none;
}

/* ================================
   SECTION 5: OUR STORY TEASER
   ================================ */
.story-teaser {
  padding: 60px 20px;
  background: var(--warm-white);
  margin: 0;
}

.story-teaser-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.story-teaser-photo {
  border-radius: 12px;
  overflow: hidden;
}
.story-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  background: #e8e2db;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4A4039;
  border-radius: 12px;
}

.story-teaser .overline {
  color: var(--rosso);
}

.story-teaser h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 8px 0 20px;
}

.story-teaser-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Outline button (reusable) */
.btn-outline {
  background: transparent;
  color: var(--rosso);
  border-color: var(--rosso);
}

.btn-outline:hover {
  background: var(--rosso);
  color: var(--white);
}

/* ================================
   SECTION 6: VISIT US
   ================================ */
.visit-us {
  padding: 0 20px 60px;
  background: var(--cream);
  margin: 0;
}

.visit-header {
  text-align: center;
  margin-bottom: 40px;
}

.visit-us .overline {
  color: var(--rosso);
}

.visit-header h2 {
  font-size: 28px;
  line-height: 1.2;
  margin-top: 8px;
}

.visit-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.visit-map {
  border-radius: 12px;
  overflow: hidden;
}

.visit-map .photo-placeholder {
  height: 240px;
}

.visit-map iframe {
  width: 100%;
  height: 240px;
  border-radius: 12px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit-block h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.visit-block p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
}

.visit-transit {
  margin-top: 6px;
  font-size: 13px !important;
}

.visit-note {
  margin-top: 4px;
  font-size: 13px !important;
  font-style: italic;
}

.visit-ctas {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
  min-height: 48px;
}

.visit-ctas .btn {
  flex: 1;
  text-align: center;
}

/* Visit extras grid */
.visit-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visit-extra {
  background: var(--warm-white);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.visit-extra-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.visit-extra h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.visit-extra p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ================================
   SECTION 7: FOOTER
   ================================ */
.site-footer {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 48px 20px 32px;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  margin-bottom: 40px;
}

.footer-brand {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 8px;
}

.footer-address {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.footer-col h4,
.footer-col .footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--giallo);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  transition: all 0.2s;
  margin-bottom: 0;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px 0;
}

.footer-legal {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ================================
   SEO TEXT SECTION
   ================================ */
.seo-text {
  padding: 48px 20px;
  background: var(--warm-white);
}

.seo-text h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.seo-text p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}

.seo-text p:last-child {
  margin-bottom: 0;
}

/* ================================
   ORDER PAGE: HEADER
   ================================ */
.order-header {
  padding: 120px 20px 60px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-header .overline {
  color: var(--rosso);
}

.order-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 16px;
}

.order-header-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.order-header-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto 20px;
}

.order-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.order-btn-icon {
  font-size: 18px;
}

.order-header-note {
  font-size: 13px;
  color: #5A5350;
  line-height: 1.5;
}

/* Decorative focaccia accent */
.order-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.06;
  pointer-events: none;
}

/* ================================
   ORDER PAGE: INFO STRIP
   ================================ */
.order-info {
  padding: 48px 20px;
  background: var(--warm-white);
}

.order-info-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.order-info-item {
  text-align: center;
}

.order-info-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.order-info-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.order-info-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.order-info-item a {
  color: var(--rosso);
  font-weight: 600;
}

.order-info-item a:hover {
  text-decoration: underline;
}

/* ================================
   ORDER PAGE: REWARDS + GIFT CARDS
   ================================ */
.order-extras {
  padding: 48px 20px;
  background: var(--cream);
}

.order-extras-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.order-extras-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.order-extras-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.order-extras-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.order-extras-card .btn {
  display: inline-flex;
}

/* ================================
   GIFT CARDS PAGE: HEADER
   ================================ */
.giftcard-header {
  padding: 120px 20px 60px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.giftcard-header .overline {
  color: var(--rosso);
}

.giftcard-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 16px;
}

.giftcard-header-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.giftcard-header-ctas {
  max-width: 280px;
  margin: 0 auto 20px;
}

.giftcard-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.giftcard-header-note {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.giftcard-header-note a {
  color: var(--rosso);
  font-weight: 600;
  text-decoration: none;
}

.giftcard-header-note a:hover {
  text-decoration: underline;
}

/* Decorative sebada accent */
.giftcard-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.06;
  pointer-events: none;
}

/* ================================
   GIFT CARDS PAGE: HOW IT WORKS
   ================================ */
.giftcard-steps {
  padding: 48px 20px;
  background: var(--warm-white);
}

.giftcard-steps-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 36px;
}

.giftcard-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.giftcard-step {
  text-align: center;
}

.giftcard-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rosso);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.giftcard-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.giftcard-step p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ================================
   GIFT CARDS PAGE: OCCASIONS
   ================================ */
.giftcard-occasions {
  padding: 48px 20px;
  background: var(--cream);
}

.giftcard-occasions-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.giftcard-occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 36px;
}

.giftcard-occasion {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
}

.giftcard-occasion-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.giftcard-occasion h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  font-weight: 400;
}

.giftcard-occasions-cta {
  text-align: center;
}

.giftcard-occasions-cta .btn {
  display: inline-flex;
}

/* ================================
   REWARDS PAGE: HEADER
   ================================ */
.rewards-header {
  padding: 120px 20px 60px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rewards-header .overline {
  color: var(--rosso);
}

.rewards-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 16px;
}

.rewards-header-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.rewards-header-ctas {
  max-width: 280px;
  margin: 0 auto 20px;
}

.rewards-header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rewards-header-note {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.rewards-header-note a {
  color: var(--rosso);
  font-weight: 600;
  text-decoration: none;
}

.rewards-header-note a:hover {
  text-decoration: underline;
}

.rewards-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.06;
  pointer-events: none;
}

/* ================================
   REWARDS PAGE: HOW IT WORKS
   ================================ */
.rewards-steps {
  padding: 48px 20px;
  background: var(--warm-white);
}

.rewards-steps-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 36px;
}

.rewards-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.rewards-step {
  text-align: center;
}

.rewards-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rosso);
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.rewards-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}

.rewards-step p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* ================================
   REWARDS PAGE: WHY JOIN
   ================================ */
.rewards-benefits {
  padding: 48px 20px;
  background: var(--cream);
}

.rewards-benefits-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.rewards-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 36px;
}

.rewards-benefit {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.rewards-benefit-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 10px;
}

.rewards-benefit h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.rewards-benefit p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 340px;
  margin: 0 auto;
}

.rewards-benefits-cta {
  text-align: center;
}

.rewards-benefits-cta .btn {
  display: inline-flex;
}

/* ================================
   OUR STORY PAGE: HEADER
   ================================ */
.story-header {
  padding: 120px 20px 60px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-header .overline {
  color: var(--rosso);
}

.story-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  margin: 8px 0 16px;
}

.story-header-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

.story-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.06;
  pointer-events: none;
}

/* ================================
   OUR STORY PAGE: STORY SECTIONS
   ================================ */
.story-section {
  padding: 48px 20px;
}

.story-island {
  background: var(--warm-white);
}

.story-restaurant {
  background: var(--cream);
}

.story-kitchen {
  background: var(--warm-white);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-text p:last-child {
  margin-bottom: 0;
}

.story-text a {
  color: var(--rosso);
  text-decoration: none;
  font-weight: 500;
}

.story-text a:hover {
  text-decoration: underline;
}

.story-text em {
  font-style: italic;
}

.story-image {
  margin-top: 32px;
}

.story-image .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #756D67;
  border: 1px dashed rgba(0, 0, 0, 0.1);
}
.story-image picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-restaurant .photo-placeholder {
  background: var(--warm-white);
}

/* ================================
   OUR STORY PAGE: INVITATION
   ================================ */
.story-invitation {
  background: var(--cream);
  padding: 60px 20px;
}

.story-invitation-content {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.story-invitation-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.story-invitation-content p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-signoff {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 18px !important;
  color: var(--rosso) !important;
  margin-bottom: 32px !important;
}

.story-invitation-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  margin: 0 auto;
}

.story-invitation-ctas .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================
   STICKY MOBILE ORDER BAR
   ================================ */
.sticky-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--warm-white);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.sticky-order-bar.visible {
  transform: translateY(0);
}

.sticky-order-bar .sticky-btn {
  display: inline-block;
  margin: 0 auto;
}

.sticky-order-btn {
  display: flex;
  width: 100%;
}

/* ================================
   RESERVATION PAGE: HEADER
   ================================ */
.reservation-header {
  padding: 100px 20px 60px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reservation-header .container {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reservation-header .overline {
  color: var(--rosso);
}

.reservation-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 16px;
}

.reservation-header-body {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

.reservation-hours-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--rosso);
  border-radius: 24px;
  padding: 10px 24px;
  margin: 0 auto 24px;
}

.reservation-hours-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--rosso);
  letter-spacing: 0.3px;
}

/* Reservation booking card */
.reservation-card {
  width: 100%;
  max-width: 300px;
  margin-bottom: 16px;
}

.reservation-card-inner {
  background: var(--white);
  border: 1px solid rgba(var(--rosso-rgb), 0.15);
  border-radius: 12px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reservation-card-icon {
  color: var(--rosso);
  margin-bottom: 10px;
}

.reservation-card-text {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0 0 16px;
}

.reservation-card-text a {
  color: var(--rosso);
  font-weight: 600;
  text-decoration: none;
}

.reservation-card-text a:hover {
  text-decoration: underline;
}

.reservation-card-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
}

.reservation-walk-ins {
  text-align: center;
  font-size: 14px;
  color: #5A5350;
  line-height: 1.6;
  margin: 0;
}

.reservation-walk-ins a {
  color: var(--rosso);
  font-weight: 600;
  text-decoration: none;
  font-style: normal;
}

.reservation-walk-ins a:hover {
  text-decoration: underline;
}

.reservation-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.06;
  pointer-events: none;
}

/* ================================
   RESERVATION PAGE: DINING EXPERIENCES
   ================================ */
.reservation-experiences {
  padding: 48px 20px;
  background: var(--cream);
}

.reservation-experiences h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.reservation-experiences-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.reservation-experience-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.reservation-experience-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.reservation-experience-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

.reservation-experience-price,
.reservation-experience-time {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--rosso);
  margin-bottom: 8px;
  display: block;
}

.reservation-experience-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   RESERVATION PAGE: PRIVATE EVENTS
   ================================ */
.reservation-events {
  padding: 48px 20px;
  background: var(--warm-white);
}

.reservation-events-content {
  max-width: 900px;
  margin: 0 auto;
}

.reservation-events-text {
  text-align: center;
  margin-bottom: 32px;
}

.reservation-events-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.reservation-events-text p {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.reservation-events-text .btn {
  display: inline-flex;
}

.reservation-events-image {
  border-radius: 12px;
  overflow: hidden;
}

.reservation-events-image .photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--mid-gray, #9a918b);
  border: 1px dashed rgba(0, 0, 0, 0.1);
}

/* ================================
   RESERVATION PAGE: WHAT TO EXPECT
   ================================ */
.reservation-expect {
  padding: 48px 20px;
  background: var(--cream);
}

.reservation-expect h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.reservation-expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.reservation-expect-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.reservation-expect-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.reservation-expect-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}

.reservation-expect-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ================================
   VISIT PAGE: HEADER
   ================================ */
.visit-header {
  padding: 60px 20px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.visit-header .container {
  max-width: 800px;
}

.visit-header .overline {
  color: var(--rosso);
}

.visit-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 24px;
}

.visit-header-address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.8;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.visit-header-address strong {
  font-weight: 600;
  color: var(--dark);
}

.visit-header-hours-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--rosso);
  border-radius: 24px;
  padding: 10px 24px;
  margin: 0 auto 20px;
}

.visit-header-hours-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--rosso);
  letter-spacing: 0.3px;
}

.visit-header-phone {
  margin-bottom: 32px;
}

.visit-header-phone a {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--rosso);
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s;
}

.visit-header-phone a:hover {
  opacity: 0.8;
}

.visit-header-map {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.visit-header-map iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.visit-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.08;
  pointer-events: none;
}

/* ================================
   VISIT PAGE: HOURS & DETAILS
   ================================ */
.visit-details {
  padding: 48px 20px;
  background: var(--warm-white);
}

.visit-details h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.visit-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.visit-detail-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.visit-detail-icon {
  color: var(--rosso);
  margin-bottom: 12px;
}

.visit-detail-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.visit-detail-highlight {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--rosso);
  margin-bottom: 8px;
  font-weight: 400;
}

.visit-detail-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

.visit-detail-card p:not(:last-child) {
  margin-bottom: 8px;
}

/* ================================
   VISIT PAGE: GETTING HERE
   ================================ */
.visit-getting-here {
  padding: 48px 20px;
  background: var(--cream);
}

.visit-getting-here h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.visit-getting-here-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.visit-getting-here-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.visit-getting-here-icon {
  color: var(--rosso);
  margin-bottom: 12px;
}

.visit-getting-here-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
}

.visit-getting-here-item p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ================================
   VISIT PAGE: CONTACT US
   ================================ */
.visit-contact {
  padding: 48px 20px;
  background: var(--warm-white);
}

.visit-contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

.visit-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.visit-contact-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.visit-contact-icon {
  color: var(--rosso);
  margin-bottom: 12px;
}

.visit-contact-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}

.visit-contact-link {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--rosso);
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.visit-contact-link:hover {
  opacity: 0.8;
}

.visit-contact-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
}

/* ================================
   VISIT PAGE: RESERVATION CARD
   ================================ */
.visit-reservation {
  padding: 48px 20px;
  background: var(--cream);
  text-align: center;
}

.visit-reservation .reservation-card {
  margin: 0 auto 16px;
}

.visit-reservation-note {
  font-size: 14px;
  color: #5A5350;
  line-height: 1.6;
  margin: 0;
}

/* ================================
   FAQ PAGE: HEADER
   ================================ */
.faq-header {
  padding: 100px 20px 60px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-header .container {
  max-width: 720px;
}

.faq-header .overline {
  color: var(--rosso);
}

.faq-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  margin: 8px 0 16px;
}

.faq-header-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin: 0;
}

.faq-header-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  opacity: 0.08;
  pointer-events: none;
}

/* ================================
   FAQ PAGE: ACCORDION
   ================================ */
.faq-accordion {
  padding: 48px 20px;
  background: var(--warm-white);
}

.faq-accordion .container {
  max-width: 720px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--rosso);
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  min-height: 48px;
  transition: opacity 0.2s;
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-question h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--rosso);
  border-radius: 2px;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 9px;
  left: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 2px;
  left: 9px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item-active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item-active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin: 0;
}

.faq-answer a {
  color: var(--rosso);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.faq-answer a:hover {
  opacity: 0.7;
}

/* ================================
   FAQ PAGE: CONTACT
   ================================ */
.faq-contact {
  padding: 48px 20px;
  background: var(--cream);
  text-align: center;
}

.faq-contact .container {
  max-width: 600px;
}

.faq-contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.faq-contact-intro {
  font-size: 15px;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

.faq-contact-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.faq-contact-option {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-contact-option strong {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
}

.faq-contact-option a {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--rosso);
  text-decoration: none;
  transition: opacity 0.2s;
}

.faq-contact-option a:hover {
  opacity: 0.7;
}

/* ================================
   FAQ PAGE: SEO
   ================================ */
.faq-seo {
  padding: 32px 20px;
  background: var(--dark);
  color: var(--cream);
}

.faq-seo .container {
  max-width: 800px;
}

.faq-seo h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.faq-seo p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(253, 248, 240, 0.85);
  margin: 0;
}

/* --- Large Party: Page Header --- */
.large-party-header {
  padding: 120px 20px 48px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.large-party-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--dark);
  margin: 12px 0 16px;
  line-height: 1.08;
}

.large-party-header-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 540px;
  margin: 0 auto 28px;
}

.large-party-header-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.large-party-header-ctas .btn {
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 14px 24px;
  font-size: 15px;
}

.large-party-header-accent {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  opacity: 0.06;
  pointer-events: none;
}

/* --- Large Party: How It Works --- */
.large-party-how-it-works {
  padding: 48px 20px;
  background: var(--cream);
  text-align: center;
}

.large-party-how-it-works h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 12px 0 32px;
  line-height: 1.2;
}

.how-it-works-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.how-it-works-step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rosso);
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.how-it-works-step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}

.how-it-works-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
}

/* --- Large Party: Base Menu --- */
.large-party-menu {
  padding: 48px 20px;
  background: var(--warm-white);
}

.large-party-menu .container {
  text-align: center;
}

.large-party-menu h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--rosso);
  margin: 12px 0 8px;
  line-height: 1.2;
}

.large-party-menu-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto 40px;
}

.party-menu-course {
  text-align: left;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light-gray);
}

.party-menu-course:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.course-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 4px;
}

.course-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark);
}

.course-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rosso);
}

.party-menu-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.party-menu-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.party-menu-item:last-child {
  border-bottom: none;
}

.dish-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark);
}

.dish-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.5;
}

.dish-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-block;
  margin-top: 4px;
  width: fit-content;
}

.dish-tag.included {
  color: var(--verde);
}

.course-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin-top: 16px;
  font-style: italic;
}

.course-note a {
  color: var(--rosso);
  text-decoration: underline;
}

.party-menu-includes {
  text-align: center;
  padding: 20px;
  background: var(--cream);
  border-radius: 8px;
  margin-top: 8px;
}

.party-menu-includes p {
  font-size: 15px;
  color: var(--dark);
  margin: 0;
}

/* --- Large Party: Upgrades & Drinks --- */
.large-party-upgrades {
  padding: 48px 20px;
  background: var(--cream);
}

.large-party-upgrades .container {
  text-align: center;
}

.large-party-upgrades h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 12px 0 8px;
  line-height: 1.2;
}

.upgrades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  text-align: left;
}

.upgrade-card {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--light-gray);
}

.upgrade-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(146, 39, 33, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--rosso);
}

.upgrade-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 8px;
}

.upgrade-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin: 0;
}

/* --- Large Party: Policies FAQ --- */
.large-party-faq {
  padding: 48px 20px;
  background: var(--warm-white);
}

.large-party-faq .container {
  text-align: center;
}

.large-party-faq h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 12px 0 32px;
  line-height: 1.2;
}

.party-faq-accordion {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

/* --- Large Party: Inquiry CTA --- */
.large-party-inquiry {
  padding: 48px 20px;
  background: var(--rosso);
  text-align: center;
}

.large-party-inquiry .overline {
  color: rgba(255, 255, 255, 0.7);
}

.large-party-inquiry h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: white;
  margin: 12px 0 12px;
  line-height: 1.2;
}

.large-party-inquiry-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 32px;
}

.inquiry-contact-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.inquiry-contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.inquiry-contact-method svg {
  color: var(--rosso);
  flex-shrink: 0;
}

.inquiry-contact-method strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--warm-gray);
  margin-bottom: 2px;
}

.inquiry-contact-method a {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--dark);
  text-decoration: none;
}

.inquiry-contact-method a:hover {
  color: var(--rosso);
}

.inquiry-contact-divider {
  height: 1px;
  background: var(--light-gray);
}

.inquiry-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  font-style: italic;
}

/* --- Large Party: SEO Content Block --- */
.large-party-seo {
  padding: 48px 20px;
  background: var(--warm-white);
}

.large-party-seo h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 16px;
}

.large-party-seo p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--warm-gray);
  max-width: 720px;
  margin-bottom: 16px;
}

.large-party-seo .container {
  max-width: 720px;
}

.large-party-seo p:last-child {
  margin-bottom: 0;
}

/* --- Large Party: Availability --- */
.large-party-availability {
  padding: 48px 20px;
  background: var(--warm-white);
}

.large-party-availability .container {
  max-width: 800px;
  margin: 0 auto;
}

.large-party-availability .overline {
  color: var(--rosso);
  text-align: center;
}

.large-party-availability h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 12px 0 12px;
  line-height: 1.2;
  text-align: center;
}

.large-party-availability .large-party-menu-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  margin: 0 auto 32px;
  max-width: 600px;
  text-align: center;
}

.availability-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.availability-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.availability-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 8px;
}

.availability-hours {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--rosso);
  margin-bottom: 4px;
}

.availability-slots {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--warm-gray);
  margin-bottom: 12px;
}

.availability-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--warm-gray);
  margin: 0;
}

.availability-card-highlight {
  background: rgba(146, 39, 33, 0.04);
  border-color: var(--rosso);
  border-width: 2px;
}

.availability-card-highlight h3 {
  color: var(--rosso);
}

.availability-card-highlight .availability-hours {
  color: var(--rosso);
}

.availability-card-highlight .availability-slots {
  color: var(--rosso);
  font-weight: 700;
}

.availability-card-highlight .availability-note {
  color: var(--warm-gray);
}

.availability-details {
  font-size: 14px;
  line-height: 1.7;
  color: var(--warm-gray);
  text-align: center;
}

.availability-details p {
  margin: 0;
}

/* --- Large Party: Builder CTA --- */
.large-party-builder-cta {
  padding: 48px 20px;
  background: var(--cream);
  text-align: center;
}

.large-party-builder-cta .overline {
  color: var(--rosso);
}

.large-party-builder-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 12px 0 12px;
  line-height: 1.2;
}

.large-party-builder-cta .large-party-menu-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  max-width: 600px;
  margin: 0 auto 32px;
}

.builder-cta-note {
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 16px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  min-height: 52px;
}

/* --- Large Party: Estimator --- */
.large-party-estimator {
  padding: 48px 20px;
  background: var(--warm-white);
}

.large-party-estimator .container {
  max-width: 720px;
  margin: 0 auto;
}

.large-party-estimator .overline {
  color: var(--rosso);
  text-align: center;
}

.large-party-estimator h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin: 12px 0 8px;
  line-height: 1.2;
  text-align: center;
}

.estimator-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* Guest count slider */
.estimator-section {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.estimator-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 16px;
}

.guest-count-control {
  text-align: center;
  margin: 24px 0;
}

.guest-count-display {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--rosso);
  margin-bottom: 8px;
  font-weight: 400;
}

.guest-count-label {
  font-size: 14px;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.guest-count-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--light-gray);
  outline: none;
  -webkit-appearance: none;
  margin-top: 20px;
}

.guest-count-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rosso);
  cursor: pointer;
}

.guest-count-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rosso);
  cursor: pointer;
  border: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--warm-gray);
}

/* Add-on controls */
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.addon-item:last-child {
  border-bottom: none;
}

.addon-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.addon-info p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
  margin: 0;
}

.addon-control {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--rosso);
  background: var(--white);
  color: var(--rosso);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.addon-btn:hover {
  background: var(--rosso);
  color: var(--white);
}

.addon-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.addon-count {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--dark);
  min-width: 24px;
  text-align: center;
}

/* Checkbox controls */
.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--rosso);
}

.checkbox-label {
  flex: 1;
}

.checkbox-label h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.checkbox-label p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.5;
  margin: 0;
}

/* BYO slider */
.byo-control {
  margin: 20px 0;
}

.byo-display {
  text-align: center;
  margin-bottom: 12px;
}

.byo-count {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--rosso);
  margin-right: 8px;
}

.byo-label {
  font-size: 14px;
  color: var(--warm-gray);
}

.byo-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--light-gray);
  outline: none;
  -webkit-appearance: none;
}

.byo-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rosso);
  cursor: pointer;
}

.byo-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rosso);
  cursor: pointer;
  border: none;
}

/* Estimate breakdown */
.estimate-summary {
  background: var(--rosso);
  border-radius: 12px;
  padding: 28px 24px;
  margin-top: 32px;
  color: white;
}

.estimate-summary-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 20px;
  text-align: center;
}

.estimate-breakdown {
  margin-bottom: 20px;
}

.estimate-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.estimate-line.base {
  font-weight: 600;
  padding-bottom: 12px;
}

.estimate-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
}

.estimate-line.subtotal {
  font-weight: 600;
  font-size: 15px;
}

.estimate-line.total {
  font-size: 18px;
  font-weight: 700;
  padding-top: 12px;
}

.estimate-line.total span:last-child {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
}

.per-person-total {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
}

.estimate-note {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ================================
   STICKY BAR FOOTER CLEARANCE
   On mobile, the fixed sticky order bar
   covers the footer — add bottom padding.
   Hidden on desktop (sticky bar = display:none).
   ================================ */
@media (max-width: 767px) {
  body:has(.sticky-order-bar) .site-footer {
    padding-bottom: 100px;
  }
}

/* ================================
   DESKTOP BREAKPOINT (768px+)
   ================================ */
@media (min-width: 768px) {

  /* Nav: show links, hide hamburger */
  .nav-inner {
    padding: 16px 40px;
  }

  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .nav-ctas {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  /* Hero: bigger text, bigger watermark */
  .hero-inner {
    padding: 100px 40px 80px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-watermark {
    width: 500px;
    height: 500px;
    right: -20px;
    bottom: -40px;
    opacity: 0.06;
  }

  .hero-ctas .btn {
    min-width: 200px;
    text-align: center;
  }

  /* Featured Dishes: 3-column grid */
  .featured-dishes {
    padding: 80px 40px;
  }

  /* Section 4: Online Ordering CTA */
  .order-cta {
    padding: 80px 40px;
  }

  .order-cta h2 {
    font-size: 36px;
  }

  .order-options {
    flex-direction: row;
    max-width: 700px;
    gap: 24px;
  }

  .order-option-card {
    flex: 1;
    padding: 32px 28px;
  }

  .order-cta-accent {
    width: 220px;
    height: 220px;
    bottom: -40px;
    right: -20px;
  }

  .featured-dishes h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .dish-grid {
    flex-direction: row;
    max-width: 1200px;
    gap: 28px;
  }

  .dish-card {
    flex: 1;
  }
  /* Section 5: Our Story Teaser */
  .story-teaser {
    padding: 80px 40px;
    margin: 0;
  }

  .story-teaser-grid {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .story-teaser-photo {
    flex: 1;
  }

  .photo-placeholder {
    height: 400px;
  }

  .story-teaser-content {
    flex: 1;
  }

  .story-teaser h2 {
    font-size: 36px;
  }

  .story-teaser-body {
    max-width: 460px;
  }
  /* Section 6: Visit Us */
  .visit-us {
    padding: 0 40px 80px;
    margin: 0;
  }

  .visit-header h2 {
    font-size: 36px;
  }

  .visit-grid {
    flex-direction: row;
    gap: 48px;
  }

  .visit-map {
    flex: 1;
  }

  .visit-map .photo-placeholder {
    height: 100%;
    min-height: 380px;
  }

  .visit-map iframe {
    height: 100%;
    min-height: 380px;
  }

  .visit-details {
    flex: 1;
  }

  .visit-extras {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .visit-extra {
    padding: 24px 16px;
  }

  /* SEO Text */
  .seo-text {
    padding: 64px 40px;
  }

  .seo-text h2 {
    font-size: 28px;
  }

  .seo-text .container {
    max-width: 800px;
  }

  /* Section 7: Footer */
  .site-footer {
    padding: 56px 40px 32px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: auto;
    margin-bottom: 0;
  }

  .footer-logo {
    width: 180px;
  }

  .visit-ctas .btn {
    min-width: 180px;
    text-align: center;
  }

  /* GIFT CARDS PAGE: Desktop overrides */
  .giftcard-header {
    padding: 140px 40px 80px;
  }

  .giftcard-header h1 {
    font-size: 52px;
  }

  .giftcard-header-body {
    font-size: 17px;
    max-width: 520px;
  }

  .giftcard-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .giftcard-steps {
    padding: 64px 40px;
  }

  .giftcard-steps-title {
    font-size: 32px;
  }

  .giftcard-steps-grid {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }

  .giftcard-step {
    flex: 1;
    max-width: 240px;
  }

  .giftcard-occasions {
    padding: 64px 40px;
  }

  .giftcard-occasions-title {
    font-size: 32px;
  }

  .giftcard-occasions-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
  }

  /* REWARDS PAGE: Desktop overrides */
  .rewards-header {
    padding: 140px 40px 80px;
  }

  .rewards-header h1 {
    font-size: 52px;
  }

  .rewards-header-body {
    font-size: 17px;
    max-width: 520px;
  }

  .rewards-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .rewards-steps {
    padding: 64px 40px;
  }

  .rewards-steps-title {
    font-size: 32px;
  }

  .rewards-steps-grid {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }

  .rewards-step {
    flex: 1;
    max-width: 240px;
  }

  .rewards-benefits {
    padding: 64px 40px;
  }

  .rewards-benefits-title {
    font-size: 32px;
  }

  .rewards-benefits-grid {
    flex-direction: row;
  }

  .rewards-benefit {
    flex: 1;
    padding: 36px 28px;
  }

  /* OUR STORY PAGE: Desktop overrides */
  .story-header {
    padding: 140px 40px 80px;
  }

  .story-header h1 {
    font-size: 52px;
  }

  .story-header-body {
    font-size: 17px;
    max-width: 560px;
  }

  .story-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .story-section {
    padding: 80px 40px;
  }

  .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .story-content-reverse {
    direction: rtl;
  }

  .story-content-reverse > * {
    direction: ltr;
  }

  .story-text h2 {
    font-size: 32px;
  }

  .story-text p {
    font-size: 16px;
  }

  .story-image {
    margin-top: 0;
  }

  .story-invitation {
    padding: 80px 40px;
  }

  .story-invitation-content h2 {
    font-size: 40px;
  }

  .story-invitation-ctas {
    flex-direction: row;
    max-width: 400px;
  }

  .story-invitation-ctas .btn {
    flex: 1;
  }

  .sticky-order-bar {
    display: none;
  }

  /* ORDER PAGE: Desktop overrides */
  .order-header {
    padding: 140px 40px 80px;
  }

  .order-header h1 {
    font-size: 52px;
  }

  .order-header-body {
    font-size: 17px;
    max-width: 520px;
  }

  .order-header-ctas {
    flex-direction: row;
    max-width: 440px;
  }

  .order-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .order-info {
    padding: 64px 40px;
  }

  .order-info-grid {
    flex-direction: row;
    justify-content: center;
    gap: 48px;
  }

  .order-info-item {
    flex: 1;
    max-width: 240px;
  }

  .order-extras {
    padding: 64px 40px;
  }

  .order-extras-grid {
    flex-direction: row;
  }

  .order-extras-card {
    flex: 1;
    padding: 36px 28px;
  }

  /* RESERVATION PAGE: Desktop overrides */
  .reservation-header {
    padding: 140px 40px 80px;
  }

  .reservation-header h1 {
    font-size: 52px;
  }

  .reservation-header-body {
    font-size: 17px;
    max-width: 520px;
  }

  .reservation-hours-badge {
    margin-bottom: 40px;
  }

  .reservation-card {
    max-width: 320px;
  }

  .reservation-card-btn {
    width: auto;
    min-width: 220px;
  }

  .reservation-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .reservation-experiences {
    padding: 64px 40px;
  }

  .reservation-experiences h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .reservation-experiences-grid {
    flex-direction: row;
    gap: 24px;
    max-width: 1000px;
  }

  .reservation-experience-card {
    flex: 1;
    padding: 36px 28px;
  }

  .reservation-events {
    padding: 64px 40px;
  }

  .reservation-events-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .reservation-events-text {
    text-align: left;
    margin-bottom: 0;
  }

  .reservation-events-text h2 {
    font-size: 32px;
  }

  .reservation-events-text p {
    margin-left: 0;
    margin-right: 0;
  }

  .reservation-expect {
    padding: 64px 40px;
  }

  .reservation-expect h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .reservation-expect-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
  }

  .reservation-expect-item {
    padding: 28px;
  }

  /* VISIT PAGE: Desktop overrides */
  .visit-header {
    padding: 80px 40px;
  }

  .visit-header h1 {
    font-size: 52px;
  }

  .visit-header-address {
    font-size: 17px;
  }

  .visit-header-map {
    max-width: 800px;
  }

  .visit-header-map iframe {
    height: 400px;
  }

  .visit-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .visit-details {
    padding: 64px 40px;
  }

  .visit-details h2 {
    font-size: 32px;
  }

  .visit-details-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
  }

  .visit-detail-card {
    padding: 28px;
  }

  .visit-getting-here {
    padding: 64px 40px;
  }

  .visit-getting-here h2 {
    font-size: 32px;
  }

  .visit-getting-here-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .visit-getting-here-item {
    padding: 28px;
  }

  .visit-contact {
    padding: 64px 40px;
  }

  .visit-contact h2 {
    font-size: 32px;
  }

  .visit-contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
  }

  .visit-contact-card {
    padding: 32px 24px;
  }

  .visit-reservation {
    padding: 64px 40px;
  }

  /* FAQ PAGE: Desktop overrides */
  .faq-header {
    padding: 140px 40px 80px;
  }

  .faq-header h1 {
    font-size: 52px;
    margin: 8px 0 20px;
  }

  .faq-header-subtitle {
    font-size: 16px;
  }

  .faq-header-accent {
    width: 260px;
    height: 260px;
    bottom: -40px;
    right: -20px;
  }

  .faq-accordion {
    padding: 64px 40px;
  }

  .faq-category {
    margin-bottom: 48px;
  }

  .faq-category-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .faq-contact {
    padding: 64px 40px;
  }

  .faq-contact h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .faq-contact-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .faq-contact-options {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }

  .faq-contact-option a {
    font-size: 22px;
  }

  .faq-seo {
    padding: 40px 40px;
  }

  .faq-seo h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .faq-seo p {
    font-size: 15px;
  }

  .large-party-header { padding: 140px 40px 64px; }
  .large-party-header h1 { font-size: 52px; }
  .large-party-header-subtitle { font-size: 17px; }
  .large-party-header-accent { width: 260px; height: 260px; right: 40px; opacity: 0.05; }

  /* --- Large Party: How It Works --- */
  .large-party-how-it-works {
    padding: 64px 40px;
  }

  .large-party-how-it-works h2 {
    font-size: 36px;
  }

  .how-it-works-grid {
    flex-direction: row;
    max-width: 960px;
    gap: 40px;
  }

  .how-it-works-step {
    flex: 1;
  }

  /* --- Large Party: Availability --- */
  .large-party-availability {
    padding: 64px 40px;
  }

  .large-party-availability h2 {
    font-size: 36px;
  }

  .availability-grid {
    flex-direction: row;
    gap: 24px;
  }

  .availability-card {
    flex: 1;
    padding: 36px 28px;
  }

  /* --- Large Party: Builder CTA --- */
  .large-party-builder-cta {
    padding: 64px 40px;
  }

  .large-party-builder-cta h2 {
    font-size: 36px;
  }

  /* --- Large Party: Estimator --- */
  .large-party-estimator {
    padding: 64px 40px;
  }

  .large-party-estimator h2 {
    font-size: 36px;
  }

  .estimator-subtitle {
    font-size: 17px;
  }

  .estimator-section-title {
    font-size: 20px;
  }

  /* --- Large Party: Base Menu --- */
  .large-party-menu {
    padding: 64px 40px;
  }

  .large-party-menu h2 {
    font-size: 42px;
  }

  .party-menu-course {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .party-menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .party-menu-item {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .party-menu-item:nth-child(even) {
    border-right: none;
  }

  .party-menu-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .party-menu-includes {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .course-note {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Large Party: Upgrades & Drinks --- */
  .large-party-upgrades {
    padding: 64px 40px;
  }

  .large-party-upgrades h2 {
    font-size: 36px;
  }

  .upgrades-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
  }

  /* --- Large Party: Policies FAQ --- */
  .large-party-faq {
    padding: 64px 40px;
  }

  .large-party-faq h2 {
    font-size: 36px;
  }

  /* --- Large Party: Inquiry CTA --- */
  .large-party-inquiry {
    padding: 64px 40px;
  }

  .large-party-inquiry h2 {
    font-size: 36px;
  }

  .inquiry-contact-card {
    flex-direction: row;
    align-items: center;
    max-width: 560px;
    padding: 28px 32px;
  }

  .inquiry-contact-divider {
    width: 1px;
    height: 48px;
    flex-shrink: 0;
  }

  .inquiry-contact-method {
    flex: 1;
    justify-content: center;
  }

  /* --- Party Builder: Desktop --- */
  /* Party Builder Desktop Styles */
  .party-builder-header {
    padding: 140px 40px 64px;
  }

  .party-builder-header h1 {
    font-size: 48px;
    margin: 12px 0 20px;
  }

  .party-builder-subtitle {
    font-size: 18px;
  }

  .party-section {
    padding: 64px 40px;
  }

  .party-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .party-section-intro {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .party-menu-list {
    display: flex;
    flex-direction: column;
  }

  .party-card-actions {
    width: 160px;
  }

  /* Desktop estimate - sidebar */
  .party-estimate-mobile {
    display: none;
  }

  .party-estimate-desktop {
    display: block;
    position: fixed;
    top: 120px;
    right: 40px;
    width: 360px;
    z-index: 90;
  }

  .party-estimate-card {
    background: var(--dark);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .party-estimate-card h3 {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .party-estimate-card .party-estimate-breakdown {
    display: block;
  }

  /* Form */
  .party-form {
    padding: 64px 40px 120px;
  }

  .form-row-split {
    flex-direction: row;
  }

  .form-field {
    flex: 1;
  }

}
