/* ============================================================================
   COMPONENTS.CSS — All Reusable UI Components
   ============================================================================ */

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  padding: 0 var(--space-10);
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

.header--transparent {
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
}

.header__logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  transition: opacity var(--transition-base);
}

/* Default: white logo visible, color logo hidden */
.header__logo .header__logo-color {
  display: none;
}

/* On scroll: show color logo, hide white logo */
.header.scrolled .header__logo .header__logo-white {
  display: none;
}
.header.scrolled .header__logo .header__logo-color {
  display: block;
}

/* Homepage: hide both logos at top (hero has its own logo) */
.page-home .header--transparent .header__logo img {
  opacity: 0;
  pointer-events: none;
}
.page-home .header.scrolled .header__logo img {
  opacity: 1;
  pointer-events: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.header__nav a {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  transition: color var(--transition-fast);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

.header.scrolled .header__nav a {
  color: var(--color-primary);
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: var(--space-6);
  padding-left: var(--space-6);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.header.scrolled .lang-switch {
  border-left-color: var(--color-border);
}

.lang-switch a {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.lang-switch a.active,
.lang-switch a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
}

.header.scrolled .menu-toggle span {
  background: var(--color-primary);
}

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

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: var(--z-header);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open a:nth-child(1) { transition-delay: 100ms; }
.mobile-nav.open a:nth-child(2) { transition-delay: 150ms; }
.mobile-nav.open a:nth-child(3) { transition-delay: 200ms; }
.mobile-nav.open a:nth-child(4) { transition-delay: 250ms; }
.mobile-nav.open a:nth-child(5) { transition-delay: 300ms; }
.mobile-nav.open a:nth-child(6) { transition-delay: 350ms; }
.mobile-nav.open a:nth-child(7) { transition-delay: 400ms; }
.mobile-nav.open a:nth-child(8) { transition-delay: 450ms; }

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .header { padding: 0 var(--space-6); }
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--short {
  height: 75vh;
  min-height: 480px;
}

.hero__video,
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 58, 0.8) 0%,
    rgba(15, 26, 58, 0.3) 50%,
    rgba(15, 26, 58, 0.1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--space-6);
}

.hero__logo {
  max-width: 280px;
  margin: 0 auto var(--space-4);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-10);
  font-weight: var(--weight-normal);
  line-height: 1.6;
}

.hero__ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Desktop/Mobile video switching */
.hero__video--mobile { display: none; }

@media (max-width: 768px) {
  .hero { min-height: 500px; }
  .hero__logo { max-width: 200px; }
  .hero__subtitle { font-size: var(--text-base); }
  .hero__video--desktop { display: none; }
  .hero__video--mobile { display: block; }
}


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: var(--space-4) var(--space-9);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: #D4832E;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 148, 58, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

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

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

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

.btn--ghost {
  background: transparent;
  color: var(--color-accent);
  padding: var(--space-2) 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn--ghost:hover {
  color: #D4832E;
}


/* ═══════════════════════════════════════════
   TEASER BAR
   ═══════════════════════════════════════════ */
.teaser-bar {
  background: var(--color-primary);
  padding: var(--space-6) 0;
  text-align: center;
}

.teaser-bar p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}


/* ═══════════════════════════════════════════
   EXPERIENCE CARDS (Grid 4 Pilares)
   ═══════════════════════════════════════════ */
.experience-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.experience-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.experience-card:hover .experience-card__image {
  transform: scale(1.05);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 58, 0.92) 0%,
    rgba(15, 26, 58, 0.6) 40%,
    rgba(15, 26, 58, 0.1) 75%
  );
  transition: background var(--transition-base);
}

.experience-card:hover .experience-card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 26, 58, 0.95) 0%,
    rgba(15, 26, 58, 0.4) 50%,
    rgba(15, 26, 58, 0.15) 80%
  );
}

.experience-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8);
  color: var(--color-white);
}

.experience-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-3);
}

.experience-card__text {
  font-size: var(--text-sm);
  line-height: 1.6;
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}


/* ═══════════════════════════════════════════
   STAT CARDS (Números do Lago)
   ═══════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.stat {
  padding: var(--space-8) var(--space-4);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: var(--weight-black);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat__suffix {
  font-size: 2.5rem;
}

.stat__divider {
  width: 40px;
  height: 2px;
  background: var(--color-secondary);
  margin: var(--space-4) auto;
}

.stat__label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat__number { font-size: 3rem; }
}


/* ═══════════════════════════════════════════
   MODALITY CARDS (Fly Fishing vs Bait Casting)
   ═══════════════════════════════════════════ */
.modality-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

.modality-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.modality-card:hover .modality-card__bg {
  transform: scale(1.05);
}

.modality-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,58,0.9) 0%, transparent 70%);
}

.modality-card__content {
  position: relative;
  z-index: 2;
  padding: var(--space-10);
  color: var(--color-white);
}

.modality-card__content h3 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.modality-card__content p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-6);
}


/* ═══════════════════════════════════════════
   TESTIMONIAL SLIDER
   ═══════════════════════════════════════════ */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial {
  min-width: 100%;
  padding: var(--space-6) var(--space-8);
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-primary);
  max-width: 700px;
  margin: 0 auto var(--space-8);
  line-height: 1.5;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: var(--text-5xl);
  color: var(--color-accent);
  display: block;
  line-height: 0.5;
  margin-bottom: var(--space-4);
}

.testimonial__author {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-primary);
}

.testimonial__location {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-accent);
  width: 28px;
}


/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 58, 0.75);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  padding: var(--space-12) var(--space-6);
  color: var(--color-white);
}

.cta-section__content h2 {
  margin-bottom: var(--space-4);
}

.cta-section__content p {
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto var(--space-8);
}


/* ═══════════════════════════════════════════
   WHATSAPP FAB
   ═══════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-fab);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: fab-pulse 4s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--color-white);
}

@keyframes fab-pulse {
  0%, 80%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3); }
  90% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0); }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-14) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer__brand img {
  height: 40px;
  width: auto;
  max-width: 160px;
}

.footer__links h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.footer__links a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2) 0;
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--color-accent);
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  .footer__brand p { margin: var(--space-4) auto 0; }
  .footer__brand img { margin: 0 auto; }
  .footer__contact a { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: var(--space-3); }
}

/* ═══════════════════════════════════════════
   GASTRO CAROUSEL — Auto-Hover Image Slider
   ═══════════════════════════════════════════ */
.gastro-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 420px;
}

.gastro-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gastro-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.gastro-carousel__slide.active {
  opacity: 1;
  z-index: 2;
}

.gastro-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ken Burns zoom effect */
  animation: gastroKenBurns 8s ease-in-out infinite alternate;
}

@keyframes gastroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

/* Dots navigation */
.gastro-carousel__dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}

.gastro-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.gastro-dot.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(var(--color-accent-rgb, 212, 175, 55), 0.5);
}

.gastro-dot:hover {
  border-color: #fff;
  transform: scale(1.1);
}

/* Carousel in split layout */
.split__media--carousel {
  min-height: 420px;
}

@media (max-width: 768px) {
  .gastro-carousel {
    min-height: 320px;
  }
  .split__media--carousel {
    min-height: 320px;
  }
}

/* Prev / Next arrow buttons */
.gastro-carousel__prev,
.gastro-carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(15, 26, 58, 0.55);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  padding: 0;
}

.gastro-carousel:hover .gastro-carousel__prev,
.gastro-carousel:hover .gastro-carousel__next {
  opacity: 1;
}

.gastro-carousel__prev { left: var(--space-4); }
.gastro-carousel__next { right: var(--space-4); }

.gastro-carousel__prev:hover,
.gastro-carousel__next:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-50%) scale(1.08);
}

/* Slide caption */
.gastro-carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: var(--space-6) var(--space-6) var(--space-12);
  background: linear-gradient(to top, rgba(15, 26, 58, 0.85) 0%, transparent 100%);
  pointer-events: none;
}

.gastro-carousel__caption p {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  font-weight: var(--weight-medium);
}

/* Category tag */
.gastro-carousel__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  background: rgba(15, 26, 58, 0.6);
  border: 1px solid rgba(232, 148, 58, 0.4);
  padding: 2px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-2);
}

@media (max-width: 768px) {
  .gastro-carousel__prev,
  .gastro-carousel__next {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
  .gastro-carousel__caption {
    padding: var(--space-4) var(--space-4) var(--space-10);
  }
}

/* ═══════════════════════════════════════════
   PRESERVATION GALLERY GRID
   ═══════════════════════════════════════════ */
.preservation-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.preservation-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
}
.preservation-gallery img:first-child {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .cta-section__bg {
    object-position: center 75%;
  }
}

/* ═══════════════════════════════════════════
   TABLET OPTIMIZATION (768px – 1024px)
   ═══════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {

  /* Split layouts: keep side-by-side but tighter */
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
  .split__media {
    min-height: 340px;
  }
  .split__content {
    padding: var(--space-4) 0;
  }
  .split__content h2 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
  }
  .split__content p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
    line-height: 1.7;
  }

  /* Experience cards: 2x2 grid with shorter aspect */
  .experience-card {
    aspect-ratio: 4 / 5;
  }
  .experience-card__content {
    padding: var(--space-5);
  }
  .experience-card__title {
    font-size: var(--text-lg);
  }
  .experience-card__text {
    font-size: var(--text-xs);
  }

  /* Stats: keep 4-col but smaller numbers */
  .stats {
    gap: var(--space-4);
  }
  .stat__number {
    font-size: 3rem;
  }

  /* Hero adjustments */
  .hero {
    min-height: 500px;
  }
  .hero--short {
    height: 60vh;
    min-height: 400px;
  }
  .hero__title {
    font-size: var(--text-4xl);
  }
  .hero__subtitle {
    font-size: var(--text-base);
  }

  /* Modality cards */
  .modality-card {
    min-height: 400px;
  }

  /* Sections: reduce vertical padding */
  .section {
    padding: var(--space-12) 0;
  }
  .section__header {
    margin-bottom: var(--space-8);
  }

  /* Footer: keep 3-col */
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-6);
  }

  /* CTA section */
  .cta-section {
    min-height: 40vh;
  }
  .cta-section__content {
    padding: var(--space-8) var(--space-6);
  }
  .cta-section__content h2 {
    font-size: var(--text-3xl);
  }

  /* Testimonials */
  .testimonial {
    padding: var(--space-6) var(--space-6);
  }
  .testimonial__quote {
    font-size: var(--text-xl);
    max-width: 600px;
  }

  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Gastro carousel */
  .gastro-carousel {
    min-height: 340px;
  }

  /* Map */
  .map-wrapper iframe {
    min-height: 350px;
  }
}
