/* ======================================================
   THE LAST NOMADS — MAIN STYLESHEET
   Shared by EN/ES landing pages, journal, guides, shop and legal pages.
   Cleaned split: MailerLite rules moved to mailerlite.css.
====================================================== */

/* ======================================================
   00. EXTERNAL FONTS
====================================================== */

/* External MailerLite font import removed to avoid a flash of unstyled content.
   The site already uses Georgia/Arial fallbacks, so this is safer for launch. */

/* ======================================================
   01. DESIGN TOKENS
====================================================== */

:root {
  --sun: #d6a321;
  --clay: #a66b3d;
  --olive: #667548;
  --olive-soft: #eef1e4;
  --olive-field: #dfe4d4;
  --olive-deep: #5d6840;
  --stone: #e7decf;
  --sand: #f8f4eb;
  --charcoal: #2c2925;
  --bluegrey: #9dafbd;
  --white: #fffdf8;
}

/* ======================================================
   02. RESET / BASE
====================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--sand);
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ======================================================
   03. LAYOUT UTILITIES
====================================================== */

section {
  padding: 96px 24px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.centered-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ======================================================
   04. TYPOGRAPHY
====================================================== */

.eyebrow {
  margin-bottom: 20px;
  color: var(--olive);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.section-title {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 840px;
  color: rgba(44, 41, 37, 0.76);
  font-size: 1.2rem;
}

/* ======================================================
   05. HEADER / NAVIGATION
====================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(44, 41, 37, 0.08);
  background: rgba(248, 244, 235, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a,
.lang-switch {
  color: var(--olive);
  font-weight: 700;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a {
  opacity: 0.92;
}

.lang-switch {
  opacity: 0.8;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.nav-links a:hover,
.lang-switch:hover {
  color: var(--sun);
  opacity: 1;
}

/* Hide raw checkbox (used for mobile nav toggle) */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
}

/* ======================================================
   06. BUTTONS
====================================================== */

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  padding: 14px 22px;
  border: 1px solid rgba(44, 41, 37, 0.15);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.button.primary {
  background: var(--charcoal);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.48);
}

.button.seed {
  background: var(--sun);
  color: var(--charcoal);
  border-color: rgba(44, 41, 37, 0.08);
}

/* ======================================================
   07. HERO
====================================================== */

.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 163, 33, 0.20), transparent 32%),
    radial-gradient(circle at 78% 68%, rgba(102, 117, 72, 0.22), transparent 38%),
    linear-gradient(145deg, #fff9ed 0%, #f3eadb 52%, #dfd4bf 100%);
}

.hero-inner {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero p {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(44, 41, 37, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-visual {
  position: relative;
  max-width: 640px;
  min-height: 460px;
  aspect-ratio: 15 / 10;
  overflow: hidden;
  border: 1px solid rgba(44, 41, 37, 0.10);
  border-radius: 42px;
  background: var(--stone);
  box-shadow: 0 34px 90px rgba(44, 41, 37, 0.16);
}

.hero-visual img.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(44, 41, 37, 0.22), transparent 42%),
    radial-gradient(circle at 20% 20%, rgba(214, 163, 33, 0.10), transparent 28%);
  pointer-events: none;
}

.hero-visual > span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--charcoal);
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

/* ======================================================
   08. ROOT
====================================================== */

.root {
  position: relative;
  overflow: hidden;
  padding-bottom: 140px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 163, 33, 0.18), transparent 32%),
    linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: var(--sand);
}

.root .container {
  position: relative;
  z-index: 2;
}

.root .lead {
  max-width: 70%;
  color: rgba(248, 244, 235, 0.86);
}

.root-symbol {
  position: absolute;
  right: -20%;
  top: 10%;
  z-index: 1;
  width: auto;
  height: 280px;
  opacity: 0.11;
  pointer-events: none;
  transform: translateY(-90%);
}

.root-symbol img {
  display: block;
  width: 100%;
  height: auto;
}

/* ======================================================
   09. DREAM / MANIFESTO
====================================================== */

.dream {
  background: var(--charcoal);
  color: var(--sand);
}

.dream .lead,
.manifesto-card p {
  color: rgba(248, 244, 235, 0.78);
}

.dream-caption {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  opacity: 0.82;
}

.dream-image {
  overflow: hidden;
  margin: 56px 0 60px;
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.dream-image img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 44px;
}

.manifesto-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.manifesto-card h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

/* ======================================================
   10. PATHS
====================================================== */

.paths {
  background: var(--olive-soft);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.path {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(44, 41, 37, 0.09);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(44, 41, 37, 0.06);
}

.path span {
  font-size: 2rem;
}

.path h3 {
  margin: 12px 0 8px;
  font-size: 1.55rem;
}

.path p {
  color: rgba(44, 41, 37, 0.68);
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.5;
}

/* ======================================================
   11. JOURNAL / BUILDING IN PUBLIC
====================================================== */

.journal {
  background: var(--olive-field);
}

.channel-list {
  display: grid;
  gap: 16px;
}

.channel {
  padding: 24px;
  border: 1px solid rgba(44, 41, 37, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.channel h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.channel p {
  color: rgba(44, 41, 37, 0.69);
  font-family: Arial, sans-serif;
}

/* ======================================================
   12. ROADMAP
====================================================== */

.timeline {
  background: var(--white);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.phase {
  padding: 26px;
  border-left: 4px solid var(--sun);
  border-radius: 20px;
  background: var(--sand);
}

.phase h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.phase p {
  color: rgba(44, 41, 37, 0.68);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

/* ======================================================
   13. SUPPORT
====================================================== */

.support {
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 163, 33, 0.20), transparent 28%),
    linear-gradient(135deg, var(--olive-deep), #4f5d38);
  color: var(--sand);
}

.support .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.support .lead {
  color: rgba(248, 244, 235, 0.82);
}

.support-closing {
  max-width: 720px;
  margin-top: 18px;
  opacity: 0.9;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
}

.support-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.support-card p {
  color: rgba(248, 244, 235, 0.76);
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  line-height: 1.5;
}

.support-card .button {
  align-self: center;
  margin-top: 28px;
}

/* ======================================================
   14. COMMUNITY / NEWSLETTER
====================================================== */

.community {
  background:
    linear-gradient(rgba(44, 41, 37, 0.76), rgba(44, 41, 37, 0.76)),
    radial-gradient(circle at 25% 30%, rgba(214, 163, 33, 0.30), transparent 38%),
    radial-gradient(circle at 75% 65%, rgba(102, 117, 72, 0.36), transparent 45%),
    var(--charcoal);
  color: var(--sand);
  text-align: center;
}

.community .lead {
  margin: 0 auto;
  color: rgba(248, 244, 235, 0.78);
}

.newsletter {
  max-width: 720px;
  margin: 40px auto 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter input {
  width: 100%;
  margin: 18px 0;
  padding: 16px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--sand);
  font-size: 1rem;
}

/* ======================================================
   15. INNER BRIDGE
====================================================== */

.inner-bridge-section {
  padding: 4.5rem 1.5rem;
  background: var(--stone);
}

.inner-bridge-section .container {
  max-width: 820px;
}

.bridge-intro {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #6f6a56;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.bridge-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border-left: 4px solid var(--sun);
  border-bottom: 2px solid var(--sun);
  border-radius: 28px;
  background: #f5efe3;
  box-shadow:
    0 10px 25px rgba(120, 90, 20, 0.06),
    0 4px 8px rgba(120, 90, 20, 0.04);
  text-align: center;
}

.bridge-card h3 {
  margin-bottom: 1.4rem;
  color: var(--charcoal);
  font-size: 2rem;
}

.bridge-card p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: #5f5949;
  font-size: 1rem;
  line-height: 1.85;
}

.bridge-card .button.secondary {
  margin-top: 0.5rem;
}

/* ======================================================
   16. CLOSING MANTRA
====================================================== */

.ecosystem {
  background: var(--stone);
  text-align: center;
}

.ecosystem .lead {
  margin: 0 auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 42px;
}

.ecosystem-card {
  padding: 30px;
  border: 1px solid rgba(44, 41, 37, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.52);
  text-align: left;
}

.ecosystem-card h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.ecosystem-card p {
  color: rgba(44, 41, 37, 0.68);
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

/* ======================================================
   17. FOOTER
====================================================== */

footer {
  padding: 38px 24px;
  color: rgba(44, 41, 37, 0.55);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.footer-line {
  margin-bottom: 16px;
  color: rgba(44, 41, 37, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.footer-legal a {
  color: rgba(44, 41, 37, 0.45);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--olive);
}

/* ======================================================
   18. LEGAL PAGES
====================================================== */

.legal-page {
  max-width: 760px;
  margin: 70px auto;
  padding: 70px 55px;
  border-radius: 28px;
  background: var(--sand);
  box-shadow: 0 18px 40px rgba(44, 41, 37, 0.06);
  color: var(--charcoal);
}

.legal-page h1 {
  margin-bottom: 28px;
  color: var(--charcoal);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.legal-page h2 {
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 1.15rem;
}

.legal-page p {
  margin-bottom: 14px;
  color: rgba(44, 41, 37, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--olive);
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.legal-back:hover {
  opacity: 0.7;
}

.legal-updated {
  margin-top: 34px;
  font-size: 0.88rem !important;
  opacity: 0.65;
}


/* ======================================================
   19. RESPONSIVE
====================================================== */

@media (max-width: 900px) {
  .hero-inner,
  .manifesto,
  .split,
  .timeline-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .paths-grid,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

   .root-symbol {
    right: -28%;
    top: 36%;
    height: 400px;
    opacity: 0.08;
  }

  .root .lead {
    max-width: 100%;
  }
  
  
}

@media (max-width: 560px) {


  h1 {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

  section {
    padding: 72px 20px;
  }

.hero {
  padding: 72px 20px;
}

.hero-inner {
  display: block;
  width: 100%;
  max-width: 100%;
}

.hero-visual {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 32px;
  aspect-ratio: auto;
  min-height: 0;
  height: auto;
  border-radius: 28px;
  overflow: hidden;
}

.hero-visual img.hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-width: 100%;
  object-fit: contain;
}

  .paths-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .bridge-card {
    padding: 2.3rem 1.6rem;
  }

  .newsletter {
    padding: 24px 18px;
  }

  .legal-page {
    margin: 36px 18px;
    padding: 42px 28px;
  }

  .root-symbol {
    display: none;
  }
}

/* ======================================================
   RESOURCE SECTION MOBILE/TABLET SPACING
====================================================== */

.resource-section h2 {
  width: min(1100px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 700px) {
  .resource-section h2 {
    width: calc(100% - 48px);
  }
}

/* ======================================================
   MOBILE / TABLET HAMBURGER NAV
====================================================== */

.nav-toggle,
.nav-toggle-label {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    position: relative;
  }

  .nav-toggle {
    display: none;
  }

  .nav-toggle-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(44, 41, 37, 0.12);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.7);
    cursor: pointer;
  }

  .nav-toggle-label span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--olive);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 24px;
    display: none;
    width: min(280px, calc(100vw - 48px));
    padding: 18px;
    border: 1px solid rgba(44, 41, 37, 0.08);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 22px 60px rgba(44, 41, 37, 0.12);
    backdrop-filter: blur(14px);
  }

  .nav-toggle:checked ~ .nav-links {
    display: grid;
    gap: 14px;
  }

  .nav-links a {
    padding: 8px 6px;
    font-size: 0.78rem;
  }
}


/* ======================================================
   20. JOURNAL / ARTICLE PAGES
====================================================== */

.journal-page,
.article-page {
  background: var(--sand);
}

.narrow,
.article-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.journal-hero {
  padding: 120px 24px 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 163, 33, 0.16), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(102, 117, 72, 0.14), transparent 34%),
    linear-gradient(145deg, #fff9ed 0%, #f3eadb 58%, #e8ddca 100%);
  text-align: center;
}

.journal-hero-inner {
  max-width: 900px;
}

.journal-hero .eyebrow {
  justify-content: center;
}

.journal-hero h1,
.article-header h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

.journal-hero .lead {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.journal-intro {
  padding: 70px 24px 40px;
  text-align: center;
}

.journal-intro p {
  color: rgba(44, 41, 37, 0.76);
  font-size: 1.12rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.journal-grid-section {
  padding: 50px 24px 100px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.journal-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(44, 41, 37, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(44, 41, 37, 0.08);
  display: flex;
  flex-direction: column;
}

.journal-card-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: var(--stone);
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.03);
}

.journal-card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.journal-meta,
.article-meta {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}

.journal-card h2 {
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.journal-card p {
  color: rgba(44, 41, 37, 0.68);
  line-height: 1.65;
}

.journal-link {
  margin-top: auto;
  padding-top: 24px;
  font-family: Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.journal-cta {
  padding: 90px 24px;
  text-align: center;
  background: var(--olive-soft);
}

.journal-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

.journal-cta p {
  color: rgba(44, 41, 37, 0.72);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.centered-buttons {
  justify-content: center;
}

.journal-page .journal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.journal-page .journal-hero h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.journal-page .journal-hero .lead {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Article */

.article-header {
  padding: 120px 24px 54px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 163, 33, 0.14), transparent 30%),
    linear-gradient(145deg, #fff9ed 0%, #f3eadb 100%);
  position: relative;
  top: auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-intro {
  color: rgba(44, 41, 37, 0.74);
  font-size: 1.22rem;
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto;
}


.article-hero-image {
  margin: 0 auto 70px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--stone);
  box-shadow: 0 24px 60px rgba(44, 41, 37, 0.10);
}

.article-hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.article-hero-image figcaption {
  padding: 16px 22px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(44, 41, 37, 0.58);
  background: rgba(255, 253, 248, 0.72);
}

.article-content {
  padding: 0 24px 80px;
}

.article-content p {
  font-size: 1.16rem;
  line-height: 1.9;
  color: rgba(44, 41, 37, 0.78);
  margin-bottom: 26px;
}

.article-content blockquote {
  margin: 46px 0;
  padding-left: 28px;
  border-left: 4px solid var(--sun);
  font-size: 1.7rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.article-note,
.article-resources {
  margin: 54px 0;
  padding: 34px;
  border-radius: 30px;
  background: var(--olive-soft);
  border: 1px solid rgba(44, 41, 37, 0.06);
}

.article-note h2,
.article-resources h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.article-resources ul {
  padding-left: 20px;
  color: rgba(44, 41, 37, 0.76);
  line-height: 1.8;
}

.article-nav {
  padding: 40px 24px 90px;
}

.article-nav-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(44, 41, 37, 0.10);
  padding-top: 28px;
}

.article-nav a {
  font-family: Arial, sans-serif;
  font-weight: 700;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

/* ======================================================
   21. SHOP PLACEHOLDER
====================================================== */

.shop-coming {
  position: relative;
  overflow: hidden;
}

/* Warm sunlight accents */

.shop-coming::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(
      circle,
      rgba(232, 195, 112, 0.22) 0%,
      rgba(232, 195, 112, 0.08) 40%,
      transparent 70%
    );
  pointer-events: none;
}

.shop-coming::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 280px;
  height: 280px;
  background:
    radial-gradient(
      circle,
      rgba(188, 156, 88, 0.12) 0%,
      transparent 65%
    );
  pointer-events: none;
}

/* Softer spacing for text */

.shop-coming .lead {
  max-width: 760px;
  margin: 0 auto 2.4rem;
  line-height: 1.95;
}

/* Olive CTA */


.shop-coming .button.primary {
  background: #d8b85c;
  color: #2b241d;
}

.shop-coming .button.primary:hover {
  background: #e2c46d;
}


/* More breathing room before buttons */

.shop-coming .buttons {
  margin-top: 3.5rem;
}

/* Additional shop panel styling */

.shop-coming .container.narrow {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 80px 70px;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(109, 119, 67, 0.08) 0%,
    rgba(109, 119, 67, 0.14) 100%
  );
}

/* ======================================================
   22. GUIDES MAP
====================================================== */

.guides-page {
  background: var(--sand);
}

.guides-hero {
  padding: 120px 24px 70px;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 163, 33, 0.16), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(102, 117, 72, 0.14), transparent 34%),
    linear-gradient(145deg, #fff9ed 0%, #f3eadb 58%, #e8ddca 100%);
  text-align: center;
}

.guides-hero .container.narrow {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  box-sizing: border-box;
}

.guides-hero .eyebrow {
  display: block;
  text-align: center;
}

.guides-hero h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.guides-hero .lead {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ======================================================
   22B. GUIDES MAP / PATH CARDS
====================================================== */

.guides-map {
  width: min(980px, calc(100% - 40px));
  margin: 70px auto 120px;
  display: grid;
  gap: 28px;
}

.path-panel {
  display: block;
  padding: 42px;
  border-radius: 34px;
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 20px 50px rgba(44, 41, 37, 0.05);
}

.path-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(44, 41, 37, 0.08);
}

.path-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.path-panel h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.path-panel p {
  max-width: 720px;
  color: rgba(44, 41, 37, 0.72);
  font-size: 1.05rem;
  line-height: 1.85;
}

.path-roots {
  background: rgba(117, 106, 82, 0.12);
}

.path-land {
  background: rgba(109, 119, 67, 0.12);
}

.path-craft {
  background: rgba(171, 112, 76, 0.12);
}

.path-slow {
  background: rgba(191, 169, 110, 0.12);
}

.path-community {
  background: rgba(75, 91, 121, 0.12);
}

@media (max-width: 560px) {
  .guides-map {
    width: min(100% - 36px, 980px);
    margin: 50px auto 90px;
  }

  .path-panel {
    padding: 30px;
    border-radius: 28px;
  }

  .path-panel h2 {
    font-size: 1.7rem;
  }
}

/* ======================================================
   23. GUIDE PATH TEMPLATE
====================================================== */

.guide-path-page {
  background: var(--sand);
}

.path-hero {
  padding: 120px 24px 60px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(214, 163, 33, 0.14), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(109, 119, 67, 0.12), transparent 35%),
    linear-gradient(145deg, #fff9ed 0%, #f3eadb 100%);
}

.path-hero .lead {
  max-width: 820px;
  margin: 0 auto;
}

.path-sections {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.path-block {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.78);
  border-left: 5px solid #d8a51f;
  box-shadow: 0 24px 60px rgba(44, 41, 37, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.path-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(44, 41, 37, 0.12);
}

.path-block::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(214, 163, 33, 0.12);
}

.path-block-head span {
  display: inline-block;
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
}

.path-block-head h2 {
  margin-bottom: 18px;
  font-size: 1.9rem;
}

.path-block p {
  color: rgba(44, 41, 37, 0.72);
  line-height: 1.75;
  margin-bottom: 26px;
}

.path-list {
  display: grid;
  gap: 12px;
}

.path-list a {
  display: block;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(109, 119, 67, 0.09);
  color: var(--charcoal);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.path-list a:hover {
  background: rgba(214, 163, 33, 0.22);
  transform: translateX(4px);
}


/* ======================================================
   24. PATH LIBRARY STRUCTURE
====================================================== */

.path-overview {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.overview-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border-left: 4px solid #d8a51f;
}

.overview-card span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
}

.overview-card h3 {
  margin-bottom: 14px;
}

.resource-section {
  padding: 20px 0 70px;
}

.resource-section h2 {
  margin-bottom: 28px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resource-card {
  display: block;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  text-decoration: none;
  color: var(--charcoal);
  transition: transform 0.22s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
}

.resource-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--olive);
  margin-bottom: 12px;
}



.path-back {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 50px;
  text-align: center;
}

/* ======================================================
   25. GUIDE / REVIEW / DOWNLOAD ARTICLE TEMPLATES
====================================================== */

.guide-article-page,
.review-article-page,
.download-article-page {
  background: var(--sand);
}

.content-header {
  position: relative;
  top: auto;
  padding: 120px 24px 54px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 163, 33, 0.14), transparent 30%),
    linear-gradient(145deg, #fff9ed 0%, #f3eadb 100%);
}

.content-header h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

.content-body {
  padding: 70px 24px 90px;
}

.content-body p,
.content-body li {
  font-size: 1.12rem;
  line-height: 1.9;
  color: rgba(44, 41, 37, 0.78);
}

.content-body h2 {
  margin: 48px 0 18px;
  font-size: 2rem;
}

.content-body ul,
.content-body ol {
  margin: 0 0 32px 22px;
}

.content-body li {
  margin-bottom: 12px;
}

.content-article .article-note {
  margin: 54px 0;
}


.affiliate-note {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(214, 163, 33, 0.08);
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-table {
  margin: 28px 0;
  display: grid;
  gap: 8px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 2fr;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.74);
}

.comparison-head {
  font-weight: 700;
  background: rgba(109,119,67,0.12);
}

.download-box {
  margin: 0 0 58px;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 163, 33, 0.16), transparent 32%),
    rgba(255,255,255,0.78);
  box-shadow: 0 24px 60px rgba(44, 41, 37, 0.08);
}

.download-box h2 {
  margin-top: 0;
}

.download-box .button {
  margin-top: 24px;
}

.download-note {
  margin-top: 18px;
  font-size: 0.92rem !important;
  color: rgba(44, 41, 37, 0.58) !important;
}

.article-closing {
  margin-top: 32px;
  font-style: italic;
  color: rgba(44, 41, 37, 0.72);
  line-height: 1.7;
}

.article-closing strong {
  font-weight: 600;
  color: rgba(44, 41, 37, 0.92);
}

.article-navigation {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 41, 37, 0.08);
}

.article-navigation .button {
  min-width: auto;
  padding: 12px 18px;
  font-size: 0.78rem;
}

/* ======================================================
   26. RESPONSIVE — ECOSYSTEM PAGES
   Journal / Guides / Shop / Path Hubs / Articles
====================================================== */

/* Consistent side breathing for inner-page hero containers */
.journal-hero .container.narrow,
.guides-hero .container.narrow,
.path-hero .container.narrow,
.content-header .container.narrow,
.article-header .container.narrow {
  width: min(760px, calc(100% - 48px));
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.shop-coming .container.narrow {
  width: min(860px, calc(100% - 48px));
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .path-overview,
  .resource-grid,
  .path-sections {
    grid-template-columns: 1fr;
  }

  .article-hero-image img {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .journal-hero,
  .guides-hero,
  .path-hero,
  .content-header,
  .article-header {
    padding-top: 86px;
    padding-bottom: 52px;
  }

  .journal-hero .container.narrow,
  .guides-hero .container.narrow,
  .path-hero .container.narrow,
  .content-header .container.narrow,
  .article-header .container.narrow,
  .shop-coming .container.narrow {
    width: min(100%, calc(100% - 48px));
  }

  .journal-hero h1,
  .guides-hero h1,
  .path-hero h1,
  .shop-coming h1,
  .content-header h1,
  .article-header h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 13vw, 3.8rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
  }

  .journal-hero .lead,
  .guides-hero .lead,
  .path-hero .lead,
  .shop-coming .lead,
  .content-header .article-intro,
  .article-header .article-intro {
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .journal-grid {
    grid-template-columns: 1fr;
  }

  .journal-card-image {
    height: 220px;
  }

  .shop-coming .container.narrow {
    padding: 52px 28px;
    border-radius: 28px;
  }

  .path-overview {
    width: min(100% - 40px, 1100px);
  }

  .resource-section {
    padding: 14px 0 56px;
  }

  .content-body {
    padding: 48px 20px 70px;
  }

  .content-body p,
  .content-body li {
    font-size: 1.04rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .article-hero-image {
    border-radius: 26px;
    margin-bottom: 44px;
  }

  .article-hero-image img {
    height: 300px;
  }

  .article-nav-inner,
  .article-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .journal-hero .container.narrow,
  .guides-hero .container.narrow,
  .path-hero .container.narrow,
  .content-header .container.narrow,
  .article-header .container.narrow,
  .shop-coming .container.narrow {
    width: min(100%, calc(100% - 40px));
  }
}

/* ======================================================
   COOKIE BANNER
====================================================== */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid rgba(44, 41, 37, 0.10);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 24px 70px rgba(44, 41, 37, 0.16);
  backdrop-filter: blur(14px);
}

.cookie-banner-text {
  max-width: 680px;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.cookie-banner-text p {
  margin-bottom: 6px;
  color: rgba(44, 41, 37, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cookie-banner-text a {
  color: var(--olive);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

@media (max-width: 700px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-actions .button {
    justify-content: center;
    width: 100%;
  }
}

.journal-link.disabled {
    color: #8c8c8c;
    font-style: italic;
    cursor: default;
    pointer-events: none;
}
