/* ============================================================
   biplace.info — Modern Design System
   ============================================================ */

/* --- Font Faces --- */
@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amatic SC';
  src: url('fonts/AmaticSC-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Sans Condensed';
  src: url('fonts/FiraSansCondensed-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --- */
:root {
  /* Colors */
  --color-orange: #F99621;
  --color-orange-light: #FBB054;
  --color-orange-dark: #E07A00;
  --color-dark: #222021;
  --color-dark-bg: #0f2c4d;
  --color-section-gap: #163a5f;
  --color-blue: #1B60A1;
  --color-blue-light: #2879C9;
  --color-white: #ffffff;
  --color-off-white: #f8f8f8;
  --color-gray: #616367;
  --color-gray-light: #e8e8e8;
  --color-green: #25D366;

  /* Fonts */
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Amatic SC', cursive;
  --font-brand: 'Orbitron', sans-serif;
  --font-caption: 'Fira Sans Condensed', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);

  /* Layout */
  --max-width: 1500px;
  --nav-height: 4.5rem;
}

/* --- Base Reset --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-dark);
  line-height: 1.7;
  background: var(--color-dark-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-blue-light);
}

/* --- Typography --- */
h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 1rem + 5vw, 4.5rem);
  color: var(--color-orange);
  text-align: center;
  margin-block: 0 var(--space-md);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  text-align: center;
  margin-block: 0 var(--space-lg);
}

.body-text {
  font-size: clamp(0.95rem, 0.85rem + 0.3vw, 1.1rem);
  line-height: 1.8;
  color: var(--color-dark);
  max-width: 750px;
  margin-inline: auto;
}

.accent-text {
  color: var(--color-orange);
  font-weight: 900;
}

.caption-text {
  font-family: var(--font-caption);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-gray);
  letter-spacing: 0.01em;
}

/* --- Navigation (Glassmorphism) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--space-md);
  background: rgba(15, 44, 77, 0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: rgba(15, 44, 77, 0.92);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-brand .indalo-logo {
  height: 2.5rem;
  width: auto;
}

.nav-brand-text {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.nav-brand-text .biplace {
  color: var(--color-orange);
}

.nav-brand-text .info {
  color: var(--color-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-white);
  margin-block: 5px;
  transition: all 0.3s ease;
}

/* --- Section Layout --- */
.section {
  background: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.section:not(:last-child) {
  margin-bottom: 6px;
}

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

.section-dark .section-title {
  color: var(--color-orange);
}

.section-dark .body-text {
  color: rgba(255,255,255,0.85);
}

.section-dark a {
  color: var(--color-orange-light);
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-2xl) var(--space-md);
  background: var(--color-dark-bg);
  overflow: hidden;
  margin-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* NO filters, NO darkening! Photos stay bright and original */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-logo {
  margin-bottom: var(--space-lg);
}

.hero-logo .indalo-hero {
  width: 120px;
  height: auto;
  margin-inline: auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 20px rgba(249, 150, 33, 0.4));
}

.hero-brand {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: clamp(3rem, 2rem + 6vw, 6rem);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-brand .biplace {
  color: var(--color-orange);
}

.hero-brand .info {
  color: var(--color-white);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1rem + 3vw, 3rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  line-height: 1.2;
}

.hero-description {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.15rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(249, 150, 33, 0.15);
  border: 1px solid rgba(249, 150, 33, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 2rem;
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-badge .emoji {
  font-size: 1.2rem;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
}

.hero-contact a {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.hero-contact a:hover {
  color: var(--color-orange);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 2rem;
  height: 2rem;
  color: rgba(255,255,255,0.6);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

/* Force white button text everywhere, incl. inside dark/blue sections */
.btn,
.section-dark .btn,
.btn:hover,
.section-dark .btn:hover {
  color: var(--color-white);
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(249, 150, 33, 0.35);
}

.btn-primary:hover {
  background: var(--color-orange-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(249, 150, 33, 0.5);
}

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

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1EB955;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

/* --- Photo Showcase --- */
/* Full-bleed photos: span the entire viewport width, edge to edge.
   Uses left/margin (not transform) so the .reveal animation still works. */
.photo-full {
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  margin-block: var(--space-lg);
}

.photo-grid {
  display: grid;
  gap: 4px;
  margin-block: var(--space-md);
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

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

.photo-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* --- Pricing Cards --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-block: var(--space-lg);
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-light);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--color-orange), var(--color-orange-light));
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--color-orange);
  border-width: 2px;
}

.pricing-card.featured::before {
  height: 5px;
  background: linear-gradient(to right, var(--color-orange-dark), var(--color-orange), var(--color-orange-light));
}

.pricing-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.pricing-card .card-name {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-orange);
  margin-bottom: 0.25rem;
}

.pricing-card .card-detail {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.pricing-card .card-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.pricing-card .card-price .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.pricing-payment img {
  height: 2rem;
  width: auto;
}

/* --- Map Sections --- */
.map-container {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-block: var(--space-md);
  border-radius: 0;
}

.map-container img {
  width: 100%;
  display: block;
}

.map-legend {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.map-legend-item img {
  width: 1.5rem;
  height: auto;
}

.meeting-point {
  background: linear-gradient(135deg, rgba(249, 150, 33, 0.08), rgba(249, 150, 33, 0.02));
  border-left: 4px solid var(--color-orange);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: var(--space-md);
}

.meeting-point strong {
  color: var(--color-orange);
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.credential-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.credential-list li {
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--color-gray-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.credential-list li .emoji {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Gift Vouchers --- */
.voucher-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-block: var(--space-lg);
}

.voucher-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.voucher-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-xl);
}

.voucher-card img {
  width: 100%;
  display: block;
}

/* --- FAQ --- */
.faq-item {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1rem + 2vw, 2.5rem);
  color: var(--color-orange);
  margin-bottom: var(--space-sm);
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-dark);
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-block: var(--space-md);
  max-width: 800px;
  margin-inline: auto;
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* --- Footer --- */
.footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-sm);
}

.footer-brand .biplace {
  color: var(--color-orange);
}

.footer-brand .info {
  color: var(--color-white);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-block: var(--space-md);
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-voler {
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-top: var(--space-md);
  letter-spacing: -0.02em;
}

.footer-voler span {
  color: var(--color-orange);
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: var(--space-sm);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse-green 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--color-white);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- Keyframe Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Voler.info badge --- */
.voler-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.02em;
}

.voler-badge span {
  color: var(--color-orange);
}

/* --- Year-Round Badge --- */
.year-round-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dark));
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(249, 150, 33, 0.3);
}

/* --- Age Badge --- */
.age-badge {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1rem + 2vw, 2.5rem);
  color: var(--color-orange);
  margin-top: var(--space-md);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
  :root {
    --nav-height: 3.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(15, 44, 77, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-brand-text {
    font-size: 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .photo-grid-2,
  .photo-grid-3 {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100dvh;
    padding: calc(var(--nav-height) + 2rem) var(--space-sm) var(--space-lg);
  }

  .hero-brand {
    font-size: clamp(2.5rem, 2rem + 4vw, 4rem);
  }

  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-contact {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .voucher-showcase {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-card .card-price {
    font-size: 2rem;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-logo .indalo-hero {
    animation: none;
  }

  .hero-scroll-hint {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }
}

/* --- Print --- */
@media print {
  .nav,
  .whatsapp-float,
  .hero-scroll-hint {
    display: none;
  }

  .section {
    break-inside: avoid;
  }
}

/* --- Separator between sections --- */
.section-separator {
  height: 6px;
  background: var(--color-section-gap);
}

/* --- Two column text+image layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* --- Sites nav links --- */
.sites-nav {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-block: var(--space-md);
}

.sites-nav a {
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-xl);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.sites-nav a:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

/* --- Info card --- */
.info-card {
  background: linear-gradient(135deg, rgba(249, 150, 33, 0.06), rgba(249, 150, 33, 0.02));
  border: 1px solid rgba(249, 150, 33, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-block: var(--space-md);
}

/* --- Portrait images --- */
.portrait-row {
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
  margin-block: var(--space-md);
  flex-wrap: wrap;
}

.portrait-row a {
  display: block;
  line-height: 0;
  border-radius: 50%;
}

.portrait-row img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--color-orange);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portrait-row a:hover img {
  transform: scale(1.12);
  border-color: var(--color-orange-dark);
  box-shadow: var(--shadow-md);
}
