/* ========================================
   DamTours Events - Main stylesheet
   Colors: oranje #F15A29, navy #14377D
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #F15A29;
  --orange-dark: #D94916;
  --orange-light: #FF7849;
  --navy: #14377D;
  --navy-dark: #0D2456;
  --navy-light: #2951A3;
  --cream: #FFF7F0;
  --gray-50: #FAFAFA;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --white: #FFFFFF;
  --dark: #0A1833;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 6px -1px rgba(20, 55, 125, 0.08), 0 2px 4px -2px rgba(20, 55, 125, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(20, 55, 125, 0.12), 0 4px 6px -4px rgba(20, 55, 125, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  z-index: 100;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  gap: 1.5rem;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.nav-caret {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.nav-dropdown.open .nav-caret,
.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  /* invisible bridge so hover doesn't break between trigger and menu */
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: none;
  width: 100%;
}

.nav-dropdown-menu a:hover {
  background: var(--cream);
  color: var(--orange);
}

.nav-flag {
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    padding: 0;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .nav-dropdown.open .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }
  .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border-bottom: none;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(241, 90, 41, 0.2);
    color: var(--white);
  }
  .nav-caret {
    margin-left: auto;
  }
  .nav-dropdown-trigger {
    justify-content: space-between;
    width: 100%;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--navy);
  cursor: pointer;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 51, 0.5);
  z-index: 98;
}

.nav-overlay.open {
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.3;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.hero .btn-outline,
.section-dark .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-outline:hover,
.section-dark .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ===== HERO (photo-only block) ===== */
.hero {
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero--photo-only {
  /* Cinematic strip: 21:9 on desktop, 3:2 on mobile. No more vh-dependence so it's predictable. */
  aspect-ratio: 21 / 9;
  max-height: 560px;
  min-height: 320px;
  padding: 0;
}

@media (max-width: 800px) {
  .hero--photo-only {
    aspect-ratio: 3 / 2;
    min-height: 260px;
    max-height: 420px;
  }
}

/* Single hero photo, full-bleed */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Photo-only hero has no overlay or orb — photo gets full visibility */
.hero--photo-only::before { display: none; }
.hero--photo-only::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 51, 0) 80%, rgba(10, 24, 51, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Hero band content fade-in on load */
.hero-band-content {
  animation: heroTextIn 1.1s ease-out both;
}

.hero-band-content .hero-badge { animation: heroTextIn 0.8s 0.1s ease-out both; }
.hero-band-content h1 { animation: heroTextIn 0.9s 0.25s ease-out both; }
.hero-band-content .hero-subtitle { animation: heroTextIn 0.9s 0.4s ease-out both; }
.hero-band-content .hero-buttons { animation: heroTextIn 0.9s 0.55s ease-out both; }
.hero-band-content .hero-stats { animation: heroTextIn 0.9s 0.7s ease-out both; }

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

.hero-line-1, .hero-line-2 {
  display: block;
}

.hero-line-2 {
  margin-top: 0.15em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  transition: border-color 0.2s;
}

.hero-scroll:hover {
  border-color: var(--orange);
}

.hero-scroll span {
  display: block;
  width: 3px;
  height: 9px;
  background: var(--white);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(14px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-band-content { animation: none; }
}

/* ===== HERO TEXT BAND (below the photo) ===== */
.hero-band {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Top-edge orange accent bar — visual bridge between photo and band */
.hero-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 40%, var(--orange) 60%, transparent 100%);
}

/* Subtle decorative orange glow */
.hero-band::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 90, 41, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-band-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

/* Override default colors on dark background */
.hero-band h1 {
  color: var(--white);
}

.hero-band .hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.75rem;
}

.hero-band .hero-stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.hero-band .hero-badge {
  margin-bottom: 1.25rem;
}

.hero-band h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.hero-band .hero-stats {
  margin-top: 2rem;
}

.hero-secondary-link {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.hero-secondary-link a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.hero-secondary-link a:hover {
  color: var(--orange-light);
  border-bottom-color: var(--orange-light);
}

.hero-badge {
  display: inline-block;
  background: rgba(241, 90, 41, 0.15);
  border: 1px solid var(--orange);
  color: var(--orange-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-highlight {
  color: var(--orange);
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

/* ===== SECTIONS ===== */
.section {
  padding: 4.5rem 0;
}

.section-cream {
  background: var(--cream);
}

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

.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.75rem;
  background: rgba(241, 90, 41, 0.1);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.85);
}

.location-info {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ===== TOURS GRID ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
  }
}

@media (max-width: 600px) {
  .tours-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.tour-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
}

.tour-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.05);
}

.tour-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: var(--shadow);
}

.tour-card-badge-pink {
  background: #E91E63;
}

.tour-card-badge-blue {
  background: var(--navy);
}

.tour-card-badge-green {
  background: #16A34A;
}

.tour-card-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.tour-card-buttons .btn {
  font-size: 0.92rem;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

.tour-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.tour-card-price {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.tour-card-price small {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.tour-card p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.tour-card-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tour-card-list li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

.tour-card-list li:last-child {
  border-bottom: none;
}

.tour-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===== QUICK FACTS ===== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.fact-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  /* Initial state: fly in from below with slight scale */
  opacity: 0;
  -webkit-transform: translate3d(0, 48px, 0) scale(0.92);
  transform: translate3d(0, 48px, 0) scale(0.92);
  -webkit-transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.25),
                      -webkit-transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.25),
                      box-shadow 0.25s ease,
                      border-color 0.25s ease;
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.25),
              transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1.25),
              box-shadow 0.25s ease,
              border-color 0.25s ease;
  will-change: transform, opacity;
}

.fact-item.in-view {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Stagger entry: each card 120ms later than the last */
.fact-item:nth-child(1).in-view { -webkit-transition-delay: 0ms; transition-delay: 0ms; }
.fact-item:nth-child(2).in-view { -webkit-transition-delay: 120ms; transition-delay: 120ms; }
.fact-item:nth-child(3).in-view { -webkit-transition-delay: 240ms; transition-delay: 240ms; }
.fact-item:nth-child(4).in-view { -webkit-transition-delay: 360ms; transition-delay: 360ms; }
.fact-item:nth-child(5).in-view { -webkit-transition-delay: 480ms; transition-delay: 480ms; }
.fact-item:nth-child(6).in-view { -webkit-transition-delay: 600ms; transition-delay: 600ms; }

/* Orange accent bar on top that slides in after the card lands */
.fact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.6s ease 0.35s;
  transition: transform 0.6s ease 0.35s;
}

.fact-item.in-view::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Icon pops in with a tiny bounce after the card lands */
.fact-icon {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  line-height: 1;
  -webkit-transform: scale(0.3);
  transform: scale(0.3);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.55s cubic-bezier(0.3, 1.7, 0.5, 1) 0.25s, opacity 0.4s ease 0.25s;
  transition: transform 0.55s cubic-bezier(0.3, 1.7, 0.5, 1) 0.25s, opacity 0.4s ease 0.25s;
}

.fact-item.in-view .fact-icon {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.fact-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  -webkit-transform: translate3d(0, -5px, 0) scale(1);
  transform: translate3d(0, -5px, 0) scale(1);
}

.fact-item:hover .fact-icon {
  -webkit-transform: scale(1.12) rotate(-6deg);
  transform: scale(1.12) rotate(-6deg);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.fact-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  opacity: 0.85;
}

.fact-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* For text values (like "Unlimited") use a smaller size so they fit nicely */
.fact-number.fact-number--text {
  font-size: 1.75rem;
  letter-spacing: -0.01em;
}

.fact-label {
  font-size: 0.88rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.4;
}

.fact-label small {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 0.15rem;
}

/* Tablet: keep 3 columns but smaller */
@media (max-width: 900px) {
  .facts-grid {
    gap: 1rem;
  }
  .fact-item {
    padding: 1.5rem 1rem 1.25rem;
  }
  .fact-icon { font-size: 2rem; }
  .fact-number { font-size: 2.1rem; }
  .fact-number.fact-number--text { font-size: 1.4rem; }
}

/* Mobile: 2 columns */
@media (max-width: 700px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .fact-item {
    padding: 1.25rem 0.85rem 1.1rem;
  }
  .fact-icon { font-size: 1.85rem; margin-bottom: 0.35rem; }
  .fact-title { font-size: 0.7rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
  .fact-number { font-size: 1.75rem; }
  .fact-number.fact-number--text { font-size: 1.2rem; }
  .fact-label { font-size: 0.8rem; }
  .fact-label small { font-size: 0.7rem; }
}

/* Very small phones: tighter */
@media (max-width: 380px) {
  .facts-grid { gap: 0.6rem; }
  .fact-item { padding: 1rem 0.5rem 0.9rem; }
  .fact-icon { font-size: 1.6rem; }
  .fact-number { font-size: 1.5rem; }
  .fact-number.fact-number--text { font-size: 1.05rem; }
}

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  .fact-item,
  .fact-item.in-view,
  .fact-item::before,
  .fact-item.in-view::before,
  .fact-icon,
  .fact-item.in-view .fact-icon {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: none;
    transition: none;
  }
}

/* ===== PRICE HINT ===== */
.price-hint {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
}

.price-hint p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.price-hint strong {
  color: var(--navy);
  font-size: 1.15rem;
}

/* ===== PRICE TABLE ===== */
.price-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.price-table-title {
  text-align: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.price-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.price-table th:first-child { border-top-left-radius: var(--radius); }
.price-table th:last-child { border-top-right-radius: var(--radius); }

.price-table td:not(:first-child) {
  font-weight: 600;
  color: var(--orange);
}

.price-table tr:last-child td { border-bottom: none; }

.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

/* ===== BIGGER GROUP ===== */
.bigger-group-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.bigger-group-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.bigger-group-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.bigger-group-body p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.98rem;
}

.bigger-group-body a {
  font-weight: 600;
}

.included-note {
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== INCLUDED GRID ===== */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.included-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(241, 90, 41, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.included-item:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
}

.included-icon {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.included-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.included-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== CITY TABS ===== */
.city-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--gray-100);
  padding-bottom: 0;
}

.city-tab {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gray-600);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.city-tab:hover {
  color: var(--navy);
}

.city-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.tab-pill {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.city-tab.active .tab-pill {
  background: rgba(241, 90, 41, 0.15);
  color: var(--orange);
}

.city-panel {
  display: none;
  animation: fadeIn 0.3s ease-out;
}

.city-panel.active {
  display: block;
}

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

.panel-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gray-600);
}

.panel-intro a {
  font-weight: 600;
}

/* ===== ACTIVITIES GRID (Top 10) ===== */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--navy);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  position: relative;
}

.activity-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

.activity-rank {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow);
}

.activity-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-body {
  padding: 1rem 1.1rem 1.25rem;
}

.activity-body h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.activity-body p {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== COMING SOON ===== */
.coming-soon {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--orange);
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.coming-soon h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.coming-soon-note {
  font-size: 0.95rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

/* ===== OCCASIONS ===== */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.occasion-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.occasion-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.occasion-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ===== CITY JUMP CARDS (Book a city — anchor links) ===== */
.city-jump {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.city-jump-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  color: var(--navy);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.city-jump-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.city-jump-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--navy);
}

.city-jump-card:hover::after {
  width: 100%;
}

/* ===== CITY SECTION (one per city) ===== */
.city-section {
  scroll-margin-top: 80px; /* compensate for sticky header on anchor jump */
}

.city-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.city-flag-large {
  font-size: 2.5rem;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.city-tagline {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* ===== CITY PAGE TEMPLATE ===== */
.city-page-flag {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.city-info-strip {
  padding: 1.75rem 0;
}

.city-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.city-info-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.4;
}

.city-info-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.city-info-item strong {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.city-tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.city-tour-pill {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  transition: border-color 0.2s, transform 0.2s;
}

.city-tour-pill:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.city-tour-icon {
  font-size: 1.85rem;
  line-height: 1;
}

.city-tour-pill strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
}

.city-tour-pill small {
  color: var(--gray-600);
  font-size: 0.78rem;
  line-height: 1.3;
}

@media (max-width: 800px) {
  .city-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .city-tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .city-info-grid {
    grid-template-columns: 1fr;
  }
}

.city-flag {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}

.city-jump-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.city-jump-tag {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.location-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}

.location-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.location-meta-item strong {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
}

.location-meta-item a {
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.location-meta-note {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-100);
  font-style: italic;
}

@media (max-width: 900px) {
  .city-jump {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
  }
}

@media (max-width: 500px) {
  .city-jump-card {
    padding: 1.25rem 0.75rem 1rem;
  }
  .city-jump-name {
    font-size: 1.1rem;
  }
  .city-jump-tag {
    font-size: 0.72rem;
  }
}

/* ===== FAREHARBOR ===== */
.fareharbor-embed {
  min-height: 400px;
  margin: 1.5rem 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-block {
  text-align: center;
  color: var(--white);
}

.contact-block h4 {
  color: var(--orange);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-block p,
.contact-block a {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr 2fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

/* The last footer-links column ("Bike & Tour Sites") wraps its links into 2 sub-columns */
.footer-links-wide a {
  break-inside: avoid;
}

.footer-links-wide-list {
  columns: 2;
  column-gap: 1.5rem;
}

.footer-links-wide-list a {
  display: block;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.footer-cta {
  margin-top: 1rem;
}

.footer-cta-link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid rgba(241, 90, 41, 0.4);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  transition: all 0.2s ease;
}

.footer-cta-link:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.footer-brand img {
  margin-bottom: 1rem;
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links h5 {
  color: var(--orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

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

/* ===== INSTAGRAM EMBED GRID ===== */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ig-post {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  /* Standard Instagram embed aspect; the iframe scrolls its own content */
  height: 660px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ig-post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.ig-post iframe {
  width: 100%;
  /* iframe is taller than the wrapper so the "Add a comment" footer at the bottom is clipped off */
  height: calc(100% + 56px);
  border: 0;
  display: block;
}

@media (max-width: 1100px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .ig-post {
    height: 620px;
  }
  .ig-post iframe {
    height: calc(100% + 56px);
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--gray-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-item.gallery-tall {
  grid-row: span 2;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.gallery-cta p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.ig-icon {
  font-size: 1.1rem;
  margin-right: 0.35rem;
}

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-item.gallery-wide {
    grid-column: span 2;
  }
  .gallery-item.gallery-tall {
    grid-row: span 1;
  }
}

/* ===== SOCIAL ICONS ===== */
.socials-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
  transition: all 0.2s;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.social-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.2s;
}

.footer-socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-socials a:hover svg {
  fill: var(--white);
}

/* ===== INSTAGRAM DISCOUNT HINT ===== */
.discount-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.discount-code {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

/* ===== COMBO CARD (Pubcrawl) ===== */
.combo-card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--orange);
  position: relative;
}

.combo-card:hover .combo-card-image img {
  transform: scale(1.04);
}

.combo-card-image img {
  transition: transform 0.4s ease;
}

.combo-card-body {
  padding: 2.25rem 2rem;
}

.combo-pill {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.combo-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.combo-card-body p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.combo-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.combo-list li {
  font-size: 0.9rem;
  color: var(--gray-800);
}

.combo-card-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.combo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .combo-card {
    grid-template-columns: 1fr;
  }

  .combo-card-image {
    min-height: 180px;
    order: -1;
  }

  .combo-list {
    grid-template-columns: 1fr;
  }
}

/* ===== VIDEOS ===== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-dark);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(241, 90, 41, 0.2) 0%, rgba(20, 55, 125, 0.9) 100%);
  gap: 0.35rem;
}

.video-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.video-placeholder p {
  font-weight: 600;
  font-size: 0.95rem;
}

.video-placeholder small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.videos-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.videos-note a {
  color: var(--orange-light);
  font-weight: 600;
}

/* ===== IN THE PRESS ===== */
.press-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 6px solid var(--navy);
}

.press-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.press-pill {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.press-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.press-body p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  margin-top: 0.85rem;
}

.press-link {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.95rem;
}

.press-link-secondary {
  color: var(--gray-600);
  font-weight: 500;
}

.press-link-secondary:hover {
  color: var(--orange);
}

@media (max-width: 700px) {
  .press-card {
    flex-direction: column;
    padding: 1.5rem;
  }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  z-index: 99;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.whatsapp-float .wa-label {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.2s;
}

.whatsapp-float:hover .wa-label {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-float .wa-label::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0); }
}

@media (max-width: 500px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-float .wa-label {
    display: none;
  }
}

/* ===== PAGE HERO (subpage) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(241, 90, 41, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-photo {
  background-size: cover;
  background-position: center;
  padding: 4rem 0 4.5rem;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 700px;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.breadcrumbs a {
  color: var(--orange-light);
  font-weight: 500;
}

/* ===== PAGE HERO SPLIT (text-left, photo-right) ===== */
.page-hero-split {
  padding: 0;
  background: var(--navy);
}

.page-hero-split::after { display: none; }

.page-hero-split .page-hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 420px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-split-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-hero-split-text::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(241, 90, 41, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-split-text > * { position: relative; z-index: 1; }

.page-hero-split-photo {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.page-hero-split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 800px) {
  .page-hero-split .page-hero-split-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-hero-split-photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
    order: -1;
  }
  .page-hero-split-text {
    padding: 2rem 1.25rem 2.5rem;
  }
}

/* ===== MEETING POINT ===== */
.meeting-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.meeting-address-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 6px solid var(--orange);
}

.meeting-address-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.meeting-address {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.meeting-address strong {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.meeting-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.meeting-note {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.meeting-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow);
}

.meeting-map iframe {
  display: block;
  height: 100%;
}

/* ===== DIRECTIONS ===== */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.direction-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
}

.direction-icon {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.direction-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.direction-sub {
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.direction-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
}

.direction-card li {
  padding: 0.35rem 0 0.35rem 1.35rem;
  position: relative;
  font-size: 0.93rem;
  color: var(--gray-800);
  line-height: 1.5;
}

.direction-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ===== EXPECT ===== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.expect-item {
  text-align: center;
  padding: 1.5rem;
}

.expect-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.expect-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.expect-item p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ===== INFO CARD ===== */
.info-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
}

.info-card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-card-body p {
  color: var(--gray-600);
  line-height: 1.6;
}

.info-card-body a {
  font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
  .hero-band {
    padding: 2.5rem 0 3rem;
  }
  .hero-band-content {
    padding: 0 0.5rem;
  }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s;
    z-index: 99;
  }

  .nav.open {
    right: 0;
  }

  .nav a {
    color: var(--white);
    padding: 0.75rem 0;
    width: 100%;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav .btn-primary {
    margin-top: 1rem;
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links-wide {
    grid-column: 1 / -1;
  }

  .footer-links-wide-list {
    columns: 2;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }
}

@media (max-width: 800px) {
  .meeting-hero {
    grid-template-columns: 1fr;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  .bigger-group-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .price-table-wrap {
    padding: 1.25rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 500px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .fact-number {
    font-size: 1.75rem;
  }
}
