/* ============================================================
   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; }

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: all 0.3s ease;
  cursor: pointer;
}
.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; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 24px; min-height: 76px; }
.wordmark {
  display: flex; align-items: baseline; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-family: var(--serif-display);
  font-size: 1.5rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-right: auto;
}
.wordmark-deco { color: var(--gold); font-size: 0.9rem; }
.wordmark em { color: var(--gold); font-style: italic; text-transform: none; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft);
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; 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-cta { padding: 0.65em 1.5em; }
.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: 90vh;
  display: flex; align-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; }
.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; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; color: var(--cream); font-size: 1.4rem;
  animation: bob 2s ease-in-out infinite; opacity: 0.8;
}
@keyframes bob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- 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-item { aspect-ratio: 4 / 3; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.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(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links, .nav-cta { 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; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--cream); padding: 20px 28px; gap: 18px; border-bottom: 1px solid var(--line);
  }
  .about-grid, .perks-grid { grid-template-columns: 1fr; }
  .perks-photo { order: -1; }
  .pillar-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .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; }
}
