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

:root {
  --ink: #0f0d0a;
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --gold: #b8913a;
  --gold-light: #d4a84b;
  --stone: #8c8070;
  --stone-light: #c4bbb0;
  --border: rgba(15,13,10,0.12);
  --border-light: rgba(15,13,10,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-logo {
  font-family: 'Cormorant Infant', serif; font-size: 1.4rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--ink); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.07em; text-transform: uppercase; opacity: 0.65; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--ink) !important; color: var(--cream) !important; opacity: 1 !important;
  padding: 0.55rem 1.4rem !important; border-radius: 2px; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.mobile-menu {
  display: none; position: fixed; inset: 68px 0 0 0;
  background: var(--cream); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Infant', serif; font-size: 2.2rem; font-weight: 300;
  text-decoration: none; color: var(--ink); opacity: 0.8; transition: opacity 0.2s, color 0.2s;
}
.mobile-menu a:hover { opacity: 1; color: var(--gold); }
.mobile-menu .m-cta {
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ink); color: var(--cream) !important; padding: 1rem 2.5rem;
  border-radius: 2px; opacity: 1 !important;
}

/* HERO */
.hero { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; padding-top: 68px; }
.hero-content { display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem 6rem 5vw; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'Cormorant Infant', serif; font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 300;
  line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 2rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--stone); max-width: 42ch; margin-bottom: 3rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink); color: var(--cream); text-decoration: none;
  padding: 1rem 2rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; border-radius: 2px;
  border: 1.5px solid var(--ink); transition: background 0.25s, border-color 0.25s;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--ink); text-decoration: none;
  padding: 1rem 2rem; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; border-radius: 2px;
  border: 1.5px solid var(--border); transition: border-color 0.25s, color 0.25s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-langs { margin-top: 3.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.lang-badge {
  font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone); font-weight: 500; padding: 0.35rem 0.85rem;
  border: 1px solid var(--border); border-radius: 100px;
}
.hero-visual { position: relative; overflow: hidden; background: var(--ink); }
.hero-mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}
.hero-mosaic-cell { background-size: cover; background-position: center; opacity: 0.82; transition: opacity 0.4s; }
.hero-mosaic-cell:hover { opacity: 0.95; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,13,10,0.45) 0%, rgba(15,13,10,0.1) 60%, transparent 100%); }

/* SHARED */
.section-divider { height: 1px; background: var(--border); margin: 0 5vw; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Infant', serif; font-size: clamp(2.2rem, 3.5vw, 3.5rem); font-weight: 300; line-height: 1.15; }

/* INTRO */
.intro-strip { padding: 5rem 5vw; display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.intro-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding-top: 0.5rem; }
.intro-text { font-family: 'Cormorant Infant', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 300; line-height: 1.5; }
.intro-text strong { font-weight: 600; font-style: italic; }

/* SERVICES */
.services { padding: 6rem 5vw; background: var(--cream); }
.section-header { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--warm-white); padding: 3rem 2.5rem;
  position: relative; overflow: hidden; transition: transform 0.3s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); }
.service-number { font-family: 'Cormorant Infant', serif; font-size: 4rem; font-weight: 300; color: var(--stone-light); line-height: 1; margin-bottom: 1.5rem; }
.service-title { font-family: 'Cormorant Infant', serif; font-size: 1.75rem; font-weight: 600; line-height: 1.2; margin-bottom: 1rem; }
.service-desc { font-size: 0.9rem; line-height: 1.75; color: var(--stone); margin-bottom: 2rem; }
.service-includes { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-includes li { font-size: 0.83rem; color: var(--ink); display: flex; align-items: flex-start; gap: 0.6rem; }
.service-includes li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem; transition: color 0.2s, border-color 0.2s;
}
.service-link:hover { color: var(--gold); border-color: var(--gold); }

/* ITINERARIES */
.itineraries { padding: 7rem 5vw; }
.itin-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
}
.itin-intro-text { font-size: 1rem; line-height: 1.8; color: var(--stone); font-weight: 300; }
.itin-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.itin-card {
  background: var(--cream); border-radius: 3px; overflow: hidden;
  cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none; color: inherit; display: block;
}
.itin-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15,13,10,0.12); }
.itin-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.itin-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.65) 0%, transparent 55%);
}
.itin-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  background: var(--gold); color: var(--cream);
  font-size: 0.64rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: 2px;
}
.itin-body { padding: 1.5rem 1.5rem 2rem; }
.itin-title { font-family: 'Cormorant Infant', serif; font-size: 1.25rem; font-weight: 600; line-height: 1.25; margin-bottom: 0.65rem; }
.itin-desc { font-size: 0.81rem; color: var(--stone); line-height: 1.65; margin-bottom: 1.25rem; }
.itin-cta { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.4rem; }
.itin-cta::after { content: '→'; }

/* ABOUT */
.about { padding: 8rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-visual { position: relative; }
.about-portrait { width: 100%; height: auto; border-radius: 2px; }
.about-text { font-size: 1.05rem; line-height: 1.8; color: var(--stone); font-weight: 300; margin-top: 2.5rem; }
.about-text p { margin-bottom: 1.5rem; }
.about-signature { font-family: 'Cormorant Infant', serif; font-size: 2.5rem; font-style: italic; color: var(--gold); margin-top: 3rem; }

/* CONTACT */
.contact { padding: 8rem 5vw; background: var(--ink); color: var(--cream); text-align: center; }
.contact-container { max-width: 900px; margin: 0 auto; }
.contact-sub { font-size: 1.1rem; opacity: 0.6; font-weight: 300; margin: 2rem auto 4rem; max-width: 50ch; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.contact-method {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 1.5rem; text-decoration: none; color: inherit; transition: background 0.3s, border-color 0.3s;
}
.contact-method:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
.method-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; }
.method-label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.5; margin-bottom: 0.5rem; }
.method-value { font-size: 1rem; font-weight: 400; }
.contact-response { font-size: 0.8rem; opacity: 0.4; letter-spacing: 0.05em; }

/* FOOTER */
footer { background: var(--cream); padding: 6rem 5vw 3rem; border-top: 1px solid var(--border-light); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 6rem; }
.footer-logo { font-family: 'Cormorant Infant', serif; font-size: 1.8rem; font-weight: 600; margin-bottom: 1.5rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { max-width: 35ch; font-size: 0.9rem; color: var(--stone); line-height: 1.7; }
.footer-col-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 2rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { text-decoration: none; color: var(--ink); font-size: 0.9rem; opacity: 0.7; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid var(--border-light);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--stone-light);
}

/* STICKY CTA */
.sticky-mobile-cta {
  position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 90;
  display: none;
}
.sticky-mobile-cta a {
  display: block; background: var(--ink); color: var(--cream); text-align: center;
  padding: 1.1rem; text-decoration: none; font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .itin-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 50vh; order: -1; }
  .hero-content { padding: 4rem 2rem; }
  .intro-strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .itin-header { grid-template-columns: 1fr; gap: 2rem; }
  .itin-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 4rem 1.25rem; }
  .hero-title { font-size: 3.2rem; }
  .itin-grid { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: block; }
  footer { padding-bottom: 8rem; }
}
