/* =========================================
   GRILL PARK WODNA DOLINA — MAIN STYLES
   Klimat: retro-PRL, grill, ciepłe barwy
   ========================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0d0d0d;
  --graphite:    #1a1a1a;
  --graphite-2:  #252525;
  --graphite-3:  #333333;
  --red:         #c0392b;
  --red-light:   #e74c3c;
  --orange:      #e67e22;
  --orange-light:#f39c12;
  --amber:       #f1c40f;
  --cream:       #f5ead8;
  --cream-dark:  #e8d5b7;
  --wood:        #8B5E3C;
  --wood-light:  #a67c52;
  --white:       #ffffff;
  --text-light:  #d0c9bf;
  --text-muted:  #9a8f83;

  --gradient-fire: linear-gradient(135deg, var(--red) 0%, var(--orange) 60%, var(--amber) 100%);
  --gradient-dark: linear-gradient(180deg, var(--graphite) 0%, var(--black) 100%);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.3);
  --shadow-sm:  0 4px 15px rgba(0,0,0,0.2);
  --radius:     12px;
  --radius-lg:  20px;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Lato', sans-serif;
  --font-accent:  'Playfair Display', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.25s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-dark { background: var(--graphite); }

.text-center { text-align: center; }

/* === TYPOGRAPHY === */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(230, 126, 34, 0.12);
  border: 1px solid rgba(230, 126, 34, 0.3);
  padding: 0.3em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--orange);
  text-transform: none;
  letter-spacing: 0;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-header { margin-bottom: 3rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75em 1.75em;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-lg { padding: 0.9em 2.2em; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-fire {
  background: var(--gradient-fire);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}
.btn-fire:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192, 57, 43, 0.55);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.logo-icon { font-size: 1.8rem; filter: drop-shadow(0 0 8px rgba(230,126,34,0.6)); }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.logo-sub {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--orange);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu li a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
}

.nav-menu li a:hover { color: var(--orange); }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(13,13,13,0.85) 60%, var(--black) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 2px,
      rgba(255,100,0,0.03) 2px,
      rgba(255,100,0,0.03) 4px
    );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(192,57,43,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(230,126,34,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6600' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Animated flames */
.hero-flames {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
}

.flame {
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 150px;
  border-radius: 50% 50% 20% 20% / 60% 60% 40% 40%;
  filter: blur(8px);
  animation: flicker 3s ease-in-out infinite alternate;
}

.flame-1 {
  left: 5%;
  background: radial-gradient(ellipse at bottom, rgba(255,150,0,0.6), rgba(255,50,0,0.3), transparent);
  animation-delay: 0s;
}

.flame-2 {
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(255,200,0,0.5), rgba(255,100,0,0.3), transparent);
  animation-delay: -1s;
}

.flame-3 {
  right: 5%;
  background: radial-gradient(ellipse at bottom, rgba(255,130,0,0.6), rgba(200,50,0,0.3), transparent);
  animation-delay: -0.5s;
}

@keyframes flicker {
  0%   { transform: scaleX(1) scaleY(1); opacity: 0.6; }
  33%  { transform: scaleX(0.9) scaleY(1.1); opacity: 0.8; }
  66%  { transform: scaleX(1.1) scaleY(0.95); opacity: 0.7; }
  100% { transform: scaleX(0.95) scaleY(1.05); opacity: 0.9; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(241,196,15,0.1);
  border: 1px solid rgba(241,196,15,0.3);
  padding: 0.4em 1.2em;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out 0.4s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--orange);
  text-transform: none;
  font-size: 0.8em;
  display: block;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dark);
  max-width: 650px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInDown 0.8s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  animation: fadeInDown 0.8s ease-out 0.8s both;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInDown 0.8s ease-out 1s both;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-info-item a { color: var(--orange-light); }
.hero-info-item a:hover { color: var(--orange); }
.info-icon { font-size: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================
   FEATURES BAR
   ========================================= */
.features-bar {
  background: var(--red);
  background: linear-gradient(135deg, #8b1a0e 0%, var(--red) 40%, var(--orange) 100%);
  padding: 1.25rem 0;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.feature-icon { font-size: 1.2rem; }

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--graphite-2), var(--graphite-3));
  border-radius: var(--radius-lg);
  border: 2px dashed var(--graphite-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-overlay-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.img-big { font-size: 3rem; }

.about-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gradient-fire);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  gap: 0;
}

.badge-year { font-size: 0.7rem; font-family: var(--font-heading); letter-spacing: 0.1em; color: rgba(255,255,255,0.8); }
.badge-big  { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--white); line-height: 1; }
.badge-sub  { font-size: 0.65rem; color: rgba(255,255,255,0.8); }

.about-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}

.about-content p { color: var(--text-muted); margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--graphite);
  border-radius: var(--radius);
  border-left: 4px solid var(--orange);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================
   WHY SECTION
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--graphite-2);
  border: 1px solid var(--graphite-3);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-fire);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 126, 34, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* =========================================
   MENU SECTION
   ========================================= */
.menu-section { background: var(--black); }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.menu-tab {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--graphite);
  color: var(--text-muted);
  border: 2px solid var(--graphite-3);
  padding: 0.6em 1.3em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
}

.menu-tab:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.menu-tab.active {
  background: var(--gradient-fire);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(192,57,43,0.35);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.3s ease; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.menu-grid-small {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.menu-item {
  background: var(--graphite);
  border: 1px solid var(--graphite-3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all 0.25s;
  position: relative;
}

.menu-item:hover {
  border-color: rgba(230,126,34,0.3);
  transform: translateY(-2px);
}

.menu-item.featured {
  border-color: rgba(230,126,34,0.25);
  background: linear-gradient(135deg, var(--graphite), rgba(230,126,34,0.05));
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.menu-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item p { font-size: 0.85rem; color: var(--text-muted); }

.menu-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(241,196,15,0.15);
  border: 1px solid rgba(241,196,15,0.3);
  color: var(--amber);
  padding: 0.2em 0.7em;
  border-radius: 100px;
  margin-top: 0.5rem;
}

.menu-subcategory { margin-bottom: 2.5rem; }

.menu-cat-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--graphite-3);
}

/* =========================================
   TENT SECTION
   ========================================= */
.tent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tent-lead {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.tent-content p { color: var(--text-muted); margin-bottom: 1.5rem; }

.tent-events {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.tent-event-item {
  background: var(--graphite-2);
  border: 1px solid var(--graphite-3);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all 0.2s;
}

.tent-event-item:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.tent-card {
  background: var(--graphite-2);
  border: 2px solid rgba(230,126,34,0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.tent-card-icon { font-size: 4rem; margin-bottom: 1.5rem; display: block; }

.tent-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tent-stat {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1rem;
}

.tent-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.tent-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: block;
}

.tent-card-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tent-weather {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-section { background: var(--graphite); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--graphite-2);
  border: 2px dashed var(--graphite-3);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s;
}

.gallery-placeholder:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.gallery-ph-icon { font-size: 2.5rem; }

.gallery-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 1.5rem;
}

/* =========================================
   INFO SECTION (HOURS + MAP)
   ========================================= */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.hours-table {
  margin: 1.5rem 0;
  border: 1px solid var(--graphite-3);
  border-radius: var(--radius);
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--graphite-3);
}

.hours-row:last-child { border-bottom: none; }

.hours-row.hours-season {
  background: rgba(230,126,34,0.1);
}

.hours-day { color: var(--text-light); font-size: 0.95rem; }
.hours-time { font-family: var(--font-heading); font-weight: 600; color: var(--orange); font-size: 0.95rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--graphite);
  border-radius: var(--radius);
  transition: all 0.25s;
}

a.contact-item:hover {
  background: var(--graphite-2);
  border-left: 3px solid var(--orange);
  padding-left: calc(1rem - 3px);
}

.contact-icon { font-size: 1.3rem; flex-shrink: 0; }

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.contact-item span { color: var(--cream); font-size: 0.95rem; }

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 2px solid var(--graphite-3);
  background: var(--graphite-2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg);
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--graphite);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--graphite-3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--graphite-2);
  border: 1.5px solid var(--graphite-3);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239a8f83' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--graphite); }

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  width: auto;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--orange);
}

.form-checkbox label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.3);
  border-radius: 6px;
  color: #2ecc71;
  text-align: center;
  font-weight: 600;
}

.contact-sidebar { position: sticky; top: 100px; }

.contact-quick {
  background: var(--graphite);
  border: 1px solid var(--graphite-3);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-quick h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.quick-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 2px solid transparent;
  transition: all 0.25s;
}

.quick-btn-call {
  background: rgba(192,57,43,0.15);
  border-color: rgba(192,57,43,0.3);
}
.quick-btn-call:hover { background: rgba(192,57,43,0.25); transform: translateX(4px); }

.quick-btn-fb {
  background: rgba(59,89,152,0.15);
  border-color: rgba(59,89,152,0.3);
}
.quick-btn-fb:hover { background: rgba(59,89,152,0.25); transform: translateX(4px); }

.quick-btn-map {
  background: rgba(230,126,34,0.12);
  border-color: rgba(230,126,34,0.25);
}
.quick-btn-map:hover { background: rgba(230,126,34,0.2); transform: translateX(4px); }

.qb-icon { font-size: 1.8rem; flex-shrink: 0; }

.quick-btn strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
}
.quick-btn span { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--graphite); }

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--graphite-3);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--graphite-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.25s;
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav h4,
.footer-info h4,
.footer-cta h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.footer-nav ul li,
.footer-info ul li {
  margin-bottom: 0.6rem;
}

.footer-nav ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav ul li a:hover { color: var(--orange); }

.footer-info ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-info ul li a:hover { color: var(--orange); }

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal a:hover { color: var(--orange); }

/* =========================================
   FLOATING CALL BUTTON
   ========================================= */
.float-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  background: var(--gradient-fire);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  z-index: 999;
  transition: all 0.25s;
  animation: pulse 2s ease-in-out infinite;
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(192,57,43,0.7);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(192,57,43,0.5); }
  50% { box-shadow: 0 4px 30px rgba(192,57,43,0.8), 0 0 0 8px rgba(192,57,43,0.1); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
.hide-mobile { display: inline; }

@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hide-mobile { display: none; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; left: 0; right: 0;
    bottom: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu li a {
    font-size: 1.3rem;
    padding: 0.75rem 2rem;
  }

  .nav-cta { margin-left: 0; }

  /* Hero */
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-info { flex-direction: column; gap: 0.75rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-float { right: 1rem; bottom: -1rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Tent */
  .tent-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 200px;
  }

  /* Info */
  .info-grid { grid-template-columns: 1fr; }
  .map-container { height: 300px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; }

  /* Floating button */
  .float-call { display: flex; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 1rem; }
  .menu-tabs { gap: 0.35rem; }
  .menu-tab { font-size: 0.75rem; padding: 0.5em 0.9em; }
  .tent-events { grid-template-columns: 1fr; }
  .tent-stats-grid { grid-template-columns: 1fr; }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
