*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #B8975A; --gold-light: #E8D5A3; --dark: #1A1814; --dark-mid: #2E2C27;
  --text: #3D3A33; --muted: #7A776E; --cream: #F7F4EE; --white: #FDFCFA;
  --border: rgba(184,151,90,0.2);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}
body { font-family: var(--font-body); background: var(--white); color: var(--text); font-size: 16px; line-height: 1.7; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(253,252,250,0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--dark); text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--dark) !important; color: var(--gold-light) !important; padding: 0.6rem 1.4rem !important; border-radius: 2px; }
.nav-cta:hover { background: var(--gold) !important; color: var(--dark) !important; }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--dark); color: var(--gold-light); padding: 0.9rem 2rem;
  border: none; border-radius: 2px; font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--gold); color: var(--dark); }
.btn-secondary {
  background: transparent; color: var(--dark); padding: 0.9rem 2rem;
  border: 1px solid var(--border); border-radius: 2px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: 72px; }

/* ── HERO (home) ── */
.hero {
  min-height: 92vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
}
.hero-text { padding: 5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 500; line-height: 1.1; color: var(--dark); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 440px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-image { height: 92vh; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--dark); padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-strip h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; color: var(--white); line-height: 1.2; margin-bottom: 1.5rem; }
.about-strip h2 em { color: var(--gold); font-style: italic; }
.about-strip p { color: rgba(253,252,250,0.65); line-height: 1.8; margin-bottom: 1rem; }
.credentials { display: flex; flex-direction: column; gap: 1.5rem; }
.credential { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border: 1px solid rgba(184,151,90,0.2); border-radius: 2px; }
.credential-icon { width: 36px; height: 36px; background: rgba(184,151,90,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.credential h4 { font-size: 0.9rem; font-weight: 500; color: var(--gold-light); margin-bottom: 0.25rem; }
.credential p { font-size: 0.85rem; color: rgba(253,252,250,0.5); margin: 0; }

/* ── PHOTO STRIP ── */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 320px; gap: 3px; }
.photo-strip-item { overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-strip-item:hover img { transform: scale(1.05); }

/* ── AUDIENCES ── */
.audiences { padding: 6rem 3rem; text-align: center; }
.section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: 2.8rem; font-weight: 500; color: var(--dark); margin-bottom: 3.5rem; line-height: 1.2; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 960px; margin: 0 auto; }
.audience-card { background: var(--cream); text-align: left; cursor: pointer; position: relative; overflow: hidden; text-decoration: none; display: block; }
.audience-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold); transform: scaleY(0); transition: transform 0.3s; z-index: 2; }
.audience-card:hover::before { transform: scaleY(1); }
.audience-card-img { height: 300px; overflow: hidden; }
.audience-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s; }
.audience-card:hover .audience-card-img img { transform: scale(1.04); }
.audience-card-text { padding: 2rem 2.5rem; }
.audience-tag { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.audience-card h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.2; }
.audience-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.card-link { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); text-decoration: none; }
.card-link::after { content: ' →'; }

/* ── LANDING HERO ── */
.lp-hero { min-height: 85vh; display: grid; grid-template-columns: 55% 45%; align-items: stretch; }
.lp-hero-text { padding: 6rem 3rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.lp-hero-img { overflow: hidden; }
.lp-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.lp-title { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 500; line-height: 1.1; color: var(--dark); margin-bottom: 1.5rem; }
.lp-title em { font-style: italic; color: var(--gold); }
.lp-sub { font-size: 1rem; color: var(--muted); max-width: 460px; margin-bottom: 2rem; line-height: 1.8; }

/* ── PAIN SECTION ── */
.pain-section {
  background: var(--cream); padding: 5rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.pain-section h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--dark); margin-bottom: 1rem; line-height: 1.2; }
.pain-section p.sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pain-list li { display: flex; gap: 1rem; align-items: flex-start; font-size: 0.95rem; color: var(--text); }
.pain-check { width: 20px; height: 20px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 3px; font-size: 0.65rem; color: white; }

/* ── TOURS ── */
.tours-section { padding: 5rem 3rem; }
.tours-header { text-align: center; margin-bottom: 3rem; }
.tours-header h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.tours-header p { color: var(--muted); max-width: 500px; margin: 0 auto; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tour-card { border: 1px solid var(--border); border-radius: 2px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.tour-card:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(184,151,90,0.1); }
.tour-card-img { height: 200px; overflow: hidden; }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.4s; }
.tour-card:hover .tour-card-img img { transform: scale(1.05); }
.tour-card-body { padding: 1.75rem; }
.tour-duration { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.tour-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--dark); margin-bottom: 0.75rem; }
.tour-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.tour-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--dark); margin-bottom: 1rem; }
.tour-price span { font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.tour-badge { display: inline-block; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: var(--gold); color: var(--dark); padding: 0.25rem 0.75rem; border-radius: 2px; margin-bottom: 0.75rem; }

/* ── TESTIMONIALS ── */
.testimonial-section { padding: 5rem 3rem; background: var(--cream); }
.testimonial-header { text-align: center; margin-bottom: 3rem; }
.testimonial-header h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 800px; margin: 0 auto; }
.testimonial { background: var(--white); padding: 2rem; border-left: 3px solid var(--gold); }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; color: var(--dark); margin-bottom: 1rem; line-height: 1.6; }
.testimonial cite { font-size: 0.8rem; color: var(--muted); font-style: normal; font-weight: 500; }
.placeholder-note { text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--muted); background: rgba(184,151,90,0.1); padding: 0.75rem; border-radius: 2px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── CTA SECTION ── */
.cta-section { background: var(--dark); padding: 6rem 3rem; text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: 3rem; font-weight: 500; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p { color: rgba(253,252,250,0.6); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-whatsapp { display: inline-flex; align-items: center; gap: 0.75rem; background: #25D366; color: white; padding: 1rem 2.5rem; border-radius: 2px; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: opacity 0.2s; }
.cta-whatsapp:hover { opacity: 0.9; }
.cta-email { display: inline-flex; align-items: center; gap: 0.75rem; background: transparent; color: var(--gold-light); padding: 1rem 2.5rem; border: 1px solid rgba(184,151,90,0.4); border-radius: 2px; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: border-color 0.2s; }
.cta-email:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--dark-mid); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
footer p { font-size: 0.8rem; color: rgba(253,252,250,0.4); }
.footer-logo { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); }

/* ── MODAL ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,24,20,0.75); z-index: 1000; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); padding: 2.5rem; max-width: 420px; width: 100%; border-radius: 2px; position: relative; max-height: 90vh; overflow-y: auto; }
.modal h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--dark); margin-bottom: 0.5rem; }
.modal p.modal-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.modal label { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.modal input[type="date"] { width: 100%; padding: 0.75rem; border: 1px solid var(--border); font-family: var(--font-body); font-size: 0.95rem; color: var(--dark); background: var(--cream); margin-bottom: 1rem; border-radius: 2px; }
.modal-flex-row { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; align-items: center; }
.modal-flex-row input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; cursor: pointer; }
.modal-flex-row label { font-size: 0.875rem; color: var(--text); text-transform: none; letter-spacing: 0; margin: 0; cursor: pointer; }
.modal-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 1.4rem; color: var(--muted); cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--dark); }
.modal-tour-name { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.modal textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--border); font-family: var(--font-body); font-size: 0.875rem; color: var(--dark); background: var(--cream); margin-bottom: 1.5rem; border-radius: 2px; resize: vertical; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet — 900px */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.25rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 4rem 1.5rem 2.5rem; }
  .hero-image { height: 55vw; min-height: 300px; }

  .about-strip { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 420px; }

  .audiences { padding: 4rem 1.5rem; }
  .audience-grid { grid-template-columns: 1fr; max-width: 480px; }

  .lp-hero { grid-template-columns: 1fr; min-height: auto; }
  .lp-hero-text { padding: 4rem 1.5rem 2rem; order: 1; }
  .lp-hero-img { height: 55vw; min-height: 280px; order: 0; }

  .pain-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 1.5rem; }

  .tours-section { padding: 4rem 1.5rem; }
  .tours-grid { grid-template-columns: 1fr 1fr; }

  .testimonial-section { padding: 4rem 1.5rem; }
  .cta-section { padding: 4rem 1.5rem; }
  .cta-section h2 { font-size: 2.2rem; }

  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* Mobile — 600px */
@media (max-width: 600px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem 1.25rem; gap: 1.25rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-text { padding: 3rem 1.25rem 2rem; }
  .hero-image { height: 70vw; }
  .hero-sub { font-size: 0.95rem; }
  .btn-group { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; }

  .about-strip { padding: 3rem 1.25rem; }
  .about-strip h2 { font-size: 1.9rem; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 280px; }

  .audiences { padding: 3rem 1.25rem; }
  .section-title { font-size: 2rem; }
  .audience-card-img { height: 220px; }
  .audience-card-text { padding: 1.5rem; }

  .lp-hero-text { padding: 3rem 1.25rem 2rem; }
  .lp-hero-img { height: 65vw; }

  .pain-section { padding: 3rem 1.25rem; }
  .pain-section h2 { font-size: 1.8rem; }

  .tours-section { padding: 3rem 1.25rem; }
  .tours-grid { grid-template-columns: 1fr; }
  .tours-header h2 { font-size: 1.9rem; }

  .testimonial-section { padding: 3rem 1.25rem; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 3.5rem 1.25rem; }
  .cta-section h2 { font-size: 1.8rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-whatsapp, .cta-email { width: 100%; justify-content: center; }

  footer { padding: 1.75rem 1.25rem; }
}
