/* ============================================================
   LEGADO TRAVEL CO. — Brand stylesheet
   Palette:  Blush #F5E6E0 · Gold #C49A5A · Deep Gold #8B6B35 · Cream #FAF0EC
   Fonts:    Cormorant Garamond (serif headings) · Josefin Sans (body)
   ============================================================ */

:root {
  --blush:      #F5E6E0;
  --gold:       #C49A5A;
  --deep-gold:  #8B6B35;
  --cream:      #FAF0EC;
  --ink:        #3a322c;   /* warm charcoal for body text */
  --ink-soft:   #6b6058;
  --white:      #ffffff;
  --shadow:     0 18px 50px rgba(58, 50, 44, 0.10);
  --shadow-sm:  0 8px 24px rgba(58, 50, 44, 0.08);
  --radius:     14px;
  --maxw:       1180px;
  --serif:      "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:       "Josefin Sans", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.2px;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }
a { color: var(--deep-gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--deep-gold);
  margin-bottom: 1rem;
}

.script {
  font-family: var(--serif);
  font-style: italic;
  color: var(--deep-gold);
}

.section { padding: 5.5rem 0; }
.section--blush { background: var(--blush); }
.section--white { background: var(--white); }
.text-center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 720px; }
.center-block { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.95rem 2.1rem;
  border-radius: 50px;
  cursor: pointer;
  border: 1.5px solid var(--gold);
  transition: all .25s ease;
}
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--deep-gold); border-color: var(--deep-gold); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--deep-gold); }
.btn--ghost:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--deep-gold); border-color: var(--white); }
.btn--light:hover { background: var(--blush); border-color: var(--blush); color: var(--deep-gold); transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 240, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(196, 154, 90, 0.18);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.brand { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  background: linear-gradient(100deg, var(--gold), var(--deep-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__tag {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.brand__tag::before, .brand__tag::after {
  content: ""; width: 16px; height: 1px; background: var(--gold); display: inline-block;
}
/* Footer keeps a solid-gold wordmark for contrast on dark */
.site-footer .brand__name { background: none; -webkit-text-fill-color: initial; color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav__links a {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink);
}
.nav__links a:hover, .nav__links a.active { color: var(--deep-gold); }
.nav__links .btn { color: var(--white); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.6rem; color: var(--ink); }

/* Language switch */
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 1px;
  border: 1px solid rgba(196,154,90,0.4); border-radius: 50px; padding: 0.35rem 0.85rem;
}
.lang-switch a { color: var(--ink-soft); text-transform: uppercase; }
.lang-switch a:hover { color: var(--deep-gold); }
.lang-switch a.active { color: var(--deep-gold); font-weight: 600; }
.lang-switch .sep { color: rgba(196,154,90,0.5); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  text-align: center;
  color: var(--white);
  background-color: var(--deep-gold);
  background-image:
    linear-gradient(rgba(58,50,44,0.42), rgba(58,50,44,0.52)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}
.hero__inner { max-width: 860px; margin: 0 auto; padding: 2rem 0; }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero .eyebrow { color: var(--blush); }
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--blush);
  margin-bottom: 0.4rem;
}
.hero__sub-es { font-size: 1rem; color: rgba(245,230,224,0.8); margin-bottom: 2rem; font-style: italic; font-family: var(--serif); }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Logo lockup (recreation of brand wordmark) */
.logo-lockup { display: inline-flex; flex-direction: column; align-items: center; margin-bottom: 1.4rem; }
.logo-lockup__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;            /* balance the trailing letter-spacing */
  background: linear-gradient(100deg, var(--gold), var(--deep-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.logo-lockup__sub {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 0.55rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  font-size: clamp(0.62rem, 1.5vw, 0.82rem);
  text-transform: uppercase;
  color: var(--gold);
}
.logo-lockup__sub::before, .logo-lockup__sub::after {
  content: ""; width: 34px; height: 1.5px;
  background: var(--gold); display: inline-block;
}

/* Page banner (interior pages) */
.page-banner {
  position: relative;
  padding: 6rem 0 4.5rem;
  text-align: center;
  color: var(--white);
  background-color: var(--deep-gold);
  background-size: cover;
  background-position: center;
}
.page-banner h1 { color: var(--white); }
.page-banner .eyebrow { color: var(--blush); }
.page-banner p { color: var(--blush); max-width: 640px; margin: 0.8rem auto 0; }
.banner--about   { background-image: linear-gradient(rgba(58,50,44,0.45), rgba(58,50,44,0.55)), url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1920&q=80"); }
.banner--services{ background-image: linear-gradient(rgba(58,50,44,0.45), rgba(58,50,44,0.55)), url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1920&q=80"); }
.banner--contact { background-image: linear-gradient(rgba(58,50,44,0.45), rgba(58,50,44,0.55)), url("https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?auto=format&fit=crop&w=1920&q=80"); }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.section-head .lead { margin: 0 auto; }
.divider {
  width: 64px; height: 2px; background: var(--gold);
  margin: 1.2rem auto; border: 0;
}

/* ---------- Intro split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background-color: var(--blush);
  background-size: cover;
  background-position: center;
}
.media--founder { background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1000&q=80"); }
.media--story   { background-image: url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=1000&q=80"); }

/* ---------- Pillars / cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196,154,90,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon { font-size: 2rem; margin-bottom: 0.8rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- Service detail rows ---------- */
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
  margin-bottom: 4.5rem;
}
.service-row:nth-child(even) .service-row__media { order: 2; }
.service-row__media {
  border-radius: var(--radius); overflow: hidden; min-height: 360px;
  box-shadow: var(--shadow); background-size: cover; background-position: center;
  background-color: var(--blush);
}
.svc--disney  { background-image: url("https://images.unsplash.com/photo-1597466599360-3b9775841aec?auto=format&fit=crop&w=1000&q=80"); }
.svc--cruise  { background-image: url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1000&q=80"); }
.svc--custom  { background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1000&q=80"); }
.svc--bilingual { background-image: url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1000&q=80"); }
.service-row__body h3 { font-size: 2rem; margin-bottom: 0.4rem; }
.service-row__body ul { list-style: none; margin-top: 1rem; }
.service-row__body li { padding-left: 1.6rem; position: relative; margin-bottom: 0.5rem; color: var(--ink-soft); }
.service-row__body li::before { content: "→"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; counter-reset: step; }
.step { text-align: center; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blush); color: var(--deep-gold);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Quote / values ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value h3 { color: var(--deep-gold); margin-bottom: 0.4rem; }
.value p { color: var(--ink-soft); }

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  text-align: center;
  color: var(--ink);
  max-width: 880px; margin: 0 auto;
  line-height: 1.4;
}
.pull-quote span { color: var(--deep-gold); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--deep-gold));
  color: var(--white); text-align: center; padding: 4.5rem 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--blush); max-width: 560px; margin: 0.6rem auto 2rem; }

/* ---------- Destinations gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 300px; box-shadow: var(--shadow-sm);
  background-color: var(--blush); background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dest:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dest::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58,50,44,0.78) 0%, rgba(58,50,44,0.15) 55%, rgba(58,50,44,0) 100%);
}
.dest__body { position: relative; padding: 1.6rem; color: var(--white); }
.dest__tag {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.66rem; color: var(--blush); margin-bottom: 0.3rem;
}
.dest__body h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 0.25rem; }
.dest__body p { color: rgba(245,230,224,0.9); font-size: 0.92rem; margin: 0; }

/* Gallery image fills (reuse brand-safe Unsplash photos) */
.d-wdw   { background-image: url("https://images.unsplash.com/photo-1597466599360-3b9775841aec?auto=format&fit=crop&w=900&q=80"); }
.d-carib { background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80"); }
.d-cruise{ background-image: url("https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=900&q=80"); }
.d-tropic{ background-image: url("https://images.unsplash.com/photo-1505228395891-9a51e7e86bf6?auto=format&fit=crop&w=900&q=80"); }
.d-road  { background-image: url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=900&q=80"); }
.d-family{ background-image: url("https://images.unsplash.com/photo-1502920917128-1aa500764cbd?auto=format&fit=crop&w=900&q=80"); }
.d-wander{ background-image: url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=900&q=80"); }
.d-plan  { background-image: url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=900&q=80"); }
.d-mountain{ background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80"); }

/* ---------- Testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.tcard {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(196,154,90,0.12);
  display: flex; flex-direction: column;
}
.tcard__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.8rem; font-size: 1rem; }
.tcard__quote { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink); line-height: 1.5; margin-bottom: 1.2rem; }
.tcard__who { margin-top: auto; }
.tcard__name { font-weight: 600; color: var(--deep-gold); }
.tcard__meta { font-size: 0.85rem; color: var(--ink-soft); }
.feature-quote {
  background: var(--blush); border-radius: var(--radius);
  padding: 3rem 2.5rem; text-align: center; margin-bottom: 3.5rem;
}
.feature-quote .tcard__quote { font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 820px; margin: 0 auto 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: start; }
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2.6rem; box-shadow: var(--shadow);
  border: 1px solid rgba(196,154,90,0.15);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--deep-gold); margin-bottom: 0.45rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--sans); font-size: 1rem;
  border: 1px solid rgba(139,107,53,0.25); border-radius: 10px;
  background: var(--cream); color: var(--ink); font-weight: 300;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.5rem; }

.contact-info .info-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-info .info-item .ic { font-size: 1.3rem; }
.contact-info h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.78rem; color: var(--deep-gold); margin-bottom: 0.2rem; font-weight: 400; }
.contact-info p { margin: 0; color: var(--ink-soft); }
.socials { display: flex; gap: 1rem; margin-top: 1rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blush);
  display: flex; align-items: center; justify-content: center; color: var(--deep-gold);
  transition: all .2s ease;
}
.socials a:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.form-success {
  display: none; background: var(--blush); border: 1px solid var(--gold);
  border-radius: 10px; padding: 1rem 1.2rem; color: var(--deep-gold); margin-bottom: 1.3rem;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--blush); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer .brand__name { color: var(--white); }
.site-footer p { color: rgba(245,230,224,0.7); font-size: 0.95rem; }
.site-footer h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 2px; font-size: 0.78rem; color: var(--gold); margin-bottom: 1rem; font-weight: 400; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer ul a { color: rgba(245,230,224,0.8); font-size: 0.95rem; }
.site-footer ul a:hover { color: var(--white); }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--blush); font-size: 1.15rem; }
.footer-tag small { display: block; font-size: 0.9rem; color: rgba(245,230,224,0.55); }
.footer-bottom { border-top: 1px solid rgba(245,230,224,0.15); padding-top: 1.5rem; text-align: center; font-size: 0.82rem; color: rgba(245,230,224,0.55); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .cards, .steps, .gallery, .tcards { grid-template-columns: repeat(2, 1fr); }
  .split, .service-row, .contact-grid, .values, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-row:nth-child(even) .service-row__media { order: 0; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: 75%; max-width: 320px;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem; gap: 1.6rem; transform: translateX(100%);
    transition: transform .3s ease; box-shadow: var(--shadow); height: 100vh;
  }
  .nav__links.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 60; }
}
@media (max-width: 560px) {
  .cards, .steps, .values, .gallery, .tcards { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
}
