/* ===== RESET & CUSTOM PROPERTIES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Black & White palette */
  --pine: #000000;
  --pine-light: #333333;
  --cream: #ffffff;
  --cream-dark: #f2f2f2;
  --gold: #000000;
  --gold-hover: #333333;
  --charcoal: #000000;
  --charcoal-light: #444444;
  --charcoal-muted: #777777;

  /* CTA & accent — all black */
  --cta-red: #2B2B2B;
  --cta-red-hover: #333333;
  --brown-accent: #2B2B2B;
  --forest-green: #2B2B2B;

  /* Activity-specific — all black */
  --sports-green: #2B2B2B;
  --sports-orange: #2B2B2B;
  --sports-blue: #000000;

  /* Footer backgrounds */
  --footer-main: #2B2B2B;
  --footer-green: #2B2B2B;
  --footer-restaurant: #2B2B2B;

  /* Legacy aliases */
  --midnight: #000000;
  --summit: #333333;
  --alpine: #333333;
  --golden-hour: #000000;
  --ember: #333333;
  --pine-shadow: #000000;
  --cloud-drift: #f2f2f2;
  --snow-cap: #ffffff;
  --granite: #444444;
  --twilight: #000000;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: var(--gold);
  color: white;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageLoad 0.5s cubic-bezier(0, 0, 0.2, 1) both;
}

@keyframes pageLoad {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

ul {
  list-style: none;
}

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

/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  background: whitesmoke;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo,
.header-logo {
  font-family: 'DM Sans', sans-serif;
  color: var(--pine);
  font-size: 1rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.logo-discover {
  font-weight: 700;
}

.logo-cloudcroft {
  font-weight: 500;
  opacity: 0.75;

}

.header-logo span {
  color: var(--gold);
}

.logo-beta {
  font-size: 0.55em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0, 0, 0, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  opacity: 0.75;
}

/* Nav */
.main-nav,
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a,
.header-nav a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--charcoal);
  opacity: 0.85;
  transition: opacity 0.3s ease, color 0.3s ease;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.main-nav a:hover,
.main-nav a:focus,
.header-nav a:hover,
.header-nav a:focus {
  opacity: 1;
  color: var(--pine);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* Phone link */
.phone-link,
.nav-phone,
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--pine);
  opacity: 0.9;
  text-decoration: none;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.phone-link:hover,
.nav-phone:hover,
.header-phone:hover {
  opacity: 1;
}

.phone-link svg,
.nav-phone svg,
.header-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--pine);
}

.header-phone {
  border: 1px solid var(--pine);
  padding: 0.4rem 1rem;
  border-radius: 10px;
}

.header-phone:hover {
  background: var(--pine);
  color: white;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ===== MOBILE NAV ===== */
.mobile-nav-overlay,
.mobile-menu,
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav-overlay.open,
.mobile-menu.open,
.mobile-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-overlay a,
.mobile-menu a,
.mobile-overlay a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover,
.mobile-menu a:hover,
.mobile-overlay a:hover {
  color: var(--pine);
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1040;
}

.mobile-nav-backdrop.open {
  display: block;
}

/* ===== HERO (common base) ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay,
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
}

.hero-title,
.hero-headline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

/* ===== COMMON ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  background: var(--cta-red);
  color: white;
  border: 2px solid var(--cta-red);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, color 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  min-height: 44px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--cta-red-hover);
  border-color: var(--cta-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: white;
  border: 2px solid var(--gold);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}

/* ===== SECTION UTILITIES ===== */
.section {
  padding: 6rem 2rem;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.section-header p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--charcoal-light);
  font-size: 1.05rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pine-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-title-centered {
  text-align: center;
  padding-bottom: 1.25rem;
}

.section-title-centered::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-main);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 4px;
  position: relative;
}

/* Green-themed pages (about, contact, etc.) */
.site-footer.footer-green {
  background: var(--footer-green);
}

/* Restaurant pages */
.site-footer.footer-restaurant {
  background: var(--footer-restaurant);
}

.footer-gradient-border {
  height: 4px;
  background: linear-gradient(90deg, #000000, #666666, #000000, #666666);
  background-size: 300% 100%;
  animation: footerBorderMorph 6s ease infinite;
}

@keyframes footerBorderMorph {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo,
.footer-brand .header-logo {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: white;
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-icons,
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-icons a,
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.social-icons a:hover,
.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.social-icons a svg,
.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}

.social-icons a:hover svg,
.footer-social a:hover svg {
  fill: white;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul li a,
.footer-col p,
.footer-col a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-col ul li a:hover,
.footer-col a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  z-index: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* ===== STAT ITEMS ===== */
.stat-number {
  font-family: 'DM Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  display: block;
}

.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--charcoal-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .main-nav,
  .header-nav {
    display: none;
  }

  .phone-link,
  .nav-phone,
  .header-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 375px) {
  .section-container {
    padding: 0 1rem;
  }

  .site-header {
    padding: 1rem;
  }

  .site-header.scrolled {
    padding: 0.6rem 1rem;
  }

  .btn-primary,
  .btn-outline {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
}

/* ===== HERO (extended) ===== */
.hero {
  height: 65vh;
  min-height: 450px;
}

.hero-bg {
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #333333 50%, #000000 100%);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurnsExtended {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-1%, -1%);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-badge span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: wordReveal 0.6s ease forwards;
}

.hero-title .word:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-title .word:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-title .word:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-title .word:nth-child(4) {
  animation-delay: 0.8s;
}

.hero-title .word:nth-child(5) {
  animation-delay: 1.0s;
}

.hero-title .word:nth-child(6) {
  animation-delay: 1.2s;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

/* ===== BUTTONS (extended) ===== */
.btn-secondary {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.9rem 2.25rem;
  border-radius: 10px;
  text-decoration: none;
  background: #ffffff;
  color: var(--pine);
  border: 2px solid var(--pine);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s, color 0.3s;
  min-height: 44px;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--pine);
  color: white;
  transform: translateY(-2px);
}

/* ===== INFO BAR ===== */
.info-bar {
  background: var(--cream-dark);
  padding: 1.5rem 2rem;
}

.info-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 500;
}

.info-bar-item a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}

.info-bar-item a:hover {
  color: var(--pine);
}

.info-bar-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ===== SECTION DESCRIPTION ===== */
.section-description {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ===== ABOUT GRID ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: var(--cream-dark);
  color: var(--pine);
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, var(--cream-dark) 0%, rgba(0, 0, 0, 0.06) 100%);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-placeholder {
  text-align: center;
  padding: 2rem;
}

.about-image-placeholder .icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.about-image-placeholder p {
  color: var(--charcoal-light);
  font-weight: 500;
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: var(--cream-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--gold);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.menu-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.3s;
}

.menu-card:nth-child(2).visible {
  transition-delay: 0.1s;
}

.menu-card:nth-child(3).visible {
  transition-delay: 0.2s;
}

.menu-card:nth-child(4).visible {
  transition-delay: 0.3s;
}

.menu-card:nth-child(5).visible {
  transition-delay: 0.4s;
}

.menu-card:nth-child(6).visible {
  transition-delay: 0.5s;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.menu-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.menu-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.menu-card>p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.menu-items {
  list-style: none;
  margin-top: 1rem;
}

.menu-items li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  color: var(--charcoal);
  font-size: 0.95rem;
}

.menu-items li:last-child {
  border-bottom: none;
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights-section {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.highlights-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0, 0, 0, 0.3) 40px, rgba(0, 0, 0, 0.3) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0, 0, 0, 0.3) 40px, rgba(0, 0, 0, 0.3) 41px);
  pointer-events: none;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.highlight-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.highlight-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1), background 0.3s;
}

.highlight-card:nth-child(2).visible {
  transition-delay: 0.1s;
}

.highlight-card:nth-child(3).visible {
  transition-delay: 0.2s;
}

.highlight-card:hover {
  transform: translateY(-6px);
  background: rgba(0, 0, 0, 0.08);
}

.highlight-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--pine);
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== VISITING SECTION ===== */
.visiting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.visiting-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gold);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.visiting-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1), box-shadow 0.3s;
}

.visiting-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.visiting-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.visiting-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.visiting-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--cream-dark);
  padding: 6rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-container h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.cta-container p {
  color: var(--charcoal-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1);
}

/* ===== COMPONENT RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

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

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

  .info-bar-inner {
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
    transform: none;
  }

  .hero-gradient-overlay,
  .hero-overlay {
    animation: none;
  }
}