/* ============================================
   3 Blondes Travel — Main Stylesheet
   Boutique-feminine · blush, rose-gold, warm luxury

   TABLE OF CONTENTS:
   1.  Variables & Tokens
   2.  Reset & Base
   3.  Navigation
   4.  Mobile Drawer
   5.  Hero (Homepage)
   6.  Page Headers (inner pages)
   7.  Flourish Ornament
   8.  Section Layouts
   9.  Cards & Featured Trips
   10. About Page
   11. Team Page
   12. Trip Detail Pages
   13. Testimonials
   14. Contact & Forms
   15. Footer
   16. Utilities
   17. Responsive
   ============================================ */

/* ===== 1. Variables & Tokens ===== */

:root {
  /* Brand Colors */
  --rose:       #5a2742;      /* primary text, deep rose-burgundy */
  --rose-mid:   #7a3a58;      /* hover states */
  --rose-soft:  #8a5a6e;      /* secondary text */
  --rose-pale:  #c09aaa;      /* muted / labels */
  --gold:       #cf9a66;      /* accent — rose gold */
  --gold-deep:  #b27c45;      /* darker gold for hover */
  --gold-light: #e8c49a;      /* light gold for borders */
  --dark:       #3a1426;      /* darkest, almost black-rose */

  /* Surfaces */
  --cream:      #fff5f1;      /* page background */
  --cream-2:    #fdf0ec;      /* lifted surface */
  --cream-3:    #f8e8e2;      /* card / section tint */
  --white:      #ffffff;

  /* Borders */
  --rule:       rgba(90,39,66,.12);
  --rule-gold:  rgba(207,154,102,.35);

  /* Typography */
  --font-disp:   'Cormorant Garamond', Georgia, serif;
  --font-script: 'Pinyon Script', cursive;
  --font-body:   'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --px:         clamp(24px, 5vw, 80px);   /* horizontal page padding */
  --section:    clamp(64px, 8vw, 96px);   /* vertical section spacing */
  --gap:        clamp(24px, 3vw, 40px);   /* grid gap */
}

/* ===== 2. Reset & Base ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rose);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ===== 3. Navigation ===== */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--px);
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}

/* Transparent on top */
.site-nav {
  background: transparent;
}

/* Frosted when scrolled */
.site-nav.scrolled {
  background: rgba(255, 245, 241, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule-gold), 0 4px 24px rgba(90,39,66,.06);
}

/* Brand / Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.nav-mark-group {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: bold;
  color: var(--gold-deep);
  background: rgba(255,255,255,.4);
  line-height: 1;
  padding-bottom: 6px;
  padding-right: 1px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.nav-stars {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  pointer-events: none;
  color: var(--gold-deep);
}

.nav-words {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
}

.nav-name {
  font-family: var(--font-disp);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: .2px;
  color: var(--rose);
}

.nav-tagline {
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--rose-soft);
  margin-top: 3px;
  text-transform: uppercase;
}

/* Nav Links (desktop) */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  color: var(--rose);
  position: relative;
  padding: 4px 0;
  opacity: .9;
  transition: opacity .2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .25s ease;
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; }

/* Nav CTA */
.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -10px rgba(207,154,102,.5);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(207,154,102,.6);
}

/* Hamburger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--rose);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== 4. Mobile Drawer ===== */

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(58,20,38,.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s ease;
}

.nav-overlay.open {
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: min(320px, 88vw);
  background: var(--white);
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}

.drawer-brand {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 500;
  color: var(--rose);
}

.drawer-close {
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--rose-soft);
  font-size: 22px;
  border-radius: 8px;
  transition: background .2s;
}

.drawer-close:hover { background: var(--cream-3); }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.drawer-links a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--rose);
  padding: 12px 6px;
  border-bottom: 1px solid var(--rule);
  transition: color .2s, padding-left .2s;
}

.drawer-links a:hover {
  color: var(--gold-deep);
  padding-left: 12px;
}

.drawer-links a.active {
  color: var(--gold-deep);
}

.drawer-cta {
  margin-top: 28px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 8px 24px -10px rgba(207,154,102,.5);
  transition: background .2s;
}

.drawer-cta:hover { background: var(--gold-deep); }

/* ===== 5. Hero (Homepage) ===== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: 50% 38%;
  background-repeat: no-repeat;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,245,241,.62) 0%, rgba(255,245,241,.14) 8%, rgba(255,245,241,0) 18%),
    linear-gradient(90deg, rgba(255,245,241,.97) 0%, rgba(255,245,241,.88) 28%, rgba(255,246,242,.55) 50%, rgba(255,247,243,.1) 68%, rgba(255,247,243,0) 82%);
}

.hero > * { position: relative; z-index: 2; }
.hero > .hero-bg,
.hero > .hero-scrim { position: absolute; z-index: 0; }
.hero > .hero-scrim { z-index: 1; }

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--px) 80px;
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 20px;
}

.eyebrow .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-headline {
  font-family: var(--font-disp);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--rose);
  margin-bottom: 22px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.7;
  color: var(--rose-soft);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 10px 28px -12px rgba(207,154,102,.55);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -12px rgba(207,154,102,.65);
}

.btn-primary svg { flex-shrink: 0; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--rose-soft);
  padding: 4px 0;
  border-bottom: 1px solid var(--rule-gold);
  transition: color .2s, border-color .2s;
}

.btn-ghost:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* Trust badge */
.hero-trust {
  margin-top: 24px;
  font-size: 13px;
  color: var(--rose-pale);
  letter-spacing: .3px;
}

.hero-trust strong { color: var(--rose-soft); font-weight: 600; }

/* Destination chips strip */
.hero-chips {
  padding: 22px var(--px) 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.chips-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-soft);
  white-space: nowrap;
  margin-right: 4px;
}

.chip {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--rule-gold);
  color: var(--rose);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}

.chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ===== 6. Page Headers (inner pages) ===== */

.page-header {
  position: relative;
  padding: 130px var(--px) 60px;
  overflow: hidden;
  isolation: isolate;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #f7ece9;
}

/* Text colors for warm gradient page headers */
.page-header .page-label {
  color: var(--dark);
  opacity: 0.72;
}

/* Optional photo header */
.page-header.has-photo .page-header-bg {
  background-size: cover;
  background-position: center 40%;
}

.page-header.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,245,241,.85) 0%, rgba(255,245,241,.72) 100%);
}

.page-header > * { position: relative; z-index: 2; }
.page-header > .page-header-bg { position: absolute; z-index: 0; }

.page-header-inner {
  max-width: 700px;
}

.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}

.page-title {
  font-family: var(--font-disp);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--rose);
  margin-bottom: 18px;
}

.page-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.page-intro {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.75;
  color: var(--rose-soft);
  max-width: 580px;
}

/* ===== 7. Flourish Ornament ===== */

.flourish {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  margin-bottom: 18px;
}

.flourish.centered { justify-content: center; }

.flourish .fl-line {
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.flourish .fl-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.flourish svg { flex-shrink: 0; opacity: .9; }

/* Section-level flourish divider */
.section-ornament {
  text-align: center;
  padding: 8px 0;
  color: var(--gold);
  opacity: .6;
  font-size: 20px;
}

/* ===== 8. Section Layouts ===== */

.section {
  padding: var(--section) var(--px);
}

.section-sm {
  padding: calc(var(--section) * .7) var(--px);
}

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

.section-header {
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-disp);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--rose);
}

.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}

.section-body {
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.75;
  color: var(--rose-soft);
  max-width: 600px;
  margin-top: 16px;
}

.section-header.centered .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* Two-column layout helper */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.trips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* ===== 9. Cards & Featured Trips ===== */

/* Feature card for trips */
.trip-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--rule-gold);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(90,39,66,.18);
}

.trip-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--cream-3);
}

.trip-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream-3), var(--cream-2));
  display: grid;
  place-items: center;
  font-size: 40px;
}

.trip-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.trip-card-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.trip-card-title {
  font-family: var(--font-disp);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--rose);
  margin-bottom: 12px;
}

.trip-card-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--rose-soft);
  flex: 1;
  margin-bottom: 22px;
}

.trip-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-deep);
  transition: gap .2s;
  position: relative;
  z-index: 2;
}

/* Stretched link — makes the entire card clickable */
.trip-card-link::after {
  content: '';
  position: absolute;
  inset: -999px;
  z-index: 0;
}

.trip-card-link:hover { gap: 13px; }

/* Page header text legibility */

/* Sold-out badge */
.badge-soldout {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--rose);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}

/* Reason card (About page) */
.reason-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid var(--rule-gold);
  box-shadow: 0 4px 24px rgba(90,39,66,.05);
  transition: box-shadow .3s, transform .3s;
}

.reason-card:hover {
  box-shadow: 0 12px 40px rgba(90,39,66,.1);
  transform: translateY(-3px);
}

.reason-num {
  font-family: var(--font-disp);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 14px;
}

.reason-title {
  font-family: var(--font-disp);
  font-size: 21px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 10px;
  line-height: 1.2;
}

.reason-desc {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--rose-soft);
}

/* ===== 10. About Page ===== */

.about-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(90,39,66,.2);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.license-banner {
  background: var(--rose);
  color: rgba(255,245,241,.85);
  padding: 28px var(--px);
  text-align: center;
}

.license-banner p {
  font-size: 12.5px;
  letter-spacing: .5px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== 11. Team Page ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px 32px;
  border: 1px solid var(--rule-gold);
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}

.team-card:hover {
  box-shadow: 0 16px 48px rgba(90,39,66,.1);
  transform: translateY(-4px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-3), var(--cream-2));
  margin: 0 auto 18px;
  border: 2.5px solid var(--gold-light);
  display: grid;
  place-items: center;
  font-family: var(--font-disp);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-deep);
  overflow: hidden;
}

.team-name {
  font-family: var(--font-disp);
  font-size: 22px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 4px;
  line-height: 1.2;
}

.team-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--rose-soft);
  margin-bottom: 18px;
}

.team-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--rose-soft);
  transition: color .2s;
}

.team-email:hover { color: var(--gold-deep); }

/* ===== 12. Trip Detail Pages ===== */

/* Safari / Danube / Disney hero overrides */
.trip-hero {
  background-size: cover;
  background-position: center 45%;
}

.trip-hero .hero-scrim {
  background:
    linear-gradient(0deg, rgba(58,20,38,.92) 0%, rgba(58,20,38,.4) 30%, rgba(58,20,38,.1) 65%, rgba(58,20,38,0) 100%);
}

.trip-hero .hero-body {
  justify-content: flex-end;
  padding-bottom: 60px;
}

.trip-hero .hero-headline {
  color: var(--cream);
}

.trip-hero .hero-sub {
  color: rgba(255,245,241,.8);
}

.trip-hero .eyebrow {
  color: rgba(255,245,241,.75);
}

/* Pricing table */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--rule-gold);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, var(--white), var(--cream-2));
  box-shadow: 0 10px 36px -12px rgba(207,154,102,.25);
}

.price-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.price-amount {
  font-family: var(--font-disp);
  font-size: 40px;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 6px;
}

.price-pp {
  font-size: 13px;
  color: var(--rose-soft);
  margin-bottom: 18px;
}

/* Itinerary list */
.itinerary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.itinerary-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.itinerary-item:last-child { border-bottom: none; }

.itin-day {
  font-family: var(--font-disp);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  padding-top: 2px;
}

.itin-content {}

.itin-title {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 6px;
}

.itin-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--rose-soft);
}

/* Callout box */
.callout {
  background: linear-gradient(135deg, var(--cream-3), var(--cream-2));
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin: 32px 0;
}

.callout p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--rose-soft);
}

.callout strong { color: var(--rose); }

/* ===== 13. Testimonials ===== */

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

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--rule-gold);
  position: relative;
  transition: box-shadow .3s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(90,39,66,.08);
}

.testimonial-quote {
  font-size: 64px;
  line-height: .6;
  color: var(--gold-light);
  font-family: Georgia, serif;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.78;
  color: var(--rose-soft);
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-3), var(--gold-light));
  display: grid;
  place-items: center;
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  line-height: 1.2;
}

.testimonial-trip {
  font-size: 12px;
  color: var(--rose-pale);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ===== 14. Contact & Forms ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-disp);
  font-size: 28px;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--rose-soft);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cream-3);
  border: 1px solid var(--rule-gold);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.contact-detail-body {}

.contact-detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-pale);
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--rose);
}

.contact-detail-value a:hover { color: var(--gold-deep); }

/* Form styles */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--rule-gold);
  box-shadow: 0 8px 40px rgba(90,39,66,.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--rose);
  background: var(--cream);
  border: 1.5px solid var(--rule-gold);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  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(207,154,102,.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.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='%238a5a6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px -10px rgba(207,154,102,.5);
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -10px rgba(207,154,102,.6);
}

/* ===== 15. Footer ===== */

.site-footer {
  background: var(--dark);
  color: rgba(255,245,241,.75);
  padding: 56px var(--px) 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--gap);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,245,241,.1);
  margin-bottom: 32px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,245,241,.55);
  max-width: 240px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255,245,241,.65);
  transition: color .2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 11.5px;
  line-height: 1.8;
  color: rgba(255,245,241,.38);
  max-width: 680px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,245,241,.4);
  white-space: nowrap;
}

/* ===== 16. Utilities ===== */

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Visually hidden (for accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Bold highlight */
.highlight {
  color: var(--gold-deep);
  font-weight: 600;
}

/* Centered text helper */
.text-center { text-align: center; }

/* ===== 17. Responsive ===== */

/* Hide desktop nav links on mobile */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-headline { font-size: clamp(44px, 7vw, 72px); }

  .two-col { grid-template-columns: 1fr; }
  .trips-grid { grid-template-columns: 1fr; }
  .two-col.flip { direction: ltr; }

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

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

@media (max-width: 640px) {
  :root {
    --px: 20px;
    --section: 52px;
    --gap: 18px;
  }

  .hero-body {
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-chips {
    padding-bottom: 28px;
  }

  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr; }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .form-row { grid-template-columns: 1fr; }

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

  .itinerary-item { grid-template-columns: 56px 1fr; gap: 14px; }

  .nav-words { display: none; }
}

@media (max-width: 375px) {
  .hero-chips { gap: 8px; }
  .chip { font-size: 12px; padding: 6px 13px; }
}

/* Prevent horizontal overflow at all sizes */
body { overflow-x: hidden; }
