/* ============================================================
   JUPP AM SEE – Hauptstylesheet
   Farben: Dunkelbraun #3B2A1A | Biergold #F5C842 | Waldgrün #2D5016
           Sandbeige #F8F3EA | Weiß #FFFFFF
   Fonts: Playfair Display (Serif) + Lato (Sans-Serif)
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  --brown-dark:   #3B2A1A;
  --brown-mid:    #6B4C2A;
  --brown-light:  #9B7B5A;
  --gold:         #F5C842;
  --gold-dark:    #D4A820;
  --green-dark:   #2D5016;
  --green-mid:    #4A7C28;
  --sand:         #F8F3EA;
  --sand-dark:    #EDE5D5;
  --white:        #FFFFFF;
  --text-dark:    #1A1008;
  --text-mid:     #4A3520;
  --text-light:   #8B6B4A;
  --shadow-warm:  0 4px 24px rgba(59,42,26,0.18);
  --shadow-deep:  0 8px 48px rgba(59,42,26,0.28);
  --radius:       12px;
  --radius-sm:    6px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Lato', 'Open Sans', sans-serif;
  --header-h:     80px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--sand);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--brown-dark);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '— ';
  color: var(--gold);
}
.section-label::after {
  content: ' —';
  color: var(--gold);
}

/* ---------- UTILITY CLASSES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 96px 0;
}
.section-pad--sm {
  padding: 64px 0;
}
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.text-white { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  color: var(--brown-dark);
  box-shadow: 0 4px 20px rgba(245,200,66,0.4);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,200,66,0.5);
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--outline-brown {
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
}
.btn--outline-brown:hover {
  background: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--green {
  background: var(--green-dark);
  color: var(--white);
}
.btn--green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
}

/* ---------- GRAIN OVERLAY ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--brown-dark);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.85); flex: 1; min-width: 240px; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.cookie-btn--accept { background: var(--gold); color: var(--brown-dark); }
.cookie-btn--accept:hover { background: var(--gold-dark); }
.cookie-btn--decline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--white); }
.cookie-btn--decline:hover { background: rgba(255,255,255,0.1); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: rgba(59,42,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(245,200,66,0.4);
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .logo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-text .logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(245,200,66,0.08);
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(245,200,66,0.35);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245,200,66,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--brown-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
}
.mobile-nav.open {
  max-height: 600px;
  padding: 20px 24px 28px;
}
.mobile-nav-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav-link:hover { color: var(--gold); background: rgba(245,200,66,0.08); }
.mobile-nav-cta {
  margin-top: 12px;
  padding: 14px 22px;
  background: var(--gold);
  color: var(--brown-dark);
  border-radius: 50px;
  font-weight: 900;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   PAGE VISIBILITY (SPA routing)
   ============================================================ */
.page-section { display: none; }
.page-section.active { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.halterntutgut.de/media/pages/orte/jupp-der-erlebnisbiergarten/88cce9b790-1771594678/img_0319-1440x960-crop.webp');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,15,5,0.25) 0%,
    rgba(30,15,5,0.55) 60%,
    rgba(30,15,5,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  padding-top: var(--header-h);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.4);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.9s 0.7s forwards;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   USP STRIP
   ============================================================ */
#usp-strip {
  background: var(--brown-dark);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
#usp-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
}
.usp-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(245,200,66,0.3));
}
.usp-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.2;
}
.usp-text span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
#about-teaser {
  background: var(--sand);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.about-image-wrap {
  position: relative;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-warm);
}
.about-content {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--sand);
}
.about-content h2 { margin-bottom: 20px; }
.about-content h2 em { color: var(--green-dark); font-style: italic; }
.about-content p { margin-bottom: 16px; font-size: 1.05rem; line-height: 1.75; }
.about-content .btn { margin-top: 12px; align-self: flex-start; }

/* ============================================================
   BEER HIGHLIGHTS
   ============================================================ */
#beer-highlights {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}
#beer-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.halterntutgut.de/media/pages/orte/jupp-der-erlebnisbiergarten/f5b4c2fc17-1771594677/img_0135-1440x960-crop.webp') center/cover no-repeat;
  opacity: 0.08;
}
.beer-highlights-inner { position: relative; z-index: 1; }
.beer-highlights-inner .section-label { color: var(--gold); }
.beer-highlights-inner h2 { color: var(--white); margin-bottom: 12px; }
.beer-highlights-inner > .container > p { color: rgba(255,255,255,0.65); margin-bottom: 48px; font-size: 1.05rem; }
.beer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.beer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,200,66,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.beer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: var(--transition);
}
.beer-card:hover {
  background: rgba(245,200,66,0.08);
  border-color: rgba(245,200,66,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.beer-card:hover::before { transform: scaleX(1); }
.beer-icon { font-size: 2.8rem; margin-bottom: 16px; }
.beer-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.beer-style {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.beer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px; }
.beer-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.beer-meta span { display: flex; align-items: center; gap: 4px; }
.beer-hausbier {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--sand-dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(59,42,26,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.gallery-item:nth-child(1) { grid-column: span 2; min-height: 320px; }
.gallery-item:nth-child(4) { grid-column: span 2; min-height: 280px; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3),
.gallery-item:nth-child(5), .gallery-item:nth-child(6) { min-height: 240px; }

/* ============================================================
   EVENTS TEASER
   ============================================================ */
#events-teaser {
  background: var(--sand);
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.event-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.06); }
.event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  text-align: center;
  line-height: 1.1;
}
.event-date-badge .day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}
.event-date-badge .month {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.event-card-body { padding: 24px; }
.event-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.event-card-body h4 { margin-bottom: 8px; font-size: 1.1rem; }
.event-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.event-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.event-link:hover { gap: 10px; color: var(--brown-dark); }
.events-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   OPENING HOURS BANNER
   ============================================================ */
#opening-hours {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
}
#opening-hours::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,200,66,0.06) 0%, transparent 70%);
}
.hours-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hours-content h2 { color: var(--white); margin-bottom: 12px; }
.hours-content p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.hours-table td:first-child {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 160px;
}
.hours-table td:last-child {
  font-weight: 700;
  color: var(--gold);
  text-align: right;
}
.hours-note {
  margin-top: 20px;
  padding: 14px 20px;
  background: rgba(245,200,66,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.hours-note a { color: var(--gold); text-decoration: underline; }
.hours-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hours-icon { font-size: 5rem; }
.hours-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  text-align: center;
  max-width: 200px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--sand);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-warm);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-deep); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(245,200,66,0.2);
  line-height: 1;
  pointer-events: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: var(--sand-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--brown-mid);
  font-size: 1.1rem;
}
.author-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--brown-dark); }
.author-info span { font-size: 0.75rem; color: var(--text-light); }
.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--sand-dark);
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.google-badge::before {
  content: 'G';
  width: 20px; height: 20px;
  background: #4285F4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================================
   INSTAGRAM TEASER
   ============================================================ */
#instagram-teaser {
  background: var(--brown-dark);
  padding: 56px 0;
  text-align: center;
}
#instagram-teaser h3 {
  color: var(--white);
  margin-bottom: 8px;
}
#instagram-teaser p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 12px 28px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.instagram-handle:hover {
  background: rgba(245,200,66,0.12);
  border-color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #1A0E06;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { font-size: 1.8rem; }
.footer-brand .logo-sub { font-size: 0.6rem; }
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin: 16px 0 24px;
  font-style: italic;
  font-family: var(--font-serif);
}
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-info a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-icon:hover { background: var(--gold); color: var(--brown-dark); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 160px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-sm);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ============================================================
   ANIMATIONS (keyframes)
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hours-inner { grid-template-columns: 1fr; gap: 32px; }
  .hours-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { min-height: 340px; }
  .about-content { padding: 48px 40px; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .usp-item { min-width: 160px; padding: 14px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .about-content { padding: 40px 24px; }
  .section-pad { padding: 64px 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; max-width: 100%; }
}
