/* ══════════════════════════════════════════════
   AZORES RESERVATIONS TRAVEL — Shared Stylesheet
   ══════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --ink:       #090d12;
  --deep:      #0d1f2d;
  --ocean:     #0f3250;
  --slate:     #2a4a62;
  --mist:      #7a96a8;
  --gold:      #c08a4e;
  --gold-lt:   #dba96e;
  --gold-dim:  rgba(192,138,78,0.15);
  --cream:     #f0ebe0;
  --warm:      #faf7f1;
  --white:     #ffffff;

  --ff-display: 'Cormorant Garant', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --section-gap: clamp(80px, 10vw, 130px);
  --container: 1240px;
  --radius:    4px;
  --header-h:  76px;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--warm);
  color: var(--deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); }
input, select, textarea { font-family: var(--ff-body); }

/* ── GRAIN OVERLAY ───────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* ── TYPOGRAPHY ──────────────────────────────── */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  line-height: 1.2;
}
.label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.body-lg { font-size: clamp(1rem, 1.4vw, 1.1rem); line-height: 1.8; font-weight: 300; }
.body-sm { font-size: 0.875rem; line-height: 1.72; font-weight: 300; }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section-pad { padding-block: var(--section-gap); }

/* ── COMPONENTS ──────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.gold-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: transparent;
  color: var(--deep);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem 1.8rem;
  border: 1px solid rgba(15,50,80,0.3);
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL REVEAL ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--header-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#site-header.scrolled {
  background: rgba(9,13,18,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  line-height: 1;
}
.logo-main {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.main-nav a,
.nav-dropdown > button {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  white-space: nowrap;
}
.main-nav a:hover,
.nav-dropdown > button:hover,
.main-nav a.active { color: var(--white); }
.main-nav a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(9,13,18,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  min-width: 200px;
  padding: 0.5rem 0;
  padding-top: 0.75rem; /* visual gap without breaking hover */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
}
/* Invisible bridge so hover isn't lost crossing the gap to the menu */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 12px; /* covers the gap */
  display: none;
}
.nav-dropdown:hover::after { display: block; }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.05em !important;
  color: rgba(255,255,255,0.6) !important;
  text-transform: none !important;
  transition: color 0.15s, background 0.15s;
  border-radius: 0;
}
.nav-dropdown-menu a:hover { color: var(--gold) !important; background: rgba(255,255,255,0.04); }
.nav-dropdown-menu a.active { color: var(--gold) !important; }
.chevron-icon { width: 10px; height: 10px; transition: transform 0.2s; }
.nav-dropdown:hover .chevron-icon { transform: rotate(180deg); }

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { width: 13px; height: 13px; }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  transition: all 0.2s;
  font-weight: 500;
}
.lang-btn.active { background: var(--gold); color: var(--white); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
#mobile-nav.open { opacity: 1; }
#mobile-nav a {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
#mobile-nav a:hover { color: var(--gold); }
#mobile-nav .mobile-nav-section {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}
#mobile-nav .mobile-subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 360px;
}
#mobile-nav .mobile-subnav a {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: clamp(380px, 55vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,13,18,0.2) 0%,
    rgba(9,13,18,0.55) 60%,
    rgba(9,13,18,0.88) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
  padding-top: calc(var(--header-h) + 2rem);
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero-title { color: var(--white); }
.page-hero-sub {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  font-weight: 300;
}

/* ══════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════ */
#home-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,13,18,0.1) 0%,
    rgba(9,13,18,0.08) 40%,
    rgba(9,13,18,0.65) 72%,
    rgba(9,13,18,0.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 7vh, 5.5rem);
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.hero-eyebrow .label { color: var(--gold); }
.hero-eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.hero-title { color: var(--white); max-width: 760px; margin-bottom: 1.4rem; }
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  color: rgba(255,255,255,0.62);
  max-width: 450px;
  margin-bottom: 2.25rem;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.45;
}
.hero-scroll-hint span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--white));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar { background: var(--ink); padding: 2.25rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.stat-item {
  background: var(--ink);
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-suffix { font-size: 0.65em; }
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ══════════════════════════════════════════════
   WHY AZORES (HOME)
══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.why-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.why-card img { transition: transform 0.8s var(--ease-out); }
.why-card:hover img { transform: scale(1.05); }
.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,13,18,0.88) 0%, rgba(9,13,18,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2rem);
}
.why-card-num { font-family: var(--ff-display); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 0.5rem; }
.why-card-title { font-family: var(--ff-display); font-size: clamp(1.3rem, 2.2vw, 1.85rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 0.6rem; }
.why-card-text { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; max-width: 340px; opacity: 0; transform: translateY(6px); transition: opacity 0.35s, transform 0.35s; }
.why-card:hover .why-card-text { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   SERVICES GRID (HOME)
══════════════════════════════════════════════ */
.services-section { padding-block: var(--section-gap); background: var(--deep); }
.services-section .section-label .label { color: var(--gold); }
.services-section .display-lg { color: var(--white); }
.services-section > .container > p { color: rgba(255,255,255,0.5); margin-top: 0.75rem; max-width: 580px; }
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.service-card {
  background: var(--deep);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.service-card:hover { background: rgba(15,50,80,0.75); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(192,138,78,0.3);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover .service-icon { background: var(--gold-dim); border-color: var(--gold); }
.service-icon svg { width: 19px; height: 19px; }
.service-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--white); line-height: 1.2; }
.service-desc { font-size: 0.8rem; color: rgba(255,255,255,0.42); line-height: 1.68; font-weight: 300; flex: 1; }
.service-link { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; margin-top: auto; }
.service-card:hover .service-link { gap: 0.7rem; }

/* ══════════════════════════════════════════════
   EXPERIENCES SLIDER (HOME)
══════════════════════════════════════════════ */
.exp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  gap: 2rem;
}
.exp-nav { display: flex; gap: 0.5rem; flex-shrink: 0; }
.exp-nav-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(15,50,80,0.2);
  background: transparent; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--deep);
  transition: all 0.2s;
}
.exp-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.exp-nav-btn svg { width: 15px; height: 15px; }
.exp-track-outer { overflow: hidden; }
.exp-track { display: flex; gap: 1.25rem; transition: transform 0.6s var(--ease-out); }
.exp-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 260px;
  position: relative; overflow: hidden; border-radius: 2px;
}
.exp-card-img { aspect-ratio: 3/4; overflow: hidden; }
.exp-card-img img { transition: transform 0.8s var(--ease-out); }
.exp-card:hover .exp-card-img img { transform: scale(1.06); }
.exp-card-body {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,13,18,0.9) 0%, rgba(9,13,18,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem;
}
.exp-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem; }
.exp-title { font-family: var(--ff-display); font-size: clamp(1.3rem, 1.8vw, 1.65rem); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 0.6rem; }
.exp-desc { font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.62; font-weight: 300; }

/* ══════════════════════════════════════════════
   ABOUT TEASER (HOME)
══════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -1.5rem;
  width: 52%; aspect-ratio: 4/3;
  overflow: hidden; border: 3px solid var(--warm); border-radius: 2px;
}
.about-badge {
  position: absolute; top: 2rem; left: -1.25rem;
  background: var(--gold); color: var(--white);
  padding: 1.1rem 1.4rem; border-radius: 2px; text-align: center;
  box-shadow: 0 8px 28px rgba(192,138,78,0.38);
}
.about-badge-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 300; line-height: 1; }
.about-badge-text { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; margin-top: 0.25rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.trust-item {
  background: var(--white); border: 1px solid rgba(15,50,80,0.08);
  padding: 1rem 0.75rem; border-radius: var(--radius); text-align: center;
}
.trust-icon { font-size: 1.4rem; margin-bottom: 0.35rem; }
.trust-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); font-weight: 500; }

/* ══════════════════════════════════════════════
   B2B BAND (HOME)
══════════════════════════════════════════════ */
.b2b-band {
  background: var(--ink);
  padding-block: var(--section-gap);
  position: relative;
  overflow: hidden;
}
.b2b-band-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,138,78,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,138,78,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.b2b-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.b2b-band-text { max-width: 560px; }
.b2b-band-text .display-lg { color: var(--white); }
.b2b-band-text p { color: rgba(255,255,255,0.45); margin-top: 1rem; }
.b2b-band-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   SERVICE DETAIL PAGES
══════════════════════════════════════════════ */
.service-overview {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.service-overview .display-lg { color: var(--ink); }
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15,50,80,0.07);
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}
.service-meta-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.25rem; }
.meta-list { display: flex; flex-direction: column; gap: 0.75rem; }
.meta-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15,50,80,0.07);
}
.meta-item:last-child { border-bottom: none; padding-bottom: 0; }
.meta-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.meta-icon svg { width: 15px; height: 15px; }
.meta-text .meta-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.15rem; }
.meta-text p { font-size: 0.88rem; color: var(--deep); font-weight: 400; }

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.include-item {
  display: flex; gap: 0.6rem; align-items: flex-start;
  padding: 0.9rem 1rem;
  background: var(--warm);
  border: 1px solid rgba(15,50,80,0.07);
  border-radius: var(--radius);
}
.include-check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.include-check svg { width: 15px; height: 15px; }
.include-text { font-size: 0.84rem; color: var(--slate); line-height: 1.5; }

.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.process-step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2rem; position: relative;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 40px;
  width: 1px; bottom: 0;
  background: rgba(192,138,78,0.25);
}
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1rem; font-weight: 400; color: var(--gold);
  position: relative; z-index: 1;
}
.step-content h4 { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.35rem; }
.step-content p { font-size: 0.85rem; color: var(--slate); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.07);
  border-radius: var(--radius);
  transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover { box-shadow: 0 12px 32px rgba(15,50,80,0.1); transform: translateY(-2px); }
.value-icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1rem; }
.value-icon svg { width: 20px; height: 20px; }
.value-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.value-text { font-size: 0.84rem; color: var(--slate); line-height: 1.7; font-weight: 300; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; overflow: hidden; border-radius: 2px; margin-bottom: 1rem; }
.team-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--ink); }
.team-role { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; }
.team-bio { font-size: 0.82rem; color: var(--slate); line-height: 1.65; font-weight: 300; margin-top: 0.5rem; }

/* ══════════════════════════════════════════════
   DESTINATIONS PAGE
══════════════════════════════════════════════ */
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.attraction-card {
  position: relative; overflow: hidden; border-radius: 2px;
  aspect-ratio: 4/3;
}
.attraction-card img { transition: transform 0.7s var(--ease-out); }
.attraction-card:hover img { transform: scale(1.06); }
.attraction-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,13,18,0.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
}
.attraction-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--white); }
.attraction-sub { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; font-weight: 300; }

.islands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.island-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.07);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}
.island-card:hover { border-color: var(--gold); }
.island-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.35rem; }
.island-highlight { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.island-text { font-size: 0.83rem; color: var(--slate); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════════════
   PARTNERS PAGE
══════════════════════════════════════════════ */
.partner-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.partner-type-card {
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.partner-type-card:hover { box-shadow: 0 16px 40px rgba(15,50,80,0.1); transform: translateY(-3px); }
.partner-type-img { aspect-ratio: 16/9; overflow: hidden; }
.partner-type-img img { transition: transform 0.7s var(--ease-out); }
.partner-type-card:hover .partner-type-img img { transform: scale(1.06); }
.partner-type-body { padding: 1.75rem; }
.partner-type-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.partner-type-title { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 500; color: var(--ink); margin-bottom: 0.6rem; }
.partner-type-text { font-size: 0.83rem; color: var(--slate); line-height: 1.68; font-weight: 300; }

.benefits-list { display: flex; flex-direction: column; gap: 1rem; }
.benefit-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.25s;
}
.benefit-item:hover { box-shadow: 0 4px 16px rgba(15,50,80,0.07); }
.benefit-icon { width: 36px; height: 36px; background: var(--gold-dim); border-radius: 2px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.benefit-icon svg { width: 16px; height: 16px; }
.benefit-text h4 { font-size: 0.92rem; font-weight: 500; color: var(--ink); margin-bottom: 0.25rem; }
.benefit-text p { font-size: 0.82rem; color: var(--slate); line-height: 1.65; font-weight: 300; }

.partner-form-wrap {
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.08);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 720px;
}

/* ══════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-detail-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.07);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: border-color 0.25s;
}
.contact-detail-item:hover { border-color: var(--gold); }
.contact-icon {
  width: 40px; height: 40px; background: var(--deep); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.contact-icon svg { width: 15px; height: 15px; }
.contact-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.2rem; }
.contact-value { font-size: 0.9rem; color: var(--deep); font-weight: 400; }

/* ══════════════════════════════════════════════
   FORM (shared)
══════════════════════════════════════════════ */
.form-wrap {
  background: var(--white);
  border: 1px solid rgba(15,50,80,0.08);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--warm);
  border: 1px solid rgba(15,50,80,0.12);
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-size: 0.9rem; color: var(--ink); font-weight: 300;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192,138,78,0.1);
}
.form-group textarea { min-height: 115px; resize: vertical; }
.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%232a4a62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success svg { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 1rem; }
.form-success h3 { font-family: var(--ff-display); font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--ink); }
.form-success p { color: var(--mist); font-size: 0.9rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#site-footer {
  background: var(--ink);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-logo-main { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--white); }
.footer-logo-sub { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.32); line-height: 1.7; font-weight: 300; max-width: 260px; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38); background: transparent;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 13px; height: 13px; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.42); font-weight: 300; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-line { font-size: 0.82rem; color: rgba(255,255,255,0.42); font-weight: 300; line-height: 1.65; margin-bottom: 0.55rem; }
.footer-contact-line strong { color: rgba(255,255,255,0.65); font-weight: 400; }
.footer-bottom {
  padding-block: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.73rem; color: rgba(255,255,255,0.22); font-weight: 300; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   CTA BAND (reusable)
══════════════════════════════════════════════ */
.cta-band {
  background: var(--deep);
  padding-block: clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}
.cta-band .display-md { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.48); margin-bottom: 2rem; }
.cta-band-btns { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid-home { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { left: 1rem; }
  .service-overview { grid-template-columns: 1fr; }
  .service-meta { position: static; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .attraction-grid { grid-template-columns: 1fr 1fr; }
  .islands-grid { grid-template-columns: 1fr 1fr; }
  .partner-types-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .menu-btn { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { aspect-ratio: 16/9; }
  .services-grid-home { grid-template-columns: 1fr 1fr; }
  .exp-card { flex: 0 0 calc(80% - 0.6rem); }
  .b2b-band-inner { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .services-grid-home { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .attraction-grid { grid-template-columns: 1fr; }
  .islands-grid { grid-template-columns: 1fr; }
  .partner-types-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
