/* ============================================================
   Travel by Liane — Template A (flyer-matched, elegant editorial)
   ============================================================ */

:root {
  /* Palette (sampled from the flyer) */
  --cream:        #f6f1e7;
  --cream-2:      #fbf8f1;
  --cream-3:      #efe7d6;
  --ink:          #22323b;
  --ink-soft:     #475158;
  --gold:         #b0894f;
  --gold-deep:    #8c6b3b;
  --gold-light:   #c9ac74;
  --line:         rgba(176, 137, 79, 0.45);

  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-body:    "EB Garamond", Georgia, serif;

  --maxw: 1140px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
.section[id],
#top {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

img { max-width: 100%; display: block; }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--serif-display);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.heading {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}
.heading-light { color: var(--cream); }

.eyebrow {
  font-family: var(--serif-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  color: var(--gold-deep);
  margin: 0 0 0.9rem;
}
.eyebrow-light { color: var(--gold-light); }

/* Divider with diamond accent */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.3rem 0 1.6rem;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 0 0 auto;
}
.divider::before { width: 26px; }
.divider::after  { width: 0; }
.divider span { font-size: 0.7rem; }
.divider-center { justify-content: center; }
.divider-center::after { width: 26px; }
.divider-light { color: var(--gold-light); }
.divider-light::before, .divider-light::after { background: rgba(201, 172, 116, 0.5); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--serif-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 2.1em;
  border: 1px solid var(--gold);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--cream-2); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-ghost { background: transparent; color: var(--gold-deep); }
.btn-ghost:hover { background: var(--gold); color: var(--cream-2); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(255,255,255,0.7); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-lg { padding: 1.1em 2.6em; font-size: 0.86rem; }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn-instagram svg { width: 16px; height: 16px; flex: 0 0 auto; }
.btn-instagram:hover { background: var(--gold); color: var(--cream-2); }
.hero .btn-instagram,
.contact .btn-instagram { color: var(--cream); border-color: rgba(255,255,255,0.7); }
.hero .btn-instagram:hover,
.contact .btn-instagram:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.nav-ig { padding: 0; }
.contact-social { margin: 1.8rem 0 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { background: rgba(246, 241, 231, 0.98); }
.site-header .container { max-width: 1240px; padding: 0 32px; }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 36px;
  min-height: 84px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--serif-display);
  white-space: nowrap;
}
.wordmark-deco { color: var(--gold); font-size: 0.85rem; line-height: 1; }
.wordmark-stack { display: flex; flex-direction: column; line-height: 1; }
.wordmark-top {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.wordmark em {
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.55rem;
  line-height: 1.05;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 8px 0 6px;
  line-height: 1;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-ig {
  width: 42px;
  height: 42px;
  justify-content: center;
  flex: 0 0 42px;
}
.nav-cta {
  padding: 0.7em 1.35em;
  white-space: nowrap;
}
.nav-toggle { display: none; }

/* ---------- Photo component (with graceful fallback) ---------- */
.photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--cream-3) 0%, var(--cream-2) 50%, var(--cream-3) 100%);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo.is-empty img { display: none; }
.photo.is-empty::before {
  /* elegant gold frame placeholder */
  content: "\2726";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gold-light);
}
.photo.is-empty::after {
  content: attr(data-label);
  position: absolute; left: 0; right: 0; bottom: 18px;
  text-align: center;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep);
}
.photo.is-empty {
  box-shadow: inset 0 0 0 1px var(--line);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 22px;
  border: 1px solid rgba(201, 172, 116, 0.45);
  pointer-events: none;
  z-index: 2;
}
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { transform: scale(1.04); transition: transform 12s ease; }
.hero.is-visible .hero-photo img { transform: scale(1.1); }
.hero-photo.is-empty {
  background: linear-gradient(160deg, #2a3b44 0%, #3d4e54 45%, #6b5836 100%);
}
.hero-photo.is-empty::before, .hero-photo.is-empty::after { color: rgba(255,255,255,0.55); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,28,33,0.55) 0%, rgba(20,28,33,0.35) 45%, rgba(20,28,33,0.65) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero .display {
  color: var(--cream);
  font-size: clamp(3rem, 9vw, 6.5rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-tagline {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.06em;
  margin: 0.6rem 0 2rem;
  color: var(--cream-2);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.trust { background: #1b2930; color: var(--cream-2); }
.trust-inner {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  padding: 18px 0; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.trust-inner span { color: var(--gold-light); }

.fit-grid, .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.fit-card, .step {
  text-align: left;
  padding: 28px 24px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.fit-card:hover, .step:hover { transform: translateY(-4px); border-color: var(--gold); }
.fit-card h3 {
  font-family: var(--serif-display); font-size: 1.45rem; color: var(--ink);
  margin: 0 0 10px; font-weight: 500;
}
.fit-card p { margin: 0; font-style: italic; }
.step { padding: 28px 24px; }
.step-num { display: block; color: var(--gold); letter-spacing: 0.2em; font-size: 0.78rem; margin-bottom: 10px; }
.step h3 { font-family: var(--serif-display); font-size: 1.45rem; color: var(--ink); margin: 0 0 10px; font-weight: 500; }
.step p { margin: 0; font-style: italic; }

.gallery-figure { margin: 0; }
.gallery-figure figcaption {
  margin-top: 10px; text-align: center;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.78rem; color: var(--ink);
}
.nav-mobile-cta { display: none; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { text-align: center; margin-bottom: 56px; }

/* About */
.about { background: var(--cream-2); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.portrait-photo { aspect-ratio: 4 / 5; box-shadow: 0 18px 50px rgba(34,50,59,0.14); }
.about-text p { margin: 0 0 1.1rem; }
.signature { font-family: var(--serif-display); font-size: 1.25rem; color: var(--ink); font-style: italic; margin-top: 1.5rem; }
.signature span { color: var(--ink-soft); font-size: 0.95rem; }

/* Pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.pillar { text-align: center; padding: 40px 28px; background: var(--cream-2); border: 1px solid var(--line); }
.pillar-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; }
.pillar h3 {
  font-family: var(--serif-body); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.92rem; color: var(--ink); margin: 0 0 12px;
}
.pillar p { font-style: italic; margin: 0; font-size: 1.02rem; }

/* Perks */
.perks { background: var(--cream-2); }
.perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.perks-list { list-style: none; padding: 0; margin: 0 0 1.6rem; }
.perks-list li {
  position: relative; padding-left: 30px; margin-bottom: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.86rem; color: var(--ink);
}
.perks-list li::before { content: "\2726"; position: absolute; left: 0; top: 0; color: var(--gold); }
.loyalty-note { border: 1px solid var(--line); padding: 18px 24px; display: inline-block; }
.loyalty-note p { margin: 0; }
.loyalty-note strong { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.85rem; color: var(--ink); }
.loyalty-note em { color: var(--gold-deep); }
.perks-photo { aspect-ratio: 4 / 3; }

/* Specialties */
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.chips li {
  border: 1px solid var(--gold); color: var(--gold-deep);
  padding: 0.6em 1.5em; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.8rem;
  transition: all 0.3s ease;
}
.chips li:hover { background: var(--gold); color: var(--cream-2); }

/* Gallery */
.gallery-section { background: var(--cream-2); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-mosaic .feature { grid-column: span 2; grid-row: span 2; }
.gallery-item { aspect-ratio: 4 / 3; }
.gallery-mosaic .feature .gallery-item { aspect-ratio: auto; height: 100%; min-height: 360px; }
.gallery-item img { transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.values {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.values li { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem; color: var(--ink); }
.value-mark { color: var(--gold); margin-right: 8px; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review {
  margin: 0; padding: 36px 30px; background: var(--cream-2); border-top: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(34,50,59,0.06);
}
.review p { font-style: italic; font-size: 1.05rem; margin: 0 0 1rem; }
.review cite { font-style: normal; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--gold-deep); }
.reviews-cta { text-align: center; margin-top: 44px; }

/* Contact */
.contact { background: linear-gradient(160deg, #22323b 0%, #2c3f48 100%); text-align: center; }
.contact .eyebrow-light { color: var(--gold-light); }
.contact-lead { color: var(--cream-2); max-width: 540px; margin: 0 auto 2rem; }
.contact-details { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.contact-details a {
  color: var(--cream); text-decoration: none; letter-spacing: 0.06em; font-size: 1.05rem;
}
.contact-details a:hover { color: var(--gold-light); }

/* Footer */
.site-footer { background: #1b2930; color: var(--cream-2); padding: 56px 0; text-align: center; }
.footer-brand { font-family: var(--serif-display); font-size: 1.5rem; letter-spacing: 0.14em; text-transform: uppercase; margin: 0 0 6px; }
.footer-brand em { color: var(--gold-light); font-style: italic; text-transform: none; }
.footer-tagline { color: var(--gold-light); font-style: italic; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; margin: 0 0 26px; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer-links a { color: var(--cream-2); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-light); }
.footer-fine { font-size: 0.78rem; color: rgba(251,248,241,0.6); letter-spacing: 0.08em; margin: 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.note-form { max-width: 520px; margin: 2.2rem auto 0; text-align: left; }
.note-label { color: var(--gold-light); text-align: center; letter-spacing: 0.08em; font-size: 0.92rem; }
.note-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.note-form input, .note-form textarea {
  width: 100%; margin: 0 0 10px; padding: 0.85rem 0.9rem;
  border: 1px solid rgba(201,172,116,0.5); background: rgba(255,255,255,0.06); color: var(--cream);
  font: inherit;
}
.note-form input::placeholder, .note-form textarea::placeholder { color: rgba(251,248,241,0.55); }
.note-form .btn { width: 100%; text-align: center; }
.note-status { text-align: center; color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 26px; height: 2px; background: var(--ink); display: block; }
  .site-header.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 22px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.menu-open .nav-mobile-cta { display: inline-block; color: var(--gold-deep); }
}
@media (max-width: 860px) {
  .about-grid, .perks-grid { grid-template-columns: 1fr; }
  .perks-photo { order: -1; }
  .pillar-grid, .review-grid, .step-grid, .fit-grid, .note-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic .feature { grid-column: span 2; grid-row: auto; }
  .hero::after { inset: 12px; }
  .values { gap: 20px; }
}
@media (max-width: 480px) {
  body { font-size: 18px; }
  .gallery { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint { animation: none; }
  html { scroll-behavior: auto; }
}
