:root {
  --green: #1f3d2f;
  --green-deep: #16302410;
  --cream: #f4f1e8;
  --cream-card: #eae6d8;
  --ink: #1a1a1a;
  --muted: #6b6b5e;
  --accent: #3d6a4f;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

em { font-style: italic; }

/* REVEAL ANIMATION */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 56px;
  max-width: 1400px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,241,232,0.85);
  backdrop-filter: blur(10px);
  transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand em { color: var(--accent); }
.logo-mark {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-block;
  background: url('../img/favicon.svg') center / contain no-repeat;
  font-size: 0; color: transparent;
  transition: transform 0.4s ease;
}
.brand:hover .logo-mark { transform: rotate(45deg); }

/* CATEGORY ACCENT COLOURS (matched to the compass icons) */
.cat-flights { color: #b5852b !important; }  /* gold — flights/travel */
.cat-hotels  { color: #3f7d97 !important; }  /* blue — hotels */
.cat-sound   { color: #4f7d62 !important; }  /* sage-green — sound & tech */
.cat-food    { color: #b8552d !important; }  /* terracotta — food */
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.btn-subscribe {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 11px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
}
.btn-subscribe:hover { background: var(--green); color: var(--cream); }
.nav.scrolled {
  padding-top: 16px; padding-bottom: 16px;
  border-bottom-color: rgba(31,61,47,0.12);
  box-shadow: 0 4px 20px rgba(31,61,47,0.05);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 56px 80px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  position: relative;
  padding-left: 40px;
}
.eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1px; background: var(--accent);
}
.eyebrow.light { color: #a9c4b2; }
.eyebrow.light::before { background: #a9c4b2; }
.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -1px;
}
.hero-text h1 em { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin: 32px 0 40px;
  font-weight: 300;
}
.hero-actions { display: flex; align-items: center; gap: 28px; }
.btn-primary {
  background: var(--green);
  color: var(--cream);
  padding: 16px 34px;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent); }
.btn-text {
  font-size: 12px; letter-spacing: 1.5px; font-weight: 600;
  text-decoration: none; color: var(--ink);
}

.hero-feature {
  background: linear-gradient(155deg, #244a37 0%, #16302a 100%);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hero-feature::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%),
    repeating-linear-gradient(135deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero-card {
  background: rgba(244,241,232,0.07);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244,241,232,0.12);
  padding: 32px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}
.card-eyebrow {
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  color: #8fb89c; margin-bottom: 16px;
}
.hero-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; line-height: 1.1; font-weight: 500;
  color: var(--cream); margin-bottom: 20px;
}
.card-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 12px; color: #a9c4b2; margin-bottom: 18px;
}
.card-meta .dot { opacity: 0.5; }
.card-link {
  font-size: 12px; letter-spacing: 1px; font-weight: 600;
  color: var(--cream); text-decoration: none;
  border-bottom: 1px solid rgba(244,241,232,0.4);
  padding-bottom: 2px;
}

/* LATEST */
.latest { max-width: 1400px; margin: 0 auto; padding: 40px 56px 80px; }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(31,61,47,0.15);
  padding-bottom: 20px; margin-bottom: 48px;
}
.section-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 500; color: var(--green);
}
.section-link {
  font-size: 12px; letter-spacing: 1.5px; font-weight: 600;
  color: var(--accent); text-decoration: none;
}
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.post { cursor: pointer; transition: transform 0.25s ease; text-decoration: none; color: inherit; display: block; }
.post:hover { transform: translateY(-5px); }
.post-img {
  height: 240px; border-radius: 3px; margin-bottom: 22px;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.post:hover .post-img { box-shadow: 0 16px 32px rgba(31,61,47,0.18); }
.post:hover h4 { color: var(--accent); }
.post h4 { transition: color 0.2s ease; }
.post-img.sound { background: linear-gradient(140deg, #2d5240, #1a3327); }
.post-img.hotel { background: linear-gradient(140deg, #3d6a4f, #244a37); }
.post-img.food { background: linear-gradient(140deg, #4a6b52, #2d5240); }
.post-cat {
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  color: var(--accent); margin-bottom: 12px;
}
.post h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px; line-height: 1.15; font-weight: 500;
  color: var(--green); margin-bottom: 12px;
}
.post-excerpt { font-size: 15px; color: var(--muted); font-weight: 300; margin-bottom: 14px; }
.post-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.5px; }

/* SUBSCRIBE */
.subscribe {
  background: linear-gradient(155deg, #244a37 0%, #16302a 100%);
  margin: 40px 0 0;
  padding: 90px 56px;
}
.subscribe-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.subscribe-inner .eyebrow { padding-left: 0; display: inline-block; }
.subscribe-inner .eyebrow::before { display: none; }
.subscribe h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 500; color: var(--cream);
  margin-bottom: 16px;
}
.subscribe-sub { color: #c5d6cc; font-weight: 300; margin-bottom: 36px; }
.subscribe-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.subscribe-form input {
  background: rgba(244,241,232,0.1);
  border: 1px solid rgba(244,241,232,0.25);
  color: var(--cream);
  padding: 15px 20px; border-radius: 2px; width: 320px;
  font-family: 'Inter', sans-serif; font-size: 14px;
}
.subscribe-form input::placeholder { color: #8fb89c; }
.subscribe-form button {
  background: var(--cream); color: var(--green);
  border: none; padding: 15px 30px; border-radius: 2px;
  font-size: 12px; letter-spacing: 1.5px; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s;
}
.subscribe-form button:hover { opacity: 0.85; }
.form-note { width: 100%; color: #8fb89c; font-size: 13px; margin-top: 8px; }
.subscribe-note {
  font-size: 13px; color: #8fb89c; letter-spacing: 0.3px; font-weight: 300;
}

/* FOOTER */
.footer {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 36px 56px;
}
.brand.small { font-size: 20px; }
.footer p { font-size: 13px; color: var(--muted); }

/* RICH FOOTER */
.footer-rich {
  border-top: 1px solid rgba(31,61,47,0.12);
  margin-top: 0;
}
.footer-rich-inner {
  max-width: 1400px; margin: 0 auto; padding: 64px 56px 32px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
}
.footer-col h5 {
  font-size: 11px; letter-spacing: 2px; font-weight: 600;
  color: var(--accent); margin-bottom: 20px; text-transform: uppercase;
}
.footer-col .brand { margin-bottom: 16px; }
.footer-blurb { font-size: 15px; color: var(--muted); font-weight: 300; max-width: 320px; }
.footer-col a {
  display: block; font-size: 14px; color: var(--ink); text-decoration: none;
  margin-bottom: 12px; font-weight: 300; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding: 24px 56px;
  border-top: 1px solid rgba(31,61,47,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) {
  .footer-rich-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; padding: 20px 24px; text-align: center; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; flex-wrap: wrap; gap: 16px; }
  .nav-links { gap: 18px; order: 3; width: 100%; flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; padding: 24px; gap: 40px; }
  .hero-text h1 { font-size: 52px; }
  .hero-feature { min-height: 420px; }
  .grid { grid-template-columns: 1fr; }
  .latest, .subscribe { padding: 48px 24px; }
  .subscribe h3 { font-size: 38px; }
  .tiers { flex-direction: column; align-items: center; }
}

/* ============================================================
   GHOST THEME ADDITIONS
   ============================================================ */

/* Tag-slug colour classes (match the compass icons) */
.tag-travel      { color: #b5852b !important; }  /* gold   — travel/flights */
.tag-hotels      { color: #3f7d97 !important; }  /* blue   — hotels         */
.tag-sound-tech  { color: #4f7d62 !important; }  /* sage   — sound & tech   */
.tag-food        { color: #b8552d !important; }  /* terracotta — food       */

/* Active nav item */
.nav-current { color: var(--accent) !important; }

/* Members form note */
.subscribe-form .form-note[data-members-error] { color: #e7b9a6; }

/* ---- Koenig (Ghost editor) content styles ---- */
.kg-canvas { font-size: 18px; }
.kg-canvas a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.kg-canvas strong { font-weight: 600; color: var(--green); }
.kg-canvas ul, .kg-canvas ol { margin: 0 0 26px 22px; }
.kg-canvas li { margin-bottom: 8px; }
.kg-canvas img { max-width: 100%; height: auto; border-radius: 4px; }
.kg-canvas figure { margin: 36px 0; }
.kg-canvas figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 10px; }
.kg-width-wide { width: 100%; }
.kg-width-full { width: 100%; }
.kg-card { margin: 36px 0; }
.kg-bookmark-card { border: 1px solid rgba(31,61,47,0.15); border-radius: 4px; overflow: hidden; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 20px; }
.kg-bookmark-title { font-weight: 600; color: var(--green); }
.kg-bookmark-description { color: var(--muted); font-size: 14px; }
hr { border: none; border-top: 1px solid rgba(31,61,47,0.15); margin: 40px 0; }
