/* ================================================================
   FLYER PUB ANSBACH – Refined Dark Pub Design
   Editorial-touch meets Gewölbekeller
   ================================================================ */

/* --- Fonts (self-hosted for DSGVO) --- */
@font-face {
  font-family: 'Playfair Display';
  src: url('/public/fonts/playfair-display-v30-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('/public/fonts/playfair-display-v30-latin-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/public/fonts/source-sans-3-v8-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/public/fonts/source-sans-3-v8-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --black: #0e0b08;
  --black-soft: #1a1611;
  --black-card: #1f1a14;
  --gold: #c8a14a;
  --gold-light: #dbb963;
  --amber: #e8891a;
  --cream: #f0e8d5;
  --cream-dim: #c4b99e;
  --text: #d4cdc0;
  --text-muted: #8a7f6f;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--black);
  overflow-x: hidden;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 700;
  line-height: 1.2;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 161, 74, 0.25);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover {
  background: rgba(200, 161, 74, 0.1);
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--small {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
}
.nav--scrolled {
  background: rgba(14, 11, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 161, 74, 0.1);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.nav__logo:hover { color: var(--gold-light); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav__links a:hover { color: var(--gold); }
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}
.nav__lang a { color: var(--text-muted); }
.nav__lang a.active { color: var(--gold); }
.nav__lang-sep { color: var(--text-muted); opacity: 0.4; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--black-soft);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(200, 161, 74, 0.1);
  }
  .nav__links.open { right: 0; }
  .nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Hero Slideshow */
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 12s ease-in-out infinite;
}
.hero__slide--1 {
  background-image: url('/public/images/gebaeude.jpg');
  animation-delay: 0s;
}
.hero__slide--2 {
  background-image: url('/public/images/backroom.jpg');
  animation-delay: 6s;
}
@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.05); }
  8%   { opacity: 1; transform: scale(1); }
  42%  { opacity: 1; transform: scale(1.03); }
  50%  { opacity: 0; transform: scale(1.05); }
  100% { opacity: 0; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 11, 8, 0.7) 0%,
    rgba(14, 11, 8, 0.5) 40%,
    rgba(14, 11, 8, 0.85) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-md);
}
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.3em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 0.8em;
}
.hero__tagline {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero__tagline p { margin: 0; }
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ================================================================
   FEATURED DRINK BAR
   ================================================================ */
.featured-drink {
  background: linear-gradient(90deg, var(--amber), var(--gold));
  padding: 0.7rem 0;
  text-align: center;
}
.featured-drink .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.featured-drink__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--black);
  opacity: 0.7;
}
.featured-drink__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.featured-drink__price {
  font-weight: 600;
  color: var(--black);
  opacity: 0.8;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: var(--space-lg);
  text-align: center;
  position: relative;
}
.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0.8rem auto 0;
}
.section__text {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  color: var(--cream-dim);
  font-size: 1.05rem;
}

/* About */
.section--about {
  background: var(--black-soft);
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.facts__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: var(--black-card);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 161, 74, 0.08);
}
.facts__icon { font-size: 1.3rem; }
.facts__text { font-size: 0.9rem; color: var(--cream-dim); }

/* ================================================================
   CALENDAR
   ================================================================ */
.calendar {
  max-width: 700px;
  margin: 0 auto;
  background: var(--black-card);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 161, 74, 0.1);
  overflow: hidden;
}
.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(200, 161, 74, 0.05);
}
.calendar__month {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.calendar__nav {
  background: none;
  border: 1px solid rgba(200, 161, 74, 0.2);
  color: var(--gold);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}
.calendar__nav:hover {
  background: rgba(200, 161, 74, 0.1);
  border-color: var(--gold);
}
.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(200, 161, 74, 0.08);
}
.calendar__weekdays span {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.5rem 1rem 1rem;
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: var(--radius);
  cursor: default;
  position: relative;
}
.cal-day--current-month { color: var(--text); }
.cal-day--today {
  color: var(--cream);
  background: rgba(200, 161, 74, 0.1);
  font-weight: 600;
}
.cal-day--event {
  cursor: pointer;
  position: relative;
}
.cal-day--open {
  background: rgba(200, 161, 74, 0.08);
  border: 1px solid rgba(200, 161, 74, 0.2);
}
.cal-day--closed {
  opacity: 0.4;
}
.cal-day--event {
  background: rgba(232, 137, 26, 0.15) !important;
  border: 1px solid rgba(232, 137, 26, 0.4) !important;
  opacity: 1 !important;
}
.cal-day--event:hover {
  background: rgba(200, 161, 74, 0.25) !important;
}
.cal-day__hours {
  font-size: 0.55rem;
  line-height: 1;
  margin-top: 1px;
}

/* Calendar Legend */
.calendar__legend {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cal-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cal-legend__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.cal-legend__dot--open {
  background: rgba(200, 161, 74, 0.08);
  border: 1px solid rgba(200, 161, 74, 0.3);
}
.cal-legend__dot--event {
  background: rgba(232, 137, 26, 0.15);
  border: 1px solid rgba(232, 137, 26, 0.4);
}
.cal-legend__dot--closed {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.4;
}

.calendar__subscribe {
  text-align: center;
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.calendar__subscribe p { margin-bottom: 0.8rem; }
.calendar__subscribe .btn { margin: 0 0.3rem; }
.calendar__help {
  margin-top: var(--space-sm);
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.calendar__help summary {
  cursor: pointer;
  color: var(--gold);
  font-size: 0.85rem;
}
.calendar__help-text {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.calendar__help-text p { margin-bottom: 0.5rem; }
.calendar__help-text code {
  background: var(--black-card);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.8rem;
  word-break: break-all;
}

/* ================================================================
   DRINKS MENU
   ================================================================ */
.drinks-menu {
  display: grid;
  gap: var(--space-lg);
}
.drinks-category__title {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200, 161, 74, 0.15);
}
.drinks-category__items {
  display: grid;
  gap: 0.5rem;
}
.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.drink-item:hover {
  background: rgba(200, 161, 74, 0.04);
}
.drink-item--featured {
  border-left: 2px solid var(--amber);
  background: rgba(232, 137, 26, 0.05);
}
.drink-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.drink-item__name {
  font-weight: 600;
  color: var(--cream);
  font-size: 1rem;
}
.drink-item__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.drink-item__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  margin-left: 1rem;
}
.drink-item__volume {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.drink-item__price {
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
}
.drinks-print {
  text-align: center;
  margin-top: var(--space-md);
}

.section--drinks {
  background: var(--black-soft);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}
.form-group input,
.form-group textarea {
  background: var(--black-card);
  border: 1px solid rgba(200, 161, 74, 0.15);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form__status {
  font-size: 0.85rem;
  min-height: 1.5em;
  color: var(--gold);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-info__details h3,
.contact-info__hours h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.contact-info__details p {
  margin-bottom: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.95rem;
}
.contact-info__details a { color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(200, 161, 74, 0.06);
}
.hours-table td:first-child { color: var(--cream-dim); font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--text); }

.contact-info__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200, 161, 74, 0.1);
}
.contact-info__map iframe { display: block; }

.directions-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ================================================================
   MODAL
   ================================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(200, 161, 74, 0.15);
  border-radius: 8px;
  padding: var(--space-md);
  max-width: 500px;
  width: 90%;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal.active .modal__content { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--cream); }
.modal__emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.modal__title {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.modal__date {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.modal__desc {
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(200, 161, 74, 0.08);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.footer__city {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.6;
}

.footer__credit {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity 0.3s;
}
.footer__credit:hover { opacity: 0.7; }
.footer__credit a { color: inherit; text-decoration: underline; }

/* ================================================================
   EMERGENCY BANNER
   ================================================================ */
.emergency-banner {
  background: #b91c1c;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
}
.emergency-banner + .nav { top: 40px; }

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(14, 11, 8, 0.97);
  border-top: 1px solid rgba(200, 161, 74, 0.2);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
}
.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.3rem;
  line-height: 1.5;
}
.cookie-banner__text p strong {
  color: var(--cream);
  font-size: 0.85rem;
}
.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner__actions {
  flex-shrink: 0;
}

/* Checkbox (Datenschutz) */
.form-group--checkbox {
  margin-top: 0.5rem;
}
.checkbox-label {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}
.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

/* ================================================================
   WHATSAPP FAB
   ================================================================ */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  color: #fff;
}
@media (max-width: 768px) {
  .whatsapp-fab { display: flex; }
}

/* ================================================================
   UTILITY / RESPONSIVE
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ================================================================
   HERO LOGO
   ================================================================ */
.hero__logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 14%;
  border: 3px solid var(--gold);
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: var(--space-lg);
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-page {
  padding: 6rem 0 4rem;
  min-height: 80vh;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: var(--space-md);
}
.legal-page h2 {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
}
.legal-page h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-top: var(--space-sm);
  margin-bottom: 0.3rem;
}
.legal-page p {
  margin-bottom: 0.8rem;
  color: var(--cream-dim);
  max-width: 700px;
}
.legal-page a { color: var(--gold); }

@media (max-width: 768px) {
  .section { padding: var(--space-lg) 0; }
  .section__title { font-size: 2rem; }
  .facts { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__title { font-size: 2.8rem; }
}
