/* ═══════════════════════════════════════════
   5 STAR TRAVEL GURU — GLOBAL DESIGN SYSTEM
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim:   #8B6E2E;
  --gold-bg:    #F9F6EE;
  --black:      #0A0A08;
  --off-black:  #111110;
  --dark:       #1A1A17;
  --charcoal:   #2A2A26;
  --mid:        #4A4A45;
  --muted:      #8A8A80;
  --lgray:      #C8C8B8;
  --warm-white: #FAFAF7;
  --off-white:  #F2F0E8;
  --border:     #E2DDD0;
  --text:       #1A1A17;
  --text-mid:   #5A5A52;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Montserrat', sans-serif;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  background: rgba(10,10,8,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(201,168,76,0.18);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-logo span { color: #F5F3EC; font-weight: 300; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lgray);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--lgray);
  transition: all 0.3s;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--off-black);
  border-top: 0.5px solid rgba(201,168,76,0.12);
  padding: 4rem 3.5rem 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(201,168,76,0.1);
}
.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 11px; color: var(--muted); line-height: 1.8; max-width: 260px; }
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 12px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 10px; color: var(--mid); letter-spacing: 0.06em; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }

/* ══════════════════════════════════════
   SHARED SECTION UTILITIES
══════════════════════════════════════ */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5.5rem 3.5rem;
}

.section-eyebrow {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 0.5px;
  background: var(--gold-dim);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.08;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.light { color: #F5F3EC; }
.section-title.light em { color: var(--gold-light); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--border);
}

.see-all {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 0.5px solid var(--gold-dim);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.see-all:hover { color: var(--gold); border-color: var(--gold); }

/* ── GOLD RULE ── */
.gold-rule {
  width: 48px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-gold { color: var(--black); background: var(--gold); padding: 13px 32px; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { color: var(--gold); background: transparent; border: 0.5px solid var(--gold-dim); padding: 12px 28px; }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.btn-ghost { color: var(--gold); border-bottom: 0.5px solid var(--gold-dim); padding-bottom: 3px; }
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ── BLOG CARDS ── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

.post-card {
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.10); }

.post-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--off-white);
  position: relative;
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body { padding: 1.5rem 1.6rem 1.75rem; }

.post-card-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid rgba(201,168,76,0.4);
  padding: 4px 10px;
  margin-bottom: 0.85rem;
}

.post-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.post-card-excerpt {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}
.post-card-date { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; }
.post-card-read {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 0.5px solid var(--gold-dim);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.post-card:hover .post-card-read { color: var(--gold); border-color: var(--gold); }

/* ── NEWSLETTER STRIP ── */
.nl-strip {
  background: var(--black);
  padding: 5rem 3.5rem;
}
.nl-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nl-title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; color: #F5F3EC; line-height: 1.15; }
.nl-title em { font-style: italic; color: var(--gold-light); }
.nl-sub { font-size: 12px; color: var(--muted); line-height: 1.85; margin-top: 1rem; }
.nl-form { display: flex; flex-direction: column; gap: 0.85rem; }
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.nl-input {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.25);
  color: #F5F3EC;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.nl-input::placeholder { color: var(--mid); }
.nl-input:focus { border-color: var(--gold); }
.nl-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 13px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.nl-submit:hover { background: var(--gold-light); }
.nl-note { font-size: 9px; color: var(--mid); letter-spacing: 0.04em; }

/* ── FADE-IN ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp 0.55s ease forwards; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 0 1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nl-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-wrap { padding: 4rem 1.5rem; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nl-row { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
