/* ============================================================
   Concierge Porto — main.css
   Design system: Navy #123352 | Gold #BB9846 | White #ffffff
   Fonts: Playfair Display (headings) | Montserrat (body)
   ============================================================ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-navy:       #123352;
  --color-navy-dark:  #0d1e30;
  --color-navy-mid:   #1a4a6e;
  --color-gold:       #BB9846;
  --color-gold-light: #d4b56a;
  --color-gold-soft:  rgba(187,152,70,0.12);
  --color-white:      #ffffff;
  --color-off-white:  #f8f6f2;
  --color-cream:      #fbf9f5;
  --color-text:       #123352;
  --color-text-light: #4a6580;
  --color-border:     rgba(18,51,82,0.08);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', 'DM Sans', Arial, sans-serif;

  --max-width:        1224px;
  --max-text-width:   68ch;
  --section-pad-y:    clamp(64px, 8vw, 112px);
  --section-pad-x:    clamp(20px, 5vw, 48px);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 3px rgba(18,51,82,0.06), 0 2px 8px rgba(18,51,82,0.08);
  --shadow-md:  0 4px 14px rgba(18,51,82,0.10), 0 8px 24px rgba(18,51,82,0.10);
  --shadow-lg:  0 10px 30px rgba(18,51,82,0.16), 0 16px 48px rgba(18,51,82,0.12);

  --transition:      0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s  cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.3; }
h5 { font-size: clamp(0.95rem, 1.2vw, 1.05rem); line-height: 1.4; }

p { line-height: 1.72; }

/* Long-form body paragraphs (inside content sections) get a comfortable measure */
.section p,
.legal-content p,
.feature-block__text {
  max-width: var(--max-text-width);
}
.section .text-center p,
.section p.text-center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section-header p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* Explicitly white text everywhere on navy / dark backgrounds */
.section--navy,
.section--navy p,
.section--navy li,
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5,
.section--navy h6,
.reviews-section,
.reviews-section p,
.stats-bar,
.site-footer,
.site-footer p,
.site-footer a,
.service-card,
.service-card p,
.service-tile,
.service-tile p,
.feature-block__content,
.feature-block__content p,
.faq-answer { color: var(--color-white); }

/* Section-header overlines/headings keep navy-on-light, gold-on-navy */
.section--navy .section-header h2,
.section--navy .section-header p { color: var(--color-white); }
.section--navy .label-overline { color: var(--color-gold-light); }

.label-overline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
}

/* ─── LAYOUT HELPERS ────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.section {
  padding: var(--section-pad-y) var(--section-pad-x);
}

/* Tighten the gap when sections sit back-to-back */
.section + .section { padding-top: clamp(40px, 5vw, 64px); }

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

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

.text-center { text-align: center; }
.text-white  { color: var(--color-white); }
.text-gold   { color: var(--color-gold); }
.text-navy   { color: var(--color-navy); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1.5px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}
.btn--primary:hover {
  background: var(--color-navy-mid);
  border-color: var(--color-navy-mid);
  box-shadow: 0 8px 24px rgba(18,51,82,0.28);
  color: var(--color-white);
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}
.btn--gold:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  box-shadow: 0 8px 24px rgba(187,152,70,0.35);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.85);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn--outline-navy {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(18,51,82,0.20);
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: 0 1px 0 rgba(18,51,82,0.06), 0 8px 24px rgba(18,51,82,0.06);
}


.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 32px;
  transition: height var(--transition);
}
.site-header.scrolled .header-inner { height: 92px; }

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 96px;
  width: auto;
  transition: height var(--transition);
}
.site-header.scrolled .site-logo img { height: 72px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 1px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-gold-light);
  background: rgba(255,255,255,0.06);
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }

.site-header.scrolled .site-nav a {
  color: var(--color-gold);
  text-shadow: none;
}
.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active {
  color: var(--color-navy);
  background: rgba(18,51,82,0.06);
}

.header-cart {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.95);
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.header-cart:hover { color: var(--color-gold-light); background: rgba(255,255,255,0.06); }
.site-header.scrolled .header-cart { color: var(--color-navy); text-shadow: none; }
.site-header.scrolled .header-cart:hover { color: var(--color-gold); background: var(--color-off-white); }
.header-cart svg { width: 22px; height: 22px; }

/* Burger menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 100px 24px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
  padding: 18px 24px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  border-bottom: 1px solid var(--color-off-white);
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--color-gold); }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .burger   { display: flex; }
  .header-inner { height: 88px; }
  .site-logo img { height: 64px; }
  .site-header.scrolled .header-inner { height: 72px; }
  .site-header.scrolled .site-logo img { height: 56px; }
}

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,30,48,0.40) 0%, rgba(13,30,48,0.18) 35%, rgba(13,30,48,0.70) 100%),
    linear-gradient(120deg, rgba(13,30,48,0.55) 0%, transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 140px var(--section-pad-x) 100px;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 0;
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-gold-light);
  flex-shrink: 0;
}

.hero__title {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--color-gold);
  display: block;
}

/* Hero title — per-language gold word positioning */
.hero__title .hero-w { display: block; color: var(--color-white); }
.hero__title .hero-w3 { color: var(--color-gold); }

/* Romance languages: Concierge sits in 2nd position (gold), trailing word is the "personal" equivalent (white) */
[lang^="pt"] .hero__title .hero-w2,
[lang^="fr"] .hero__title .hero-w2,
[lang^="es"] .hero__title .hero-w2,
[lang^="it"] .hero__title .hero-w2 { color: var(--color-gold); }

[lang^="pt"] .hero__title .hero-w3,
[lang^="fr"] .hero__title .hero-w3,
[lang^="es"] .hero__title .hero-w3,
[lang^="it"] .hero__title .hero-w3 { color: var(--color-white); }

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: high-quality;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,30,48,0.30) 0%, rgba(13,30,48,0.15) 35%, rgba(13,30,48,0.70) 100%),
    linear-gradient(135deg, rgba(13,30,48,0.40) 0%, transparent 55%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 140px var(--section-pad-x) 100px;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.page-hero__overline {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero__overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-gold-light);
  flex-shrink: 0;
}
.page-hero__title {
  color: var(--color-white);
  font-size: clamp(2.8rem, 5.6vw, 5rem);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* Page hero sub-headline support */
.page-hero__sub {
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  font-weight: 400;
}

/* Gold accent line under page hero title */
.page-hero__title::after {
  content: '';
  display: block;
  width: 52px;
  height: 2px;
  background: var(--color-gold);
  margin-top: 20px;
  border-radius: 2px;
}

/* Hero sub-headline */
.hero__sub {
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
  font-weight: 400;
}

/* Hero CTA group */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__cta-primary {
  font-size: 0.95rem;
  padding: 16px 32px;
  box-shadow: 0 8px 32px rgba(187,152,70,0.45);
}
.hero__cta-primary:hover {
  box-shadow: 0 12px 40px rgba(187,152,70,0.55);
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.how-step {
  text-align: center;
  padding: 0 20px;
}

.how-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(187,152,70,0.35);
}

.how-step__title {
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.how-step__text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 26ch;
  margin: 0 auto;
}

.how-step__connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, rgba(187,152,70,0.3) 100%);
  margin-top: 27px;
  flex-shrink: 0;
  position: relative;
}
.how-step__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 360px;
  }
  .how-step__connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--color-gold) 0%, rgba(187,152,70,0.3) 100%);
  }
  .how-step__connector::after {
    right: -4px;
    top: auto;
    bottom: -5px;
    transform: rotate(135deg);
  }
  .how-step__text { max-width: 100%; }
}

/* ─── CONTACT FORM DIVIDER ───────────────────────────────────── */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.contact-divider span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── MOBILE STICKY CTA ──────────────────────────────────────── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 8998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.mobile-sticky-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.92rem;
  padding: 14px 20px;
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  /* Prevent cookie banner from overlapping sticky CTA */
  #cookie-banner { bottom: 72px; }
}

@media (max-width: 900px) {
  .page-hero { height: 100svh; }
  .hero__content,
  .page-hero__content { padding: 100px var(--section-pad-x) 60px; }
  .page-hero__title,
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero__eyebrow,
  .page-hero__overline { font-size: 0.7rem; letter-spacing: 0.2em; margin-bottom: 18px; }
  .hero__sub { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__ctas { gap: 10px; }
}

@media (max-width: 480px) {
  .page-hero { height: 100svh; min-height: 480px; }
}

/* ─── SERVICES CARDS ────────────────────────────────────────── */
.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-navy);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card__body {
  padding: 28px 26px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__title {
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card__text {
  font-size: 0.92rem;
  opacity: 0.88;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(3 * 1.7em);
}
.service-card__link {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition), letter-spacing var(--transition);
}
.service-card__link:hover {
  color: var(--color-gold-light);
  letter-spacing: 0.13em;
}

/* ─── FEATURE SECTION (alternating image/text) ──────────────── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.feature-block--reverse { direction: rtl; }
.feature-block--reverse > * { direction: ltr; }

.feature-block__img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.feature-block__content {
  background: var(--color-navy);
  color: var(--color-white);
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.feature-block__overline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.feature-block__title { color: var(--color-white); }
.feature-block__text {
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-block__img { min-height: 260px; }
}

/* ─── REVIEWS ───────────────────────────────────────────────── */
.reviews-section {
  background: var(--color-navy);
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(187,152,70,0.10), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.reviews-section .section-header {
  color: var(--color-white);
  margin-bottom: 56px;
  position: relative;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition-slow), border-color var(--transition-slow), background var(--transition-slow);
  position: relative;
  backdrop-filter: blur(4px);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 22px;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.35;
  pointer-events: none;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(187,152,70,0.35);
  background: rgba(255,255,255,0.09);
}
.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.90);
  line-height: 1.78;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  color: var(--color-gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.reviews-section .review-author {
  color: var(--color-gold-light);
}

/* ─── GALLERY GRID ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-grid .gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
}
.gallery-grid .gallery-item:hover img { transform: scale(1.06); }
.gallery-grid .gallery-item--span-2 {
  grid-column: span 2;
  grid-row: span 2;
}

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

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--color-white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-field input:hover,
.form-field textarea:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-gold);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(187,152,70,0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

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

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 80px var(--section-pad-x) 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-logo { height: auto; max-height: 150px; width: auto; max-width: 320px; object-fit: contain; display: block; }
.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 320px;
  margin-top: 4px;
}
.footer-tagline .tagline-em {
  display: inline;
  color: var(--color-gold);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
}
.footer-brand .footer-social { justify-content: center; }
.footer-contacts h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.footer-contacts p {
  font-size: 0.88rem;
  opacity: 0.82;
  margin-bottom: 4px;
}
.footer-contacts a {
  color: inherit;
  opacity: 0.82;
  font-size: 0.88rem;
  transition: opacity var(--transition);
  display: block;
  margin-bottom: 4px;
}
.footer-contacts a:hover { opacity: 1; color: var(--color-gold); }
.footer-links h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  font-size: 0.88rem;
  opacity: 0.82;
  margin-bottom: 8px;
  transition: opacity var(--transition), color var(--transition);
}
.footer-links a:hover { opacity: 1; color: var(--color-gold); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
  background: rgba(187,152,70,0.08);
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.65;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-tagline { max-width: 100%; }
}

/* ─── SECTION HEADERS ───────────────────────────────────────── */
.section-header { margin-bottom: 56px; text-align: center; }
.section-header .label-overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-header .label-overline::before,
.section-header .label-overline::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--color-gold);
}
.section-header h2 { margin-top: 0; }
.section-header p {
  margin-top: 18px;
  font-size: 1.02rem;
  opacity: 0.82;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ─── VALUES / FEATURE LIST ─────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 32px; }
.value-item { display: flex; gap: 22px; align-items: flex-start; }
.value-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(187,152,70,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
}
.value-content h4 {
  font-size: 1.05rem;
  color: var(--color-gold);
  margin-bottom: 8px;
  line-height: 1.3;
}
.value-content p {
  font-size: 0.92rem;
  opacity: 0.88;
  line-height: 1.7;
  max-width: 60ch;
}

/* ─── SERVICES GRID (services page) ─────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-navy);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.service-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-tile__img-wrap { overflow: hidden; }
.service-tile__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-tile:hover .service-tile__img { transform: scale(1.05); }
.service-tile__body {
  padding: 24px 22px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-tile__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-gold) !important;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-tile__text {
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.7;
  flex: 1;
}

/* ─── TOURS GRID ─────────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.tour-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card__img-wrap { overflow: hidden; }
.tour-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.tour-card:hover .tour-card__img { transform: scale(1.05); }
.tour-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tour-card__text {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(3 * 1.7em);
}
.tour-card__body > div:last-child,
.tour-card__body .btn { margin-top: auto; }
.section--navy .tour-card__title { color: var(--color-navy); }
.section--navy .tour-card__text  { color: var(--color-text-light); }

/* ─── PROCESS STEPS ──────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  counter-reset: steps;
}
.step-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  counter-increment: steps;
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(187,152,70,0.3);
}
.step-content { flex: 1; }
.step-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-white);
  line-height: 1.3;
}
.step-content p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.7;
  max-width: 60ch;
}

/* ─── INFO BOX ───────────────────────────────────────────────── */
.info-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
}
.info-box h3 {
  color: var(--color-gold);
  font-size: 1.15rem;
  margin-bottom: 18px;
  line-height: 1.3;
}
.info-box ul { display: flex; flex-direction: column; gap: 10px; }
.info-box li {
  font-size: 0.92rem;
  opacity: 0.92;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}
.info-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--color-gold);
  font-weight: 700;
}

/* ─── FAQS ───────────────────────────────────────────────────── */
.faq-group { margin-bottom: 48px; }
.faq-group__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  letter-spacing: -0.005em;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50%;
  font-size: 0.7rem;
  transition: all var(--transition);
}
.faq-question[aria-expanded="true"] { color: var(--color-gold); }
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: rotate(45deg);
  color: var(--color-navy);
}
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 0.92rem;
  opacity: 0.88;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 720px;
}
.faq-answer.open { display: block; }

/* ─── TRAVEL GUIDE LONG-FORM CONTENT ─────────────────────────── */
.guide-content {
  max-width: 820px;
  margin: 0 auto;
}
.guide-content h2 {
  margin-top: 64px;
  margin-bottom: 20px;
  color: var(--color-navy);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
}
.guide-content h3 {
  margin-top: 56px;
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  position: relative;
  padding-bottom: 12px;
}
.guide-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}
.guide-content h4 {
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  letter-spacing: 0.005em;
}
.guide-content > *:first-child { margin-top: 0; }
.guide-content p {
  margin-bottom: 18px;
  line-height: 1.78;
  max-width: 100%;
}
.guide-content p:last-child { margin-bottom: 0; }
.guide-content p strong {
  color: var(--color-navy);
  font-weight: 700;
}

/* ─── TRAVEL GUIDES / PRODUCTS ──────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card__img-wrap { overflow: hidden; }
.product-card__img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__body {
  padding: 26px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  line-height: 1.4;
}
.product-card__price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-top: auto;
}
.product-card .btn {
  margin-top: 0;
  width: 100%;
  padding: 12px;
  font-size: 0.85rem;
}

/* Sort bar */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sort-bar label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
}
.sort-bar select {
  padding: 10px 36px 10px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-navy);
  background: var(--color-white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23123352' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.sort-bar select:hover {
  border-color: var(--color-gold);
}
.sort-bar select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(187,152,70,0.15);
}

/* ─── LEGAL PAGES ────────────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-pad-y) var(--section-pad-x);
}
.legal-content h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.15;
}
.legal-content .overline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 36px;
  display: block;
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin: 40px 0 14px;
  line-height: 1.3;
}
.legal-content p {
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 0.98rem;
  color: var(--color-text);
}
.legal-content ul {
  list-style: disc;
  padding-left: 26px;
  margin-bottom: 20px;
}
.legal-content ul li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.legal-content a {
  color: var(--color-navy);
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.legal-content a:hover { color: var(--color-gold); }

/* ─── WHATSAPP BUBBLE ────────────────────────────────────────── */
.whatsapp-bubble {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--color-white);
  padding: 13px 20px 13px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.18);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.whatsapp-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.2);
  color: var(--color-white);
}
.whatsapp-bubble svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-bubble__label { display: inline; }

@media (max-width: 768px) {
  /* On mobile, collapse to icon-only since the sticky CTA handles conversion */
  .whatsapp-bubble {
    bottom: 86px; /* sit above sticky CTA */
    left: 16px;
    padding: 12px;
    border-radius: 50%;
    gap: 0;
  }
  .whatsapp-bubble__label { display: none; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes waPulse {
  0%   { box-shadow: 0 6px 20px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 6px 20px rgba(37,211,102,0.40), 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.40), 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-bubble {
  animation: waPulse 3s ease-out 4s infinite;
}

.animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

/* ─── UTILITY ─────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ─── RESPONSIVE HELPERS ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .section { padding: 56px var(--section-pad-x); }
  .section-header { margin-bottom: 40px; }
  .grid-2, .grid-3, .grid-4 { gap: 20px; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ─── COOKIE CONSENT ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy-dark);
  color: var(--color-white);
  padding: 22px var(--section-pad-x);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--color-gold);
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  flex-wrap: wrap;
}
#cookie-banner p {
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0;
}
#cookie-banner p a {
  color: var(--color-gold);
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
#cookie-banner.hidden { display: none; }

/* ─── ABOUT PAGE SPECIFICS ───────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .about-intro-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Photo grid for About */
.photo-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 480px;
}
.photo-grid-2x3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-slow);
}
.photo-grid-2x3 img:hover { transform: scale(1.02); }
.photo-grid-2x3 .tall {
  grid-row: span 2;
}
@media (max-width: 700px) {
  .photo-grid-2x3 {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 10px;
  }
  .photo-grid-2x3 img { height: 180px; }
}

/* ─── TRUST STATS BAR ─────────────────────────────────────────── */
.stats-bar {
  background: var(--color-navy);
  padding: 64px 0;
  border-top: 2px solid var(--color-gold);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(187,152,70,0.06) 0%, transparent 100%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .stats-bar { padding: 48px 0; }
}

.stat-item {
  padding: 8px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,0.18) 30%,
    rgba(255,255,255,0.18) 70%,
    transparent 100%
  );
}
@media (max-width: 768px) {
  .stat-item { padding: 8px 16px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(odd)::before { display: none; }
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 2.8rem);
  color: var(--color-gold);
  line-height: 1;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  line-height: 1.4;
}

/* ─── WHY CHOOSE US CARDS ─────────────────────────────────────── */
.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border-top: 2px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-card:hover::after { opacity: 1; }

.why-icon {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--color-gold-soft);
  border-radius: 50%;
  border: 1px solid rgba(187,152,70,0.2);
}

.why-card h3 {
  color: var(--color-navy);
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  color: var(--color-text-light);
  font-size: 0.90rem;
  line-height: 1.75;
}

/* ─── FORM HINT ───────────────────────────────────────────────── */
.form-hint {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.form-hint a {
  color: var(--color-gold-light);
  text-decoration: underline;
}
.form-hint--light {
  color: var(--color-text-light);
}
.form-hint--light a {
  color: var(--color-navy);
}

/* ─── WHY-CARD ON PLAIN WHITE BACKGROUNDS ─────────────────────── */
.section:not(.section--off-white):not(.section--navy) .why-card {
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
}

/* ─── MOBILE FIXES ─────────────────────────────────────────────── */

/* iPhone safe area for sticky CTA (notch/home bar) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-sticky-cta {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  @media (max-width: 768px) {
    #cookie-banner { bottom: calc(72px + env(safe-area-inset-bottom)); }
  }
}

/* Hero CTAs: stack vertically on small phones */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }
  .hero__ctas .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.88rem;
    padding: 14px 20px;
  }
}

/* Tour/guide page CTA pairs: stack on mobile */
@media (max-width: 480px) {
  .section--navy [style*="display:flex"][style*="gap:16px"],
  .section--navy div[style*="display:flex"] {
    flex-wrap: wrap;
  }
  .section--navy .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Reduce h2 font size on very small screens */
@media (max-width: 360px) {
  h2 { font-size: 1.65rem; }
  h1 { font-size: 2.1rem; }
  .page-hero__title { font-size: 2rem; }
}

/* Improve tap target size on mobile nav links */
@media (max-width: 900px) {
  .mobile-nav a { min-height: 56px; display: flex; align-items: center; justify-content: center; }
}

/* Footer social icons: slightly larger touch targets on mobile */
@media (max-width: 560px) {
  .footer-social a { width: 44px; height: 44px; }
  .footer-social { gap: 14px; }
}

/* About intro grid image: limit height on mobile so it doesn't dominate */
@media (max-width: 768px) {
  .about-intro-grid > div:last-child img {
    max-height: 320px;
    object-fit: cover;
  }
}

/* Prevent long words from breaking layout on mobile */
@media (max-width: 600px) {
  p, li, h1, h2, h3 { overflow-wrap: break-word; word-break: break-word; }
}

/* Why-cards grid: always single column on small phones */
@media (max-width: 480px) {
  .why-cards-grid { grid-template-columns: 1fr !important; }
}
