:root {
  --color-wood-dark: #3E2723;
  --color-wood: #5D4037;
  --color-wood-medium: #6D4C41;
  --color-wood-light: #8D6E63;
  --color-wood-pale: #A1887F;
  --color-cream: #FFF8E1;
  --color-cream-dark: #F5F0E8;
  --color-warm-white: #FDFBF7;
  --color-warm-gray: #EFEBE9;
  --color-forest: #2E7D32;
  --color-forest-light: #4CAF50;
  --color-forest-dark: #1B5E20;
  --color-gold: #C49A3C;
  --color-gold-light: #D4AF5C;
  --color-text: #3E2723;
  --color-text-light: #5D4037;
  --color-text-muted: #8D6E63;
  --color-white: #FFFFFF;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  --container-width: 1200px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  --overlay-dark: rgba(62, 39, 35, 0.5);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-10: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-wood);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--color-gold); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-wood-dark);
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; font-size: 1rem; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section-subtitle {
  font-family: var(--font-accent);
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 1.2rem auto;
  border: none;
}

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

.section-header p {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--color-text-light);
}

.mobile-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-wood-dark);
  height: 36px;
  border-bottom: 1px solid var(--white-10);
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-gold-light) !important;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0 20px;
  height: 100%;
  transition: var(--transition);
  text-decoration: none !important;
}

.mobile-contact-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white) !important;
}

.mobile-contact-link svg { flex-shrink: 0; }
.mobile-contact-link span { display: none; }

@media (min-width: 400px) {
  .mobile-contact-link span { display: inline; }
}

.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: rgba(62, 39, 35, 0.95);
}

.navbar.scrolled {
  background: rgba(62, 39, 35, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-brand .brand-logo {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: height 0.3s ease;
}

.navbar.scrolled .brand-logo { height: 36px; }

.navbar-brand .logo-text {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.navbar-brand .logo-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-gold-light);
}

@media (max-width: 768px) {
  .navbar-brand .brand-logo { height: 34px; }
}

.nav-links {
  position: fixed;
  top: 36px;
  right: -100%;
  width: 280px;
  height: 100dvh;
  background: var(--color-wood-dark);
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 30px;
  gap: 4px;
  transition: right 0.3s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  overflow-y: auto;
}

.nav-links.active { right: 0; }

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-contact { display: none; }

.nav-phone {
  color: var(--color-gold-light) !important;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}

.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); }

.hero, .page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero {
  height: 100dvh;
  min-height: 500px;
}

.page-hero {
  height: 40vh;
  min-height: 280px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(62, 39, 35, 0.3) 0%,
    var(--overlay-dark) 50%,
    rgba(62, 39, 35, 0.7) 100%);
}

.page-hero .hero-bg::after {
  background: linear-gradient(180deg,
    rgba(62, 39, 35, 0.4) 0%,
    rgba(62, 39, 35, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 20px;
}

.hero-accent,
.page-hero .hero-accent {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  color: var(--color-gold-light);
  margin-bottom: 0.8rem;
  display: block;
  position: relative;
  z-index: 2;
}

.hero h1,
.page-hero h1 {
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.page-hero h1 { font-size: 1.8rem; }

.hero p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  opacity: 0.7;
  animation: bounce 2s infinite;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll svg {
  display: block;
  margin: 6px auto 0;
  width: 22px;
  height: 22px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 154, 60, 0.3);
}

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

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

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

.btn-wood:hover {
  background: var(--color-wood-dark);
  border-color: var(--color-wood-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

.section { padding: 60px 0; }
.section-alt { background: var(--color-cream-dark); }

.section-dark {
  background: var(--color-wood-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 { color: var(--color-white); }
.section-dark p { color: rgba(255, 255, 255, 0.85); }

.features-grid,
.event-cards,
.activity-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.activity-list { gap: 16px; }

.feature-card,
.event-card,
.icon-card,
.activity-item {
  background: var(--color-white);
  border-radius: 8px;
  transition: var(--transition);
}

.feature-card,
.event-card,
.icon-card {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.activity-item {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.feature-card:hover,
.event-card:hover,
.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.activity-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card { overflow: hidden; }

.feature-card-img {
  height: 200px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.feature-card-body { padding: 24px; }
.feature-card-body h3 { margin-bottom: 0.75rem; }

.feature-card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.feature-card-body .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.icon-card {
  text-align: center;
  padding: 30px 20px;
}

.icon-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.icon-card h4 { margin-bottom: 0.5rem; }
.icon-card p { color: var(--color-text-muted); font-size: 0.9rem; }

.split {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.split-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.split-text h2 { margin-bottom: 1rem; }
.split-text .section-subtitle { margin-bottom: 0.5rem; }
.split-text p { color: var(--color-text-light); }

.opening-banner {
  background: var(--color-wood);
  color: var(--color-white);
  padding: 30px 0;
  text-align: center;
}

.opening-banner h3 {
  color: var(--color-gold-light);
  margin-bottom: 8px;
  font-family: var(--font-accent);
  font-size: 1.4rem;
}

.opening-banner p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62, 39, 35, 0);
  transition: var(--transition);
}

.gallery-item:hover::after { background: rgba(62, 39, 35, 0.2); }
.gallery-grid .gallery-featured { grid-column: 1 / -1; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 16px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2001;
  opacity: 0.7;
  transition: var(--transition);
}

.lightbox-close:hover { opacity: 1; }

.quote-section {
  text-align: center;
  padding: 50px 0;
  background: var(--color-cream);
}

.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-wood);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 16px;
}

.quote-section cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-wood);
}

.contact-info-item h4 { margin-bottom: 4px; }

.contact-info-item p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.footer {
  background: var(--color-wood-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-about .footer-logo {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-about .logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.footer-about .logo-sub {
  font-family: var(--font-accent);
  color: var(--color-gold-light);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 14px;
}

.footer-about p { font-size: 0.9rem; line-height: 1.6; }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }

.footer-links a,
.footer-contact a {
  color: var(--white-70);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--color-gold-light); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.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;
  color: var(--white-70);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  margin-left: 16px;
}

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

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

.menu-category h3 {
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-warm-gray);
}

.menu-item-name { font-weight: 600; color: var(--color-wood-dark); }

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.menu-item-price {
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
  margin-left: 16px;
}

.menu-note {
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 30px;
  padding: 20px;
  background: var(--color-cream);
  border-radius: 8px;
}

.menu-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0 60px;
}

.menu-showcase-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.menu-showcase-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-showcase-card .body {
  padding: 16px 18px 20px;
}

.menu-showcase-card .body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-wood-dark);
  margin: 0 0 6px;
}

.menu-showcase-card .body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 10px;
  line-height: 1.5;
}

.menu-showcase-card .price {
  display: inline-block;
  font-weight: 700;
  color: var(--color-gold);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 20px 0 36px;
  border-bottom: 2px solid var(--color-warm-gray);
  flex-wrap: wrap;
}

.menu-tab {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 14px 28px;
  margin-bottom: -2px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border-radius: 8px 8px 0 0;
}

.menu-tab:hover {
  color: var(--color-wood-dark);
  background: var(--color-cream);
}

.menu-tab.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

.menu-item-desc-inline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
  margin-left: 6px;
}

.event-card {
  padding: 30px 20px;
  text-align: center;
  border-top: 4px solid var(--color-gold);
}

.event-card .icon { font-size: 2.2rem; margin-bottom: 16px; }
.event-card h3 { margin-bottom: 10px; }
.event-card p { color: var(--color-text-light); font-size: 0.9rem; }

.capacity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}

.capacity-item { padding: 20px; }

.capacity-item .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.capacity-item .label { font-size: 0.95rem; color: var(--color-text-light); }

.activity-item {
  display: flex;
  gap: 14px;
  padding: 20px;
}

.activity-item .icon { font-size: 1.6rem; min-width: 36px; }
.activity-item h4 { margin-bottom: 2px; }
.activity-item p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

.legal-content { max-width: 800px; margin: 0 auto; }

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.legal-content ul { padding-left: 20px; margin-bottom: 1rem; }

.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in { transform: translateY(25px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

@media (min-width: 600px) {
  .container { padding: 0 24px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  .hero h1 { font-size: 2.8rem; }
  .hero-accent { font-size: 1.4rem; }
  .page-hero h1 { font-size: 2.2rem; }
  .page-hero { height: 45vh; min-height: 300px; }
  .section { padding: 80px 0; }
  .section-subtitle { font-size: 1.4rem; }
  .quote-section blockquote { font-size: 1.4rem; }

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

  .activity-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .gallery-grid .gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .split-img img { height: 320px; }
  .capacity-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 960px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.6rem; }
  p { font-size: 1.05rem; }
  .hero h1 { font-size: 3.8rem; }
  .hero-accent { font-size: 1.8rem; }
  .hero p { font-size: 1.15rem; }
  .page-hero { height: 50vh; min-height: 350px; }
  .page-hero h1 { font-size: 3rem; }
  .section { padding: 100px 0; }
  .section-header { margin-bottom: 60px; }
  .section-header p { font-size: 1.1rem; }
  .section-subtitle { font-size: 1.5rem; }
  .btn { padding: 14px 36px; font-size: 1rem; }

  .mobile-contact-bar { display: none; }

  .navbar { top: 0; padding: 20px 0; }
  .navbar.scrolled { padding: 12px 0; }
  .navbar-brand .logo-text { font-size: 1.4rem; }
  .navbar-brand .logo-sub { font-size: 0.85rem; }

  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 4px;
    box-shadow: none;
    overflow: visible;
  }

  .nav-links a { padding: 8px 14px; font-size: 0.95rem; }
  .hamburger { display: none; }
  .nav-contact { display: flex; align-items: center; gap: 12px; }

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

  .split-reverse { direction: rtl; }
  .split-reverse > * { direction: ltr; }
  .split-img img { height: 400px; }

  .features-grid,
  .event-cards { grid-template-columns: repeat(3, 1fr); gap: 30px; }

  .activity-list { grid-template-columns: repeat(4, 1fr); gap: 24px; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .map-container { min-height: 400px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer { padding: 60px 0 0; }
  .feature-card-img { height: 220px; }
  .feature-card-body { padding: 30px; }
  .icon-card { padding: 40px 30px; }
  .icon-card .icon { width: 70px; height: 70px; font-size: 1.8rem; }
  .opening-banner { padding: 40px 0; }
  .opening-banner h3 { font-size: 1.6rem; }
  .opening-banner p { font-size: 1.1rem; }
  .quote-section { padding: 80px 0; }
  .quote-section blockquote { font-size: 1.8rem; }
  .capacity-item .number { font-size: 3rem; }
  .hero-bg { background-attachment: fixed; }

  .legal-content h2 { font-size: 1.6rem; margin-top: 40px; }
  .legal-content h3 { font-size: 1.2rem; margin-top: 25px; }
  .legal-content p, .legal-content li { font-size: 0.95rem; }
}

@media (min-width: 1200px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.8rem; }
  .hero h1 { font-size: 4.5rem; }
  .hero-accent { font-size: 2rem; }
  .split { gap: 60px; }
  .nav-links a { padding: 8px 16px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 15px; }
}
