@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,600&family=Sacramento&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --green-deep: #1f3a2c;
  --green: #234b34;
  --green-light: #3c6b4c;
  --cream: #f7f0e1;
  --cream-dark: #efe4cc;
  --gold: #b8923f;
  --gold-light: #cba869;
  --ink: #2a2620;
  --paper: #fffdf8;
  --radius: 6px;
  --max-width: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-deep);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h1 { font-weight: 900; }
h2 { font-weight: 700; }

.script {
  font-family: 'Sacramento', cursive;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green);
}

.eyebrow.on-dark { color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--paper);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}
.btn-outline:hover { background: var(--paper); color: var(--green-deep); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--paper); }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: auto;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
}
.brand-text .name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-deep);
}
.brand-text .tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--green-deep), var(--green) 70%);
  color: var(--paper);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  color: var(--paper);
  font-size: 2.7rem;
  margin-top: 6px;
}

.hero p.lead {
  font-size: 1.05rem;
  max-width: 46ch;
  color: var(--cream);
  opacity: 0.92;
}

.hero-script {
  font-size: 2.2rem;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-art {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.hero-art video,
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art .placeholder-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}

/* Real photo boxes (replace .photo-placeholder once an image exists) */
.photo-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}
.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero sections with a background photo + tint (used on interior pages) */
.hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,58,44,0.92), rgba(35,75,52,0.82) 70%);
}
.hero-photo .container { position: relative; z-index: 1; }

.cta-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--paper);
}
.cta-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,58,44,0.9), rgba(31,58,44,0.75));
}
.cta-photo .container { position: relative; z-index: 1; }
.cta-photo h2 { color: var(--paper); }
.cta-photo p { color: var(--cream); }

/* Shared interior-page heroes (kept as classes so mobile can override padding) */
.hero-simple .container,
.hero-viajes .container {
  grid-template-columns: 1fr;
  text-align: center;
}
.hero-simple { padding: 60px 0 80px; }
.hero-viajes { padding: 60px 0 72px; }

/* Photo placeholder blocks (swap for real photos) */
.photo-placeholder {
  background: linear-gradient(135deg, var(--cream-dark), #e3d6b3);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px;
  min-height: 160px;
}

/* Sections */
section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head p { color: #55503f; }

.bg-alt { background: var(--paper); }

/* Gallery grid on home */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid figure { margin: 0; }
.gallery-grid .photo-placeholder,
.gallery-grid .photo-box { aspect-ratio: 1/1; min-height: 0; }
.gallery-grid figcaption {
  margin-top: 10px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--green-deep);
}

/* Featured trip card */
.trip-card {
  background: var(--paper);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.trip-card .photo-placeholder,
.trip-card .photo-box { border-radius: 0; border: none; min-height: 100%; }

.trip-card-body { padding: 40px; }

.trip-facts {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.trip-facts li { display: flex; gap: 10px; }
.trip-facts strong { color: var(--green-deep); min-width: 130px; display: inline-block; }

.price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
  color: var(--paper);
  border-radius: 50%;
  width: 108px;
  height: 108px;
  font-family: 'Playfair Display', serif;
}
.price-tag .amount { font-size: 1.5rem; font-weight: 900; color: var(--gold-light); }
.price-tag .unit { font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Trip page facts bar */
.facts-bar {
  background: var(--green-deep);
  color: var(--paper);
}
.facts-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding: 28px 24px;
}
.fact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.fact .fact-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.fact strong { display: block; font-size: 0.95rem; }

/* Destination stops */
.stops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stop-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}
.stop-card .photo-placeholder,
.stop-card .photo-box { border-radius: 0; border: none; aspect-ratio: 4/3; }
.stop-card-body { padding: 18px 20px 22px; }
.stop-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.stop-card-body p { font-size: 0.88rem; color: #55503f; margin: 0; }

/* Includes list */
.includes-panel {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.includes-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.includes-panel li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; }
.includes-panel li::before {
  content: '✓';
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

.perks-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.perk { text-align: center; }
.perk .perk-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.3rem;
}
.perk h4 { font-size: 1rem; margin-bottom: 6px; }
.perk p { font-size: 0.85rem; color: #55503f; margin: 0; }

.notice-box {
  margin-top: 48px;
  border: 1px solid var(--gold);
  background: #fbf6e9;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  font-size: 0.88rem;
}
.notice-box .notice-icon { font-size: 1.3rem; }

/* About page bios */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.bio-card {
  background: var(--paper);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.bio-card .photo-placeholder { border-radius: 0; border: none; aspect-ratio: 1/1; }
.bio-card-body { padding: 28px 30px 32px; }
.bio-card-body .role { color: var(--gold); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; display: block; }
.bio-card-body p.edit-note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #9a8f6f;
  font-style: italic;
}

.values-strip {
  text-align: center;
  padding: 60px 0;
  background: var(--green-deep);
  color: var(--paper);
}
.values-strip .script { font-size: 2.4rem; color: var(--gold-light); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--paper);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item h4 { margin: 0 0 4px; font-size: 1rem; }
.contact-item p, .contact-item a { margin: 0; font-size: 0.92rem; }
.contact-item a.link { color: var(--green); font-weight: 600; }

.form-embed {
  background: var(--paper);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 480px;
}
.form-embed iframe { width: 100%; height: 480px; border: 0; display: block; }
.form-fallback {
  padding: 40px;
  text-align: center;
  color: #55503f;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { height: 48px; }
.footer-brand .name { font-family: 'Playfair Display', serif; font-weight: 700; }
.site-footer h4 {
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.78rem;
  opacity: 0.75;
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--cream-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 4px 24px 12px; }
  .main-nav a {
    display: block;
    padding: 14px 2px;
    border-bottom: 1px solid var(--cream-dark);
  }
  .main-nav li:last-child a { border-bottom: none; }
  .main-nav a.active,
  .main-nav a:hover { border-bottom-color: var(--cream-dark); color: var(--gold); }

  .hero .container { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stops-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-card { grid-template-columns: 1fr; }
  .trip-card .photo-placeholder,
  .trip-card .photo-box { min-height: 220px; }
  .includes-panel { grid-template-columns: 1fr; }
  .perks-row { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .facts-bar .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .brand img { height: 44px; }

  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }

  .hero { padding: 48px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .hero-script { font-size: 1.7rem; }
  .hero-simple { padding: 44px 0 56px; }
  .hero-viajes { padding: 44px 0 48px; }

  .trip-card-body { padding: 26px 22px; }
  .includes-panel { padding: 26px 22px; }
  .contact-info { padding: 24px; }
  .bio-card-body { padding: 22px 20px 26px; }

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

  .price-tag { width: 84px; height: 84px; }
  .price-tag .amount { font-size: 1.15rem; }

  .form-embed iframe { height: 420px; }
}
