/* ==========================================================================
   Willow Tea Room Venue Block - Consolidated & Mobile-First
   ========================================================================== */

/* 1. Container & Base Layout */
.wtr-section {
  background-color: #fff6ed;
  padding: 40px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

.wtr-section *,
.wtr-section *::before,
.wtr-section *::after {
  box-sizing: border-box;
}

.wtr-grid {
  color: #41231a;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 4%;
  justify-content: space-between;
}

.wtr-col {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 768px) {
  .wtr-col {
    flex: 1 1 48%;
  }
}

.wtr-col--media {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.wtr-col--content {
  display: flex;
  flex-direction: column;
}

.wtr-col--details,
.wtr-col--gallery {
  display: flex;
  flex-direction: column;
}

/* 2. Feature Hero Image */
.wtr-hero-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #fcc6a8;
  border-radius: 4px;
  overflow: hidden;
}

.wtr-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 3. Typography & Content */
.wtr-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #6d4339;
  margin-bottom: 24px;
}

.wtr-description p {
  margin: 0 0 14px 0;
}

.wtr-description p:last-child {
  margin-bottom: 0;
}

.wtr-eyebrow {
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f1662c;
}

.wtr-eyebrow--dark {
  color: #41231a;
}

.wtr-subheading {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #41231a;
}

.wtr-subheading--bordered {
  border-bottom: 2px solid #fcc6a8;
  padding-bottom: 8px;
}

/* 4. Specs & Capacity */
.wtr-specs {
  display: flex;
  border-top: 2px solid #fcc6a8;
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.wtr-specs-uses {
  flex: 1 1 180px;
}

.wtr-specs-capacity {
  flex: 1 1 140px;
}

.wtr-list-item-border {
  border-bottom: 1px solid rgba(65, 35, 26, 0.12);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.wtr-capacity-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.wtr-capacity-num {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #41231a;
}

.wtr-capacity-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6d4339;
}

/* 5. Call to Action Buttons */
.wtr-cta-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.wtr-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wtr-btn {
  flex: 1 1 160px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #f1662c;
  min-height: 48px;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 800;
  color: #41231a;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.wtr-btn:hover,
.wtr-btn:focus-visible {
  background-color: #f1662c;
  color: #ffffff;
  outline: 2px solid #41231a;
  outline-offset: 2px;
}

.wtr-btn:active {
  transform: scale(0.99);
}

/* 6. Facilities & Highlights */
.wtr-highlights {
  font-size: 14.5px;
  padding-left: 20px;
  line-height: 1.7;
  margin: 0 0 24px 0;
  color: #6d4339;
}

.wtr-facilities {
  display: flex;
  gap: 16px 24px;
  flex-wrap: wrap;
  color: #6d4339;
}

.wtr-facilities-col {
  flex: 1 1 140px;
  font-size: 14px;
}

.wtr-facilities-col div {
  border-bottom: 1px solid rgba(65, 35, 26, 0.12);
  padding: 8px 0;
}

/* 7. Gallery Slider */
.wtr-slider-container {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.wtr-slider {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 12px 16px;
  background-color: #fcc6a8;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(65, 35, 26, 0.15);
  scrollbar-width: none; /* Hide scrollbar for mobile/touch */
}

.wtr-slider::-webkit-scrollbar {
  display: none;
}

/* Scrollbar restore for fine pointer / desktop mouse users */
@media (pointer: fine) {
  .wtr-slider {
    scrollbar-width: thin;
    scrollbar-color: #f1662c #fcc6a8;
    padding-bottom: 8px;
  }

  .wtr-slider::-webkit-scrollbar {
    display: block;
    height: 8px;
  }

  .wtr-slider::-webkit-scrollbar-track {
    background: #fcc6a8;
    border-radius: 10px;
  }

  .wtr-slider::-webkit-scrollbar-thumb {
    background: #f1662c;
    border-radius: 10px;
    border: 2px solid #fcc6a8;
  }
}

.wtr-slide {
  flex: 0 0 85%;
  min-width: 85%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.wtr-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.wtr-swipe-hint {
  text-align: right;
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #41231a;
}

@media (pointer: fine) {
  .wtr-swipe-hint {
    display: none;
  }
}

/* ==========================================================================
   Events Directory & Cards Grid
   ========================================================================== */

.wtr-directory-section {
  background-color: #fff6ed;
  padding: 40px 20px;
  border-radius: 12px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

.wtr-directory-header {
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.wtr-directory-title {
  color: #41231a;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.wtr-directory-intro {
  color: #6d4339;
  line-height: 1.6;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.wtr-directory-subline {
  color: #f1662c;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

/* Cards Grid */
.wtr-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

/* Single Venue Card */
.wtr-card {
  flex: 1 1 300px;
  max-width: 380px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(65, 35, 26, 0.08);
  border: 1px solid rgba(65, 35, 26, 0.06);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Card Hover / Focus Effects */
.wtr-card:hover,
.wtr-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(65, 35, 26, 0.16);
  outline: none;
  text-decoration: none!important;
}

.wtr-card:hover *,
.wtr-card:focus-visible * {
  text-decoration: none!important;
}

/* Card Media & Image Zoom */
.wtr-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #fcc6a8;
}

.wtr-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wtr-card:hover .wtr-card-img,
.wtr-card:focus-visible .wtr-card-img {
  transform: scale(1.05);
}

.wtr-card-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(65, 35, 26, 0.92);
  color: #fff6ed;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

/* Card Body */
.wtr-card-body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.wtr-card-title {
  margin: 0 0 10px 0;
  color: #41231a;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.25;
}

.wtr-card-desc {
  margin: 0 0 20px 0;
  color: #555555;
  line-height: 1.55;
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Card Button Link */
.wtr-card-action {
  text-align: center;
  margin-top: auto;
}

.wtr-card-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background-color: #f1662c;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.wtr-card:hover .wtr-card-btn,
.wtr-card:focus-visible .wtr-card-btn {
  background-color: #d6511b;
}

/* ==========================================================================
   What's On & Event Feature Cards
   ========================================================================== */

/* Section Heading */
.wtr-section-title {
  font-family: plantinHeadlineMTPro, "plantinHeadlineMTPro Fallback", Georgia, serif;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 500;
  color: #12291f;
  text-transform: uppercase;
  margin: 40px 0 24px 0;
  line-height: 1.2;
  text-align: center;
}

/* Event Date Pill Badge */
.wtr-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #f1662c;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  z-index: 2;
}

/* Horizontal Featured Banner Card */
.wtr-featured-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 24px auto;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(18, 41, 31, 0.08);
  border: 1px solid rgba(18, 41, 31, 0.06);
  background: #ffffff;
  color: inherit;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .wtr-featured-card {
    flex-direction: row;
  }
}

.wtr-featured-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 41, 31, 0.14);
  text-decoration: none !important;
}

.wtr-featured-card:focus-visible * {
  text-decoration: none !important;
}

.wtr-featured-media {
  position: relative;
  flex: 1 1 45%;
  min-height: 240px;
  background-color: #fcc6a8;
  overflow: hidden;
}

.wtr-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wtr-featured-card:focus-visible .wtr-featured-img {
  transform: scale(1.03);
}

@media (hover: hover) {
  .wtr-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(18, 41, 31, 0.14);
    text-decoration: none !important;
  }

  .wtr-featured-card:hover * {
    text-decoration: none !important;
  }

  .wtr-featured-card:hover .wtr-featured-img {
    transform: scale(1.03);
  }
}

.wtr-featured-content {
  flex: 1 1 55%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  box-sizing: border-box;
}

.wtr-featured-title {
  margin: 0 0 12px 0;
  color: #12291f;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.25;
}

.wtr-featured-desc {
  margin: 0;
  color: #1b3c2e;
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .mx-auto.flex.w-full.max-w-\[1440px\] {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
  }

  section.wtr-directory-section {
    padding: 0 !important;
    margin: 0 !important;
  }

  .wtr-featured-card {
    margin-bottom: 16px;
    border-radius: 0;
  }

  .wtr-featured-media {
    flex: 1 1 auto;
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  .wtr-featured-content {
    padding: 20px;
  }

  .wtr-featured-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    line-height: 1.2;
  }

  .wtr-date-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}

/* ==========================================================================
   Hot Wings Challenge - Solid Flank Heat Ladder
   ========================================================================== */

.wtr-heat-ladder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.wtr-heat-card {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(65, 35, 26, 0.06);
  border: 1px solid rgba(65, 35, 26, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wtr-heat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(65, 35, 26, 0.12);
}

/* 1. Full-Height Solid Left Flank */
.wtr-heat-flank {
  width: 60px;
  min-width: 60px;
  background-color: var(--heat-color, #f1662c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  padding: 10px 4px;
  box-sizing: border-box;
}

.wtr-heat-badge-lbl {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 0.9;
}

.wtr-heat-badge-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  margin-top: 4px;
  color: #ffffff !important;
}

/* 2. Main Card Content */
.wtr-heat-content {
  flex: 1 1 auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.wtr-heat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.wtr-heat-name {
  font-size: 13.5px;
  font-weight: 900;
  color: #41231a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.wtr-heat-shu {
  font-size: 11.5px;
  font-weight: 900;
  color: var(--heat-color, #f1662c);
  white-space: nowrap;
}

.wtr-heat-sauce {
  font-size: 13.5px;
  font-weight: 600;
  color: #6d4339;
  line-height: 1.3;
}

/* 3. Thermal Color Levels */
.wtr-heat-card--lvl-1 { --heat-color: #2e7d32; }
.wtr-heat-card--lvl-2 { --heat-color: #7cb342; }
.wtr-heat-card--lvl-3 { --heat-color: #f59e0b; }
.wtr-heat-card--lvl-4 { --heat-color: #ea580c; }
.wtr-heat-card--lvl-5 { --heat-color: #dc2626; }
.wtr-heat-card--lvl-6 { 
  --heat-color: #7f1d1d; 
  background: linear-gradient(to right, #fff5f5, #ffffff);
  border-color: rgba(127, 29, 29, 0.25);
}

.wtr-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #6d4339;
  opacity: 0.85;
  margin-top: 12px;
}

/* ==========================================================================
   Halloween Campaign Theme: Midnight Blue (#00094a) & Spooky Yellow (#f1ea9a)
   ========================================================================== */

:root,
.hw-theme {
  --hw-primary: #00094a;
  --hw-accent: #f1ea9a;
  --hw-bg: #fff6ed;
  --hw-surface: #ffffff;
  --hw-text-dark: #101538;
  --hw-text-muted: #4b526d;
  --hw-border-subtle: rgba(0, 9, 74, 0.12);
  --hw-shadow: 0 4px 16px rgba(0, 9, 74, 0.08);
  --hw-shadow-hover: 0 10px 24px rgba(0, 9, 74, 0.16);
}

/* Base Container & Grid */
.hw-promo-section,
.hw-event-page {
  background-color: var(--hw-bg);
  padding: 40px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

.hw-promo-container,
.hw-event-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.hw-event-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 4%;
  justify-content: space-between;
}

.hw-event-col {
  flex: 1 1 100%;
  min-width: 280px;
}

@media (min-width: 768px) {
  .hw-event-col--media { flex: 1 1 44%; }
  .hw-event-col--content { flex: 1 1 52%; }
}

/* Editorial Typography */
.hw-editorial-header {
  max-width: 800px;
  margin: 0 0 36px 0;
  text-align: left;
}

.hw-eyebrow,
.hw-event-eyebrow {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hw-primary);
  margin-bottom: 8px;
}

.hw-headline,
.hw-event-title {
  color: var(--hw-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.18;
  margin: 0 0 16px 0;
}

.hw-body-copy p,
.hw-event-desc p {
  color: var(--hw-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 14px 0;
}

.hw-subline {
  color: var(--hw-primary) !important;
  font-weight: 900 !important;
  text-transform: uppercase;
  font-size: 0.95rem !important;
  letter-spacing: 0.8px;
  margin-top: 18px !important;
}

.hw-section-title {
  color: var(--hw-primary);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 40px 0 24px 0;
  text-align: left;
}

/* Button Component (Navy BG + Yellow Text) */
.hw-card-btn,
.wtr-btn.hw-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--hw-primary) !important;
  color: var(--hw-accent) !important;
  border: 2px solid var(--hw-primary) !important;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-radius: 6px;
  box-sizing: border-box;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin-top: auto;
}

.hw-event-card:hover .hw-card-btn,
.hw-card-btn:hover,
.wtr-btn.hw-btn:hover {
  background-color: var(--hw-accent) !important;
  color: var(--hw-primary) !important;
  border-color: var(--hw-primary) !important;
}

/* Side-by-Side Event Cards */
.hw-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.hw-event-card {
  flex: 1 1 300px;
  max-width: 380px;
  min-width: 280px;
  background: var(--hw-surface);
  border-radius: 12px;
  border: 1px solid var(--hw-border-subtle);
  box-shadow: var(--hw-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hw-event-card:hover,
.hw-event-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--hw-shadow-hover);
}

.hw-card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--hw-primary);
}

.hw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hw-event-card:hover .hw-card-img {
  transform: scale(1.04);
}

.hw-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.hw-card-pill {
  display: inline-block;
  background-color: var(--hw-primary);
  color: var(--hw-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.hw-card-title {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--hw-primary);
  line-height: 1.25;
}

.hw-card-desc {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--hw-text-muted);
  flex-grow: 1;
}

/* Event Detail Hero Media */
.hw-media-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--hw-primary);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--hw-shadow);
}

.hw-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Event Specs Block */
.hw-event-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 2px solid var(--hw-border-subtle);
  border-bottom: 2px solid var(--hw-border-subtle);
  padding: 20px 0;
  margin-bottom: 24px;
}

.hw-spec-item {
  flex: 1 1 130px;
}

.hw-spec-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--hw-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hw-spec-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hw-text-muted);
}

/* Costume / Callout Box */
.hw-costume-box {
  background: var(--hw-primary);
  border-left: 6px solid var(--hw-accent);
  border-radius: 6px;
  padding: 20px 24px;
  margin-bottom: 24px;
}

.hw-costume-heading {
  color: var(--hw-accent);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 6px 0;
}

.hw-costume-body {
  font-size: 13.5px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

/* Schedule / Highlight Cards */
.hw-schedule-section {
  flex: 1 1 100%;
  margin-top: 10px;
}

.hw-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.hw-schedule-card {
  background: var(--hw-surface);
  border-radius: 6px;
  padding: 16px 18px;
  border: 1px solid var(--hw-border-subtle);
  box-shadow: var(--hw-shadow);
}

.hw-schedule-time {
  font-size: 11px;
  font-weight: 900;
  color: var(--hw-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.hw-schedule-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--hw-primary);
  margin: 0 0 4px 0;
}

.hw-schedule-desc {
  font-size: 12.5px;
  color: var(--hw-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Degustation Menu Component */
.hw-menu-section {
  flex: 1 1 100%;
  margin-top: 24px;
}

.hw-menu-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 2px solid var(--hw-primary);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.hw-menu-title {
  color: var(--hw-primary);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.hw-menu-subtitle {
  color: var(--hw-primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
}

.hw-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px 32px;
}

.hw-menu-item {
  border-bottom: 1px solid var(--hw-border-subtle);
  padding-bottom: 14px;
}

.hw-menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.hw-menu-course {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--hw-primary);
}

.hw-dietary-tags {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--hw-primary);
  background: rgba(0, 9, 74, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
}

.hw-menu-dish {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--hw-primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 4px 0;
}

.hw-menu-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--hw-text-muted);
  margin: 0;
}
