/* ==========================================================================
   ROAMIA — Premium boutique travel agency
   Palette: Navy #0B2545 · Gold #C6A24C · Ivory #F7F6F3 · Grey #6F7682
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  --navy: #0B2545;
  --navy-soft: #16345c;
  --gold: #C6A24C;
  --gold-dark: #a9863a;
  --ivory: #F7F6F3;
  --grey: #6F7682;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  --maxw: 1200px;
  --shadow-soft: 0 20px 50px -20px rgba(11, 37, 69, 0.25);
  --shadow-card: 0 10px 30px -12px rgba(11, 37, 69, 0.22);
  --radius: 10px;

  --header-h: 78px;
  --space-section: 6rem;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--navy);
  background: var(--white);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--gold-dark);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p + p {
  margin-top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--space-section) 0;
}

/* Eyebrow — the small uppercase gold accent */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow-light {
  color: var(--gold);
  opacity: 0.95;
}

/* Section headers */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-head h2 + .section-lead {
  margin-top: 1.25rem;
}

.section-lead {
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-more {
  text-align: center;
  margin-top: 3rem;
}
/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 0.92rem;
}

.btn-sm {
  padding: 0.6rem 1.35rem;
  font-size: 0.78rem;
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 12px 24px -10px rgba(198, 162, 76, 0.6);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(198, 162, 76, 0.65);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-text {
  background: none;
  color: var(--gold-dark);
  padding: 0;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.btn-text:hover {
  color: var(--navy);
  gap: 0.8rem;
}

/* --------------------------------------------------------------------------
   4. Navbar — WHITE background, navy text, gold accent, sticky
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(11, 37, 69, 0.08);
  box-shadow: 0 1px 12px rgba(11, 37, 69, 0.05);
  transition: box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(11, 37, 69, 0.18);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--navy);
}

.brand:hover { color: var(--navy); }

.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  max-height: calc(var(--header-h) - 20px);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.45rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-dark);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-link.is-active {
  color: var(--gold-dark);
}

.nav-cta {
  margin-left: 0.25rem;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. Hero — cinematic, with overlay
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(11, 37, 69, 0.25) 0%,
      rgba(11, 37, 69, 0.45) 50%,
      rgba(11, 37, 69, 0.72) 100%);
}

/* Hero slideshow — stacked slides cross-fade into one another */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 1.2s ease, visibility 1.2s ease, transform 6s linear;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Slide dots — small, gold accents at the bottom */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 5.4rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero-dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 4rem;
  max-width: 820px;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.2rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll:hover { color: #fff; }

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* --------------------------------------------------------------------------
   6. Intro section
   -------------------------------------------------------------------------- */
.intro-section {
  background: var(--ivory);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
  max-width: 18ch;
}

.intro-lead {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 46ch;
}

.intro-highlights {
  display: grid;
  gap: 1.6rem;
}

.highlight-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.highlight-mark {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(198, 162, 76, 0.16);
}

.highlight-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.highlight-item p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   7. Featured journey (split layout)
   -------------------------------------------------------------------------- */
.featured-section {
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.featured-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.featured-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.featured-media:hover img {
  transform: scale(1.04);
}

.featured-content h2 {
  margin-bottom: 0.75rem;
}

.featured-duration {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.featured-tagline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}

.featured-text {
  color: var(--grey);
  margin-bottom: 1.6rem;
}

.featured-highlights {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.featured-highlights li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy);
  font-size: 0.98rem;
}

.featured-highlights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   8. Package cards & grid
   -------------------------------------------------------------------------- */
.packages-section {
  background: var(--ivory);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px -18px rgba(11, 37, 69, 0.3);
}

.package-card--featured {
  grid-column: span 1;
}

.package-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.package-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-card-media img {
  transform: scale(1.07);
}

.package-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 37, 69, 0.55));
}

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.package-card-body {
  padding: 1.6rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card-title {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.package-card-title a { color: var(--navy); }
.package-card-title a:hover { color: var(--gold-dark); }

.package-card-tagline {
  color: var(--grey);
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 1.3rem;
}

.package-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(11, 37, 69, 0.08);
}

.package-card-destination {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* --------------------------------------------------------------------------
   9. Why slow travel
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--ivory);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.why-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}

.why-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--grey);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   10. About (home section + about page)
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-lead {
  font-size: 1.12rem;
  color: var(--navy);
  margin-bottom: 1.3rem;
}

.about-text {
  color: var(--grey);
  margin-bottom: 1.8rem;
}

.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* About page specifics */
.about-main-section {
  background: var(--white);
}

.about-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-paragraph {
  color: var(--grey);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
}

.about-side-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-side-img img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-side-note {
  margin-top: 1.5rem;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-side-note h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.about-side-note p {
  color: var(--grey);
  font-size: 0.95rem;
}

.about-values-section {
  background: var(--ivory);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value-item {
  display: block;
  background: var(--white);
  padding: 1.8rem;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.about-value-duration {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.about-value-item h3 {
  margin: 0.6rem 0 0.3rem;
  font-size: 1.25rem;
}

.about-value-item p {
  color: var(--grey);
  font-size: 0.95rem;
  font-style: italic;
  font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   11. CTA section
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 37, 69, 0.78);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 1.2rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-section--slim {
  padding: 5rem 0;
}

.cta-inline {
  background: var(--ivory);
  text-align: center;
}

.cta-inline h2 {
  margin-bottom: 1rem;
}

.cta-inline p {
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* --------------------------------------------------------------------------
   12. Footer — ROAMIA Navy background
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(198, 162, 76, 0.25);
}

.footer-brand .brand-footer {
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--navy);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin: 1rem 0 0.75rem;
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30ch;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-heading-spaced {
  margin-top: 1.8rem;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-cta-col .footer-note {
  margin-bottom: 1.4rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-tag {
  font-style: italic;
  font-family: var(--font-display);
  color: rgba(198, 162, 76, 0.8);
}

/* --------------------------------------------------------------------------
   13. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 162, 76, 0.18), transparent 70%);
}

.page-hero--compact {
  padding: 5rem 0 4rem;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.page-hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   14. Error / 404
   -------------------------------------------------------------------------- */
.error-section {
  background: var(--ivory);
}

.error-content {
  text-align: center;
  max-width: 640px;
}

.error-content .eyebrow {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.error-sub {
  color: var(--grey);
  margin: 1.2rem 0 2.2rem;
}

/* --------------------------------------------------------------------------
   15. Package detail page
   -------------------------------------------------------------------------- */
.package-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.package-hero-media {
  position: absolute;
  inset: 0;
}

.package-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.35), rgba(11, 37, 69, 0.8));
}

.package-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  margin-bottom: 2.2rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb [aria-current="page"] {
  color: var(--gold);
}

.package-hero-content h1 {
  color: #fff;
  max-width: 18ch;
  margin-bottom: 0.6rem;
}

.package-hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.6rem;
}

.package-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-pill {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}

.meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.meta-value {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: #fff;
}

/* Overview + highlights */
.package-body-section {
  background: var(--ivory);
}

.package-body-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.package-overview h2 {
  margin-bottom: 1.1rem;
}

.package-overview-text {
  color: var(--grey);
  font-size: 1.08rem;
  max-width: 60ch;
}

.package-highlights {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2rem 2.2rem;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}

.package-highlights h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.package-highlights ul {
  display: grid;
  gap: 0.8rem;
}

.package-highlights li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.package-highlights li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Itinerary */
.itinerary-section {
  background: var(--white);
}

.itinerary-list {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.itinerary-list::before {
  content: "";
  position: absolute;
  left: 47px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 12%, var(--gold) 88%, transparent);
}

.itinerary-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.itinerary-item:last-child {
  padding-bottom: 0;
}

.itinerary-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1px solid rgba(198, 162, 76, 0.5);
  color: var(--navy);
}

.itinerary-day-num {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.itinerary-day-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.itinerary-body {
  padding-top: 0.3rem;
}

.itinerary-body h3 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.itinerary-body p {
  color: var(--grey);
  font-size: 0.98rem;
}

/* Inclusions */
.inclusions-section {
  background: var(--ivory);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}

.inclusions-col {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.inclusions-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.inclusions-title--plus { color: var(--gold-dark); }
.inclusions-title--minus { color: var(--grey); }

.inclusions-list {
  display: grid;
  gap: 0.7rem;
}

.inclusions-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--navy);
  font-size: 0.95rem;
}

.inclusions-list--plus li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.inclusions-list--minus li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: var(--grey);
}

.notes-block {
  max-width: 880px;
  margin: 2.5rem auto 0;
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.6rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.notes-title {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.notes-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.notes-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Accommodation */
.accommodation-section {
  background: var(--white);
}

.accommodation-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.accommodation-body p {
  color: var(--grey);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
}

/* Reveal-on-scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   16. Contact page
   -------------------------------------------------------------------------- */
.contact-section {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.1rem;
}

.contact-blurb {
  color: var(--grey);
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.4rem;
}

.contact-methods li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-method-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-methods a {
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-methods a:hover {
  color: var(--gold-dark);
}

.contact-method-text {
  color: var(--grey);
  font-size: 0.98rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.6rem;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  gap: 1.2rem;
}

.form-row--two {
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
}

.form-row--two .form-field {
  margin-bottom: 1.3rem;
}

.form-field label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.required {
  color: var(--gold-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--navy);
  padding: 0.8rem 1rem;
  border: 1px solid rgba(11, 37, 69, 0.18);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 162, 76, 0.18);
}

.contact-form input.has-error {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.82rem;
  color: #c0392b;
}

.btn-block.contact-submit {
  margin-top: 0.5rem;
}

.form-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--grey);
  text-align: center;
}
/* --------------------------------------------------------------------------
   17. Responsive — Tablet (≤1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --space-section: 4.5rem;
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .featured-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .featured-media,
  .about-visual {
    order: -1;
  }

  .about-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .package-body-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   18. Responsive — Mobile (≤768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --space-section: 3.5rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2rem); }

  /* Hamburger menu */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: 0 20px 40px -12px rgba(11, 37, 69, 0.25);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(198, 162, 76, 0.4);
  }

  .nav-menu.is-open {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.8rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(11, 37, 69, 0.06);
  }

  .nav-cta {
    margin: 1.4rem 0 0;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-scroll {
    display: none;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 1.8rem 1.4rem;
  }

  .form-row--two {
    grid-template-columns: 1fr;
  }

  .itinerary-list::before {
    left: 20px;
  }

  .itinerary-item {
    grid-template-columns: 46px 1fr;
    gap: 1rem;
  }

  .itinerary-day {
    width: 42px;
    height: 42px;
  }

  .itinerary-day-num {
    font-size: 1.1rem;
  }

  .itinerary-day-label {
    display: none;
  }

  .package-highlights,
  .inclusions-col {
    padding: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   19. Responsive — Small mobile (≤480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .package-hero-meta {
    flex-direction: column;
  }

  .breadcrumb ol {
    font-size: 0.72rem;
  }
}

/* -------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   20. Floating WhatsApp button (bottom-right)
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem;
  border-radius: 999px;
  background: #25D366; /* official WhatsApp green */
  color: var(--white);
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.7);
}

.wa-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Label hidden by default; reveals on hover/focus (desktop). */
.wa-float__label {
  display: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  padding-right: 0.35rem;
}

.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label {
  display: inline-flex;
}

@media (min-width: 769px) {
  .wa-float {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
  }
}

/* Keep the pulsing dot subtle and safe under reduced motion. */
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 3px solid #25D366;
  animation: wa-pulse 2.4s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::after {
    display: none;
  }
}
