/* ==================================================================
   Lumiere Holidays — experience.lumiereholidays.com
   Calm, elegant, minimal. Ivory / charcoal / muted gold / soft sage.
   ================================================================== */

:root {
  --ivory: #FAF7F2;
  --ink: #1E1E1C;
  --gold: #B08D57;
  --sage: #6F7D6B;
  --rule: rgba(30, 30, 28, 0.12);
  --rule-soft: rgba(30, 30, 28, 0.07);
  --alt-bg: #F3EEE6;
  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 0.6em; }
h3 { font-size: 1.28rem; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 760px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--ivory); padding: 10px 18px; z-index: 300;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------------
   Reveal-on-scroll (JS adds .in; without JS everything stays visible)
   ------------------------------------------------------------------ */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------------------------------------------------------------------
   Header
   ------------------------------------------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.site-header.solid {
  background: rgba(250, 247, 242, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--rule-soft);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 132px; height: 40px; object-fit: contain; }
.brand-word {
  display: none;
  font-family: var(--display);
  font-size: 1.5rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink); padding-left: 0.3em;
}
.brand.nologo .brand-word { display: inline; }

.nav-menu { display: flex; gap: 28px; list-style: none; }
.nav-menu a {
  color: var(--ink); font-size: 0.86rem; letter-spacing: 0.06em;
  text-transform: uppercase; opacity: 0.78;
}
.nav-menu a:hover { opacity: 1; color: var(--gold); text-decoration: none; }
.nav-menu a[aria-current="page"] {
  opacity: 1; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--rule); border-radius: 4px;
  font: 600 0.8rem var(--body); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); padding: 8px 16px; cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-wrap { flex-wrap: wrap; }
  .nav-menu {
    display: none;
    flex-direction: column; gap: 0;
    width: 100%; padding: 8px 0 20px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-top: 1px solid var(--rule-soft); }
  .nav-menu a { display: block; padding: 14px 4px; }
  .site-header { background: rgba(250, 247, 242, 0.96); }
}

/* ------------------------------------------------------------------
   Hero & page heads
   ------------------------------------------------------------------ */
.hero { padding: 170px 0 90px; }
.hero-inner { max-width: 820px; }

.page-head { padding: 150px 0 30px; }
.page-head.tight { padding-top: 36px; }
.page-head.tall { padding: 190px 0 120px; }

.eyebrow {
  display: block;
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}

.lede {
  font-size: 1.12rem; color: rgba(30, 30, 28, 0.75);
  max-width: 620px; margin-top: 18px;
}

.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.chip {
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.86rem; letter-spacing: 0.05em;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
}
.chip:hover { background: var(--gold); color: var(--ivory); text-decoration: none; }

/* ------------------------------------------------------------------
   Sections
   ------------------------------------------------------------------ */
.section { padding: 84px 0; border-top: 1px solid var(--rule-soft); }
.section.alt { background: var(--alt-bg); }

.prose p { margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.prose { font-size: 1.04rem; color: rgba(30, 30, 28, 0.85); }

.text-link {
  color: var(--gold); font-size: 0.9rem; letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(176, 141, 87, 0.4); padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--gold); text-decoration: none; }

.btn {
  display: inline-block;
  background: var(--ink); color: var(--ivory);
  padding: 14px 34px; border: 1px solid var(--ink); border-radius: 2px;
  font: 600 0.84rem var(--body); letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn:hover { background: var(--gold); border-color: var(--gold); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn.whatsapp { background: var(--sage); border-color: var(--sage); }
.btn.whatsapp:hover { background: var(--ink); border-color: var(--ink); }

/* ------------------------------------------------------------------
   Media blocks — gradient + title fallback when an image is missing
   ------------------------------------------------------------------ */
.media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #EFE9DE 0%, #E2E5DD 55%, #D6DCD2 100%);
}
.media.wide { aspect-ratio: 21 / 9; }
.media.portrait { aspect-ratio: 6 / 7; }
.media.round { aspect-ratio: 1; border-radius: 50%; width: 110px; flex: none; }
.media img {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
}
.media-fallback {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 1.35rem; font-style: italic;
  color: var(--sage); text-align: center; padding: 16px;
}
.media.round .media-fallback { font-size: 1rem; font-style: normal; }

/* ------------------------------------------------------------------
   Cards
   ------------------------------------------------------------------ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px; margin: 40px 0;
}
.cards-grid.three { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--rule-soft);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--rule); }
.card > a { display: block; color: inherit; }
.card > a:hover { text-decoration: none; }

.card-body { padding: 24px 26px 30px; }
.card-body .eyebrow { margin-bottom: 8px; }
.card-body h3, .card-title { margin-bottom: 10px; font-size: 1.35rem; }
.card-excerpt { font-size: 0.94rem; color: rgba(30, 30, 28, 0.7); margin-bottom: 16px; }
.card time { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 10px; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px; margin-top: 40px;
}
.value-card { border-top: 1px solid var(--gold); padding-top: 20px; }
.value-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; color: rgba(30, 30, 28, 0.72); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 36px; margin: 40px 0;
}
.team-card h3 { margin-top: 18px; }
.team-card .role {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin: 4px 0 10px;
}
.team-card .bio { font-size: 0.92rem; color: rgba(30, 30, 28, 0.72); }

/* ------------------------------------------------------------------
   Stories
   ------------------------------------------------------------------ */
.carousel { position: relative; margin-top: 36px; }
.stories-track {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: min(440px, 86%);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: thin;
}
.stories-track > * { scroll-snap-align: start; }

.story-card {
  background: #fff; border: 1px solid var(--rule-soft);
  padding: 34px 32px;
}
.story-card .quote, .story-full .quote {
  font-family: var(--display); font-size: 1.25rem; font-style: italic;
  line-height: 1.5; color: rgba(30, 30, 28, 0.88);
}
.story-card footer, .story-full footer { margin-top: 18px; }
cite { font-style: normal; font-weight: 600; font-size: 0.92rem; display: block; }
.loc { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }

.carousel-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; }
.carousel-nav button {
  background: none; border: 1px solid var(--rule); border-radius: 50%;
  width: 42px; height: 42px; font-size: 1rem; color: var(--ink); cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.carousel-nav button:hover { border-color: var(--gold); color: var(--gold); }

.stories-list { margin-top: 24px; }
.story-full {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 40px 0; border-top: 1px solid var(--rule-soft);
}
.story-full:first-child { border-top: 0; }
.stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 10px; }
@media (max-width: 620px) { .story-full { flex-direction: column; } }

/* ------------------------------------------------------------------
   Journey detail
   ------------------------------------------------------------------ */
.journey-hero { padding-top: 76px; }
.breadcrumbs { font-size: 0.8rem; color: var(--sage); margin-bottom: 22px; }
.breadcrumbs a { color: var(--sage); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span[aria-current] { color: rgba(30, 30, 28, 0.6); }

.highlights { list-style: none; margin-top: 24px; }
.highlights li {
  padding: 16px 0 16px 34px;
  border-top: 1px solid var(--rule-soft);
  position: relative;
  font-size: 1.02rem;
}
.highlights li::before {
  content: "—";
  position: absolute; left: 0; color: var(--gold);
}

.muted-note { color: rgba(30, 30, 28, 0.62); font-size: 0.95rem; max-width: 560px; }
.rhythm { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 32px; margin-top: 36px; }
.rhythm-num {
  font-family: var(--display); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1;
}
.rhythm-step h3 { margin: 10px 0 8px; font-size: 1.15rem; }
.rhythm-step p { font-size: 0.92rem; color: rgba(30, 30, 28, 0.72); }

.faqs { margin-top: 20px; }
.faqs details { border-top: 1px solid var(--rule); }
.faqs details:last-child { border-bottom: 1px solid var(--rule); }
.faqs summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-size: 1.2rem;
  padding: 20px 36px 20px 0; position: relative;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+"; position: absolute; right: 4px; top: 18px;
  color: var(--gold); font-size: 1.4rem; font-family: var(--body); font-weight: 300;
  transition: transform 0.3s ease;
}
.faqs details[open] summary::after { transform: rotate(45deg); }
.faqs details p { padding: 0 0 22px; color: rgba(30, 30, 28, 0.75); max-width: 640px; }

/* ------------------------------------------------------------------
   Contact
   ------------------------------------------------------------------ */
.contact-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row.two { grid-template-columns: 1fr; } }

label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--rule); border-radius: 2px;
  padding: 13px 15px;
  font: 0.96rem var(--body); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 1px solid var(--gold); border-color: var(--gold); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice { border: 1px solid var(--sage); padding: 26px 30px; margin-bottom: 28px; background: #fff; }
.notice h2 { font-size: 1.5rem; }
.notice.err { border-color: #8d3a2f; color: #8d3a2f; }

.contact-side h2 { font-size: 1.6rem; }
.contact-side h3 { margin-top: 30px; margin-bottom: 8px; font-size: 1.15rem; }
.contact-list { list-style: none; }
.contact-list li { padding: 6px 0; font-size: 0.95rem; }
.contact-list li span { display: inline-block; min-width: 60px; color: var(--sage); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-side address, address { font-style: normal; color: rgba(30, 30, 28, 0.75); font-size: 0.95rem; }
.small-note { font-size: 0.9rem; color: rgba(30, 30, 28, 0.72); }

/* ------------------------------------------------------------------
   CTA band & footer
   ------------------------------------------------------------------ */
.cta-band {
  background: var(--ink); color: var(--ivory);
  text-align: center; padding: 96px 24px;
}
.cta-band h2 { color: var(--ivory); }
.cta-band p { color: rgba(250, 247, 242, 0.72); max-width: 520px; margin: 0 auto 32px; }
.cta-band .btn { background: transparent; border-color: var(--gold); color: var(--ivory); }
.cta-band .btn:hover { background: var(--gold); }

.site-footer { background: var(--ivory); border-top: 1px solid var(--rule-soft); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.footer-brand {
  font-family: var(--display); font-size: 1.8rem;
  letter-spacing: 0.28em; text-transform: uppercase;
}
.footer-tag { color: var(--gold); font-size: 0.9rem; margin: 6px 0 18px; }
.site-footer h3 {
  font-family: var(--body); font-size: 0.76rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 4px 0; }
.site-footer ul a { color: rgba(30, 30, 28, 0.78); font-size: 0.94rem; }
.site-footer ul a:hover { color: var(--gold); text-decoration: none; }
.social-list { margin-top: 4px; }
.site-footer .social-list { margin-bottom: 8px; }
.site-footer h3 + .social-list { margin-top: 0; }
.footer-base {
  border-top: 1px solid var(--rule-soft);
  padding-top: 22px; padding-bottom: 26px;
  font-size: 0.8rem; color: rgba(30, 30, 28, 0.5);
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--sage); color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(30, 30, 28, 0.18);
  transition: background 0.3s ease, transform 0.3s ease;
}
.wa-float:hover { background: var(--gold); transform: translateY(-2px); }

/* Post end */
.post-end { margin-top: 40px; }

/* Mobile spacing */
@media (max-width: 640px) {
  .hero { padding: 140px 0 70px; }
  .page-head { padding-top: 130px; }
  .section { padding: 60px 0; }
}
