/* ==========================================================================
   Incredible Luxury Holidays — Cream Editorial Stylesheet
   Warm cream canvas · Burnished brass accents · Editorial serif
   Class names match dark version so HTML is compatible.
   ========================================================================== */

:root {
  /* Core cream palette */
  --midnight:      #FAF7F2;  /* was dark; now main cream background */
  --deep-navy:     #F0EAD8;  /* was dark card; now linen card */
  --gold:          #B08D57;  /* was gold; now burnished brass accent */
  --gold-light:    #C9A56D;  /* hover state */
  --ivory:         #1F1D19;  /* was ivory; now deep charcoal for text */
  --linen:         #F0EAD8;
  --gold-shadow:   #8B6E3D;

  /* Utility */
  --gold-border:   rgba(176, 141, 87, 0.28);
  --gold-hairline: rgba(176, 141, 87, 0.18);
  --gold-subtle:   rgba(176, 141, 87, 0.10);
  --gold-ghost:    rgba(176, 141, 87, 0.09);
  --text-primary:  #1F1D19;
  --text-muted:    rgba(31, 29, 25, 0.68);
  --text-dim:      rgba(31, 29, 25, 0.45);
  --text-faint:    rgba(31, 29, 25, 0.28);

  /* Type stack */
  --serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Structural */
  --max-width:     1320px;
  --wrap-narrow:   960px;
  --nav-height:    72px;
  --section-pad:   88px 40px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--midnight); /* cream */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold); }

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* Skip link */
.skip { position: absolute; left: -9999px; top: auto; padding: 0.75rem 1rem;
  background: var(--gold); color: #FFF; z-index: 999;
  font-family: var(--sans); font-weight: 600; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; }
.skip:focus { left: 1rem; top: 1rem; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(38px, 6.2vw, 68px); font-weight: 400; letter-spacing: -0.015em; }
h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 400; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 1.8vw, 24px); font-weight: 500; }
h4 { font-size: 15px; font-weight: 500; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); font-weight: 400; }

p { margin-bottom: 1rem; max-width: 68ch; color: var(--text-muted); font-size: 14px; }
p.lead { font-size: 15px; line-height: 1.75; color: var(--text-primary); }

/* Signature structural device — the eyebrow (Inter caps in brass) */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

/* Signature structural device — the 32px brass rule */
.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 20px 0 36px;
}

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-nav {
  background: var(--midnight);
  height: var(--nav-height);
  border-bottom: 1px solid var(--gold-hairline);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  height: 100%;
}
.brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.brand em { color: var(--gold); font-style: italic; font-weight: 400; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.cta {
  background: var(--gold);
  color: #FFF;
  padding: 12px 22px;
  font-weight: 600;
}
.nav-links a.cta:hover { background: var(--gold-shadow); color: #FFF; }

.nav-toggle { display: none; background: none; border: 0; color: var(--gold);
  font-size: 20px; cursor: pointer; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--midnight);
    padding: 24px 40px;
    border-bottom: 1px solid var(--gold-hairline);
    gap: 18px;
  }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--deep-navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(250, 247, 242, 0.15) 0%,
    rgba(250, 247, 242, 0.55) 55%,
    rgba(250, 247, 242, 0.92) 100%);
}
.hero-texture {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 28px,
    rgba(176, 141, 87, 0.045) 28px,
    rgba(176, 141, 87, 0.045) 29px
  );
  pointer-events: none;
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 60px 0 88px; width: 100%; }
.hero h1 { max-width: 22ch; margin-bottom: 22px; color: var(--text-primary); }
.hero .sub {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--text-primary);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0.85;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-gold { background: var(--gold); color: #FFF; }
.btn-gold:hover { background: var(--gold-shadow); color: #FFF; }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn-ghost:hover { background: var(--gold); color: #FFF; }

/* ==========================================================================
   STAT BAR
   ========================================================================== */

.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gold-hairline);
  border-bottom: 1px solid var(--gold-hairline);
  background: var(--deep-navy);
}
.stat {
  padding: 42px 30px;
  border-left: 1px solid var(--gold-hairline);
  text-align: left;
}
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}
.stat-num em { color: var(--gold); font-style: italic; }
.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
  display: block;
}
@media (max-width: 900px) { .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--gold-hairline); }
}
@media (max-width: 500px) { .stat-bar { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--gold-hairline); }
  .stat:first-child { border-top: 0; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section { padding: clamp(64px, 8vw, 96px) 0; border-top: 1px solid var(--gold-hairline); }
.section.no-border { border-top: 0; }
.section-header { margin-bottom: 56px; max-width: 720px; }
.section-header p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-top: 4px; }

/* ==========================================================================
   GRID + DESTINATION CARDS
   ========================================================================== */

.grid {
  display: grid;
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* Destination card */
.dest-card {
  background: var(--midnight);
  padding: 34px 28px 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 260px;
  display: flex; flex-direction: column;
  transition: background 0.3s ease;
}
.dest-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.dest-card:hover { background: var(--deep-navy); }
.dest-card:hover::after { transform: scaleX(1); }

.dest-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--gold-ghost);
  line-height: 1;
  margin-bottom: -6px;
  font-style: italic;
}
.dest-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.dest-tagline {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
}

/* Service card variant */
.service-card {
  background: var(--midnight);
  padding: 34px 28px;
  position: relative;
  cursor: pointer;
  min-height: 220px;
  display: flex; flex-direction: column;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--deep-navy); }
.service-card .service-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.service-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==========================================================================
   IMAGE CARDS (signature programs)
   ========================================================================== */

.img-card {
  background: var(--midnight);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.img-card-media { aspect-ratio: 5/3; overflow: hidden; position: relative; }
.img-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.img-card:hover .img-card-media img { transform: scale(1.04); }
.img-card-body { padding: 28px 26px 30px; }
.img-card-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.img-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.img-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.img-card .price {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold);
  font-style: italic;
  margin-top: 8px;
  display: block;
}
.img-card .price em { font-style: normal; color: var(--gold-shadow); }

/* ==========================================================================
   PROSE
   ========================================================================== */

.prose { max-width: 62ch; }
.prose p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.prose h3 {
  font-family: var(--serif);
  color: var(--text-primary);
  margin: 32px 0 12px;
  font-size: 22px;
  font-weight: 400;
}
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--gold); border-bottom: 1px solid var(--gold-hairline); }
.prose a:hover { border-color: var(--gold); }

/* ==========================================================================
   ESSENTIALS GRID
   ========================================================================== */

.essentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
}
.essential {
  background: var(--midnight);
  padding: 34px 28px;
}
.essential-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.essential-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.essential-note {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 800px) { .essentials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .essentials { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { border-top: 1px solid var(--gold-hairline); }
.faq details {
  border-bottom: 1px solid var(--gold-hairline);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] { padding-bottom: 30px; }
.faq details p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 68ch;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.quote-form {
  border: 1px solid var(--gold-hairline);
  padding: clamp(28px, 4vw, 44px);
  background: var(--deep-navy);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-hairline);
  border: 1px solid var(--gold-hairline);
  margin-bottom: 28px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.field {
  background: var(--midnight);
  padding: 18px 20px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 4px 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-primary);
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field select { color: var(--text-primary); }
.field select option { background: var(--midnight); color: var(--text-primary); }

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background: var(--deep-navy);
  padding: clamp(56px, 6vw, 88px) 0;
  border-top: 1px solid var(--gold-hairline);
  border-bottom: 1px solid var(--gold-hairline);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: "";
  position: absolute;
  top: 40%; width: 60px; height: 1px;
  background: var(--gold);
}
.cta-band::before { left: 30%; }
.cta-band::after { right: 30%; }
.cta-band h2 { color: var(--text-primary); margin-bottom: 18px; }
.cta-band h2 em { color: var(--gold); }
.cta-band p { color: var(--text-muted); max-width: 55ch; margin: 0 auto 32px; }

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.crumbs {
  padding: 22px 0 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.crumbs a { color: var(--text-dim); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin: 0 10px; color: var(--gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--deep-navy);
  border-top: 1px solid var(--gold-hairline);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-col .brand { display: block; margin-bottom: 18px; font-size: 18px; }
.footer-col > p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.75;
  max-width: none;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.footer-col a:hover { color: var(--gold); }
.footer-col strong {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
}
.footer-bottom {
  border-top: 1px solid var(--gold-hairline);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   NETWORK (hotel/resort prose blocks)
   ========================================================================== */

.network {
  border-top: 1px solid var(--gold-hairline);
  border-bottom: 1px solid var(--gold-hairline);
  padding: 40px 0;
  margin: 40px 0;
}
.network h3 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 20px 0 12px;
}
.network h3:first-child { margin-top: 0; }
.network p {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  opacity: 0.85;
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== Unified nav: Fixed Departure dropdown + ghost CTA (added 2026-07-19) ===== */
.nav-links .nav-dd { position:relative; display:inline-flex; align-items:center; }
.nav-links .nav-dd-trigger { font-family:var(--sans); font-size:10px; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--text-muted); cursor:pointer; }
.nav-links .nav-dd:hover .nav-dd-trigger { color:var(--gold); }
.nav-links .nav-dd .dd-caret { font-size:8px; margin-left:4px; }
.nav-dd::after { content:''; position:absolute; left:-10px; right:-10px; top:100%; height:26px; }
.nav-dd-menu { position:absolute; top:calc(100% + 24px); left:50%; transform:translateX(-50%) translateY(6px);
  min-width:222px; background:#fff; border:1px solid var(--gold-border); border-radius:12px;
  box-shadow:0 16px 44px rgba(31,29,25,0.16); padding:8px 0; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .2s ease, transform .2s ease, visibility .2s; z-index:400; }
.nav-dd:hover .nav-dd-menu { opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(0); }
.nav-dd-menu a { display:block; padding:11px 22px; font-size:10px; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--text-muted); white-space:nowrap; }
.nav-dd-menu a:hover { color:var(--gold); background:var(--gold-subtle); }
.nav-links a.cta-ghost { background:transparent; color:var(--text-primary); border:1px solid var(--gold-border); }
.nav-links a.cta-ghost:hover { background:var(--gold-subtle); color:var(--gold); }
@media (max-width:960px){
  .nav-links .nav-dd { flex-direction:column; align-items:flex-start; width:100%; }
  .nav-dd-menu { position:static; transform:none; opacity:1; visibility:visible; pointer-events:auto; box-shadow:none; border:none; background:transparent; padding:6px 0 0 14px; min-width:0; }
  .nav-dd-menu a { padding:6px 0; }
  .nav-dd .dd-caret { display:none; }
}
