/* ============================================
   PARKGROUNDS CAFE — Retro Warm Stylesheet
   Fun, casual, neighborhood cafe in Atlanta
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Strict palette — 7 colors only */
  --color-green: #5A5123;
  --color-red: #E83D47;
  --color-orange: #ED6934;
  --color-yellow: #FBEC74;
  --color-cream: #F7F4B6;
  --color-black: #030304;
  --color-white: #FFFFFF;

  /* Semantic mappings (only from the 7 above) */
  --color-bg: var(--color-cream);
  --color-surface: var(--color-white);
  --color-text-dark: var(--color-black);
  --color-text-body: var(--color-black);
  --color-text-muted: var(--color-green);
  --color-accent: var(--color-orange);
  --color-border: rgba(90, 81, 35, 0.15);

  /* Retro typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-label: 'Space Mono', 'Courier New', monospace;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 90px;
  --section-padding: 100px 0;
  --section-padding-mobile: 64px 0;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-soft: 0 4px 20px rgba(3, 3, 4, 0.08);
  --shadow-card: 0 2px 12px rgba(3, 3, 4, 0.12);
  --shadow-hover: 0 8px 32px rgba(3, 3, 4, 0.16);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-body);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Logo images need explicit sizing — override global img reset */
.nav-logo img {
  max-width: none;
  height: 60px;
  width: auto;
}
.mobile-header .mobile-header-logo img {
  max-width: none;
  height: 56px;
  width: auto;
}
.mobile-menu-header .mobile-header-logo img {
  max-width: none;
  height: 56px;
  width: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  color: var(--color-text-dark);
  line-height: 1.15;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-orange);
  line-height: 1.6;
}

.section-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  display: block;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  color: var(--color-text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-primary:hover {
  background: #ffffff;
  color: var(--color-text-dark);
}

.btn-cta {
  background: var(--color-red);
  color: #ffffff;
  border: 2px solid var(--color-red);
}

.btn-cta:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

/* Green hover variant */
.nav-cta.btn-cta:hover,
.btn-green-hover:hover {
  background: var(--color-green) !important;
  border-color: var(--color-green) !important;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  background: var(--color-red);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-red);
}

.btn-arrow:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

.btn-arrow img {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
  filter: brightness(0) invert(1);
}

.btn-arrow:hover img {
  transform: translateX(4px);
}

/* Outline variant */
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-red);
  color: var(--color-red);
}

.btn-outline:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #ffffff;
}

/* --- Navigation — Desktop --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 60px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FEFFE5;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--color-text-body);
  position: relative;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--color-orange);
  background: var(--color-yellow);
}

.nav-links a.active {
  color: var(--color-red);
}

/* No underline effect on nav links */

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-body);
  transition: all var(--transition);
}

.nav-social:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: var(--color-yellow);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.65rem;
}

/* More dropdown */
.nav-more {
  position: relative;
}

.nav-more-trigger {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--color-text-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-more-trigger:hover {
  color: var(--color-orange);
  background: var(--color-yellow);
}

.nav-more-trigger .chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -3px;
}

.nav-more.open .chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.nav-more.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-body);
  border-radius: var(--radius-sm);
}

.nav-dropdown a:hover {
  background: var(--color-yellow);
  color: var(--color-orange);
}

/* --- Mobile Header --- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2500;
  height: 72px;
  padding: 0 20px;
  background: #FEFFE5;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
}

.mobile-header.menu-open {
  background: var(--color-white);
  border-bottom-color: transparent;
}

.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--color-red);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger:hover span {
  background: var(--color-orange);
}

/* Animated X state */
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

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

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.mobile-menu-items {
  padding: 88px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-red);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu-link:hover {
  background: var(--color-yellow);
  color: var(--color-orange);
}

.mobile-menu-icon {
  width: 42px;
  height: 42px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-menu-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-orange);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 20px 24px;
  padding: 16px 32px;
  flex-shrink: 0;
  background: var(--color-red);
  color: #ffffff;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
}

.mobile-menu-cta:hover {
  background: var(--color-orange);
  color: #ffffff;
}

.mobile-menu-footer {
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.mobile-menu-social {
  display: flex;
  gap: 20px;
  align-items: center;
}

.mobile-menu-social a {
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
}

.mobile-menu-social a:hover {
  color: var(--color-orange);
}

.mobile-menu-phone {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-green);
  text-decoration: none;
}

.mobile-menu-phone:hover {
  color: var(--color-red);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--nav-height);
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(3, 3, 4, 0.3) 0%,
    rgba(3, 3, 4, 0.5) 50%,
    rgba(3, 3, 4, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  margin-top: -60px;
}

.hero-logo {
  width: clamp(280px, 45vw, 520px);
  height: auto;
  animation: heroZoomIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-tagline {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

/* Hero button hover: Order Online = red, Gift Card = green */
.hero-buttons .btn-primary:first-child:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #ffffff;
}

.hero-buttons .btn-primary:last-child:hover {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #ffffff;
}

/* --- Brand Intro --- */
.brand-intro {
  text-align: center;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
}

.brand-intro .container {
  position: relative;
  z-index: 1;
}

.brand-intro .logo-small {
  width: 280px;
  margin: 0 auto 24px;
  opacity: 0.9;
}

.brand-intro .eyebrow {
  margin-bottom: 16px;
  display: block;
}

.brand-intro h1 {
  margin: 0 auto 24px;
  max-width: 750px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
}

.brand-intro p {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--color-text-body);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Video Row --- */
.video-row {
  padding: 48px 0;
  overflow: hidden;
  background: var(--color-cream);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  padding: 0;
  max-width: 900px;
  margin: 64px auto 0;
  align-items: center;
}

.video-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 14;
  box-shadow: var(--shadow-card);
}

.video-tile-lg {
  aspect-ratio: 9 / 12;
}

.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Menu Preview --- */
.menu-preview {
  padding: var(--section-padding);
  background: var(--color-white);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(transparent, rgba(3, 3, 4, 0.9));
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  color: #ffffff;
}

/* --- Order Online Promo --- */
.order-promo {
  padding: var(--section-padding);
  text-align: center;
  background: var(--color-cream);
  color: var(--color-text-dark);
  position: relative;
  overflow: hidden;
}

/* Tree silhouettes — green left, red right */
.order-promo::before,
.order-promo::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 120%;
  width: 700px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  z-index: 0;
}

.order-promo::before {
  left: 0;
  transform: translateY(-50%) translateX(-70%);
  background-image: url('../../assets/images/tree-green.png');
}

.order-promo::after {
  right: 0;
  transform: translateY(-50%) translateX(70%);
  background-image: url('../../assets/images/tree-red.png');
}

.order-promo > .container {
  position: relative;
  z-index: 1;
}

/* Mobile trees — hidden on desktop */
.order-promo-trees-mobile {
  display: none;
}

.order-promo .eyebrow {
  color: var(--color-green);
}

.order-promo h2 {
  color: var(--color-text-dark);
}

.order-promo p {
  color: var(--color-text-body);
}

.order-promo .btn-cta {
  background: var(--color-red);
  color: #ffffff;
  border-color: var(--color-red);
}

.order-promo .btn-cta:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

/* --- Happenings Section --- */
.happenings {
  padding: var(--section-padding);
  background: #FEFFE5;
}

.events-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}

.events-carousel .carousel-btn {
  z-index: 2;
  flex-shrink: 0;
  background: var(--color-red);
  border-color: var(--color-red);
}

.events-carousel .carousel-btn img {
  filter: brightness(0) invert(1);
}

.events-carousel .carousel-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.events-track-wrapper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  margin: -20px 0;
  padding: 20px 0;
}

.events-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.events-grid .event-card {
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  flex-shrink: 0;
}

.events-grid-static {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  transform: none !important;
  overflow: visible;
}

.events-grid-static .event-card {
  min-width: unset !important;
  max-width: unset !important;
}

.event-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.event-card-image {
  aspect-ratio: 1;
  overflow: hidden;
}

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

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

.event-card-body {
  padding: 28px;
}

.event-card-body h3 {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.event-card-body .event-date {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-red);
  margin-bottom: 10px;
}

.event-card-body p {
  color: var(--color-text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Carousel nav */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}

.carousel-btn img {
  width: 14px;
  height: 14px;
}

.carousel-btn:hover {
  background: var(--color-orange);
}

.carousel-btn:hover img {
  filter: brightness(0) invert(1);
}

.carousel-btn.prev img {
  transform: rotate(180deg);
}

/* --- Location / Info --- */
.location-section {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../../assets/images/logo-tree-red.png') -20px center / 33% auto no-repeat var(--color-white);
}

.location-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-orange);
  opacity: 0.7;
  z-index: 0;
}

.location-section .container {
  position: relative;
  z-index: 1;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 66%;
  margin: 0 0 0 auto;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.location-info .botanical {
  width: 200px;
  flex-shrink: 0;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
}

.location-details .eyebrow {
  font-size: 0.85rem;
}

.location-details a,
.location-details p {
  font-size: 1.05rem;
}

.location-info .eyebrow {
  margin-bottom: 4px;
}

.location-info a {
  color: var(--color-orange);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(237, 105, 52, 0.3);
}

.location-info a:hover {
  text-decoration-color: var(--color-orange);
}

/* --- Reviews Section --- */
.reviews {
  padding: var(--section-padding);
  overflow: hidden;
  background: var(--color-cream);
}

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  overflow: visible;
}

.reviews-carousel .carousel-btn {
  z-index: 2;
  flex-shrink: 0;
  background: var(--color-red);
  border-color: var(--color-red);
}

.reviews-carousel .carousel-btn img {
  filter: brightness(0) invert(1);
}

.reviews-carousel .carousel-btn:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.reviews-track-wrapper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  padding: 8px 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.review-card {
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  flex-shrink: 0;
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-stars-row {
  color: var(--color-green);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.review-name {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.review-divider {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-green);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.review-text {
  color: var(--color-text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: #FEFFE5;
  color: var(--color-black);
  padding: 80px 60px 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

/* Left side */
.footer-left .footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.footer-tagline {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-black);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-left .footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 380px;
  color: var(--color-black);
}

.footer-left .footer-address {
  display: block;
  font-size: 0.85rem;
  color: var(--color-green);
  margin-bottom: 20px;
  transition: color var(--transition);
}

.footer-left .footer-address:hover {
  color: var(--color-red);
}

.footer-left .footer-order {
  margin-top: 0;
}

.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.footer-right h4 {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-black);
  margin-bottom: 12px;
  font-weight: 400;
}

.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}

.footer-nav-col a {
  display: block;
  font-size: 0.9rem;
  padding: 4px 0;
  color: var(--color-red);
  font-weight: 600;
  transition: color var(--transition);
}

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

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-red);
  transition: color var(--transition);
}

.footer-social-icons a:hover {
  color: var(--color-orange);
}

.footer-sub-heading {
  margin-top: 24px;
  margin-bottom: 12px !important;
}

.footer-nav-col .footer-phone {
  display: block;
  font-size: 0.9rem;
  color: var(--color-red);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-nav-col .footer-phone:hover {
  color: var(--color-orange);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(3, 3, 4, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-green);
}

.footer-bottom a {
  color: var(--color-green);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-red);
}

/* --- Page Header (subpages) --- */
.page-header {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}

.page-header-white {
  background: var(--color-white);
  border-bottom: none;
}

/* White page override */
.page-white {
  background: var(--color-white);
}

.page-header .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.page-header h1 {
  margin-bottom: 8px;
}

.page-header .subtitle {
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

/* --- Menu Page --- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  position: sticky;
  top: var(--nav-height);
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.menu-tab {
  font-family: var(--font-label);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  color: var(--color-text-body);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-weight: 700;
}

.menu-tab:hover,
.menu-tab.active {
  border-color: var(--color-red);
  color: #ffffff;
  background: var(--color-red);
}

.menu-section {
  padding: 64px 0;
  scroll-margin-top: calc(var(--nav-height) + 60px);
}

.menu-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.menu-section .menu-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 36px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.menu-item {
  background: var(--color-surface);
  border: 1px solid var(--color-red);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition);
  overflow: hidden;
}

.menu-item-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
}

.menu-item-img.menu-item-img-sm {
  max-height: 200px;
  object-fit: contain;
}

.menu-item:hover {
  box-shadow: var(--shadow-soft);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.menu-item-price {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-red);
  white-space: nowrap;
}

.menu-item-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --- Contact Form --- */
.contact-form-section {
  padding: 0 0 100px;
  background: #FEFFE5;
}

.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.contact-intro .eyebrow {
  margin-bottom: 12px;
  display: block;
}

.contact-intro h2 {
  margin-bottom: 16px;
}

.contact-intro p {
  color: var(--color-text-body);
  line-height: 1.7;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(237, 105, 52, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-red);
}

.form-group .error-msg {
  color: var(--color-red);
  font-size: 0.75rem;
  display: none;
}

.form-group input.error ~ .error-msg,
.form-group textarea.error ~ .error-msg {
  display: block;
}

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

.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-success {
  background: var(--color-yellow);
  color: var(--color-green);
  border: 1px solid var(--color-green);
}

.form-error {
  background: var(--color-cream);
  color: var(--color-red);
  border: 1px solid var(--color-red);
}

/* --- Gift Card Image --- */
.gift-card-image {
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.gift-card-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

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

/* --- Placeholder Page --- */
.placeholder-content {
  text-align: center;
  padding: 80px 24px;
}

.placeholder-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 16px;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 900px) {
  /* Order Online — hide pseudo trees, show inline trees */
  .order-promo::before,
  .order-promo::after {
    display: none;
  }

  .order-promo-trees-mobile {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .category-cards {
    grid-template-columns: repeat(3, 1fr);
  }



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

  .footer {
    padding: 60px 24px 32px;
  }

  .video-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  section {
    padding: var(--section-padding-mobile);
  }

  body {
    padding-top: 72px;
  }

  .hero {
    margin-top: -60px;
    min-height: 85vh;
  }

  .hero-logo {
    width: clamp(220px, 65vw, 320px);
  }

  .location-section {
    background-position: center center !important;
    background-size: 100% auto !important;
    padding: 80px 16px;
  }

  .location-info {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    width: 90%;
    margin: 0 auto;
    background: var(--color-white);
  }

  .location-info .botanical {
    width: 120px;
  }

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

  .events-grid .event-card {
    min-width: 100%;
    max-width: 100%;
  }

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

  .events-grid-static .event-card {
    min-width: unset !important;
    max-width: unset !important;
  }

  .review-card {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .video-grid .video-tile:not(.video-tile-lg) {
    display: none;
  }

  .video-tile {
    aspect-ratio: 9 / 10 !important;
  }

  .category-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .category-card {
    height: 250px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-header {
    padding: calc(60px + 40px) 0 40px;
  }

  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    top: 60px;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

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

  /* Event dates smaller on mobile */
  .event-card-body .event-date {
    font-size: 0.95rem;
  }

  /* Location — hide bg logo on mobile */
  .location-section {
    background: var(--color-orange) !important;
    background-image: none !important;
    background-position: unset !important;
    background-size: unset !important;
  }

  .location-section::before {
    display: none !important;
  }

  /* Category labels bigger on mobile */
  .category-card-label {
    font-size: 1.2rem !important;
    letter-spacing: 0.1em;
  }

  /* Hero buttons — more space below logo */
  .hero-buttons {
    margin-top: 24px;
  }

  .tree-mobile {
    width: 140px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .category-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    padding: 0 32px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  cursor: default;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover {
  opacity: 1;
}
.event-card-image img {
  cursor: zoom-in;
}
