/* ============================================================
   Sound Routes — Sim Torino
   styles.css  —  earth / green / warm palette (no blue)
   ============================================================ */

/* --- Colour palette --------------------------------------- */
:root {
  /* Backgrounds */
  --sand:       #FFF6E6;
  --cream:      #F8EEDC;
  --parchment:  #EFE1C6;

  /* Greens */
  --forest:     #1F5D3A;
  --forest-dark:#163D27;
  --palm:       #3F8F5B;
  --leaf:       #7FBF5B;
  --olive:      #6F7F3F;
  --leaf-pale:  #E8F5DC;
  --palm-pale:  #D4EDD9;

  /* Warm */
  --terracotta: #C65A2E;
  --orange:     #E07A2F;
  --yellow:     #F2B84B;
  --yellow-pale:#FDF3D8;
  --clay:       #9E3F2E;

  /* Text */
  --dark:       #23201A;
  --mid:        #5C4A32;
  --light-line: rgba(31, 93, 58, 0.14);

  /* --- Aliases so inline var() references in HTML resolve --- */
  /* Anything previously blue now resolves to forest/palm green */
  --blue:        #1F5D3A;   /* forest green  */
  --blue-mid:    #3F8F5B;   /* palm green    */
  --indigo:      #1F5D3A;   /* forest green  */
  --sky:         #3F8F5B;   /* palm green    */
  --sky-light:   #D4EDD9;   /* pale green    */
  --sea:         #1F5D3A;   /* forest green  */
  --sea-dark:    #163D27;   /* forest dark   */
  /* Sand aliases */
  --sand-mid:    #F8EEDC;   /* = cream       */
  --sand-dark:   #EFE1C6;   /* = parchment   */
  /* Green aliases (kept from old palette) */
  --green:       #3F8F5B;
  --green-pale:  #E8F5DC;
  --green-light: #E8F5DC;
  --green-mid:   #3F8F5B;
  --green-dark:  #1F5D3A;
  --green-vivid: #3F8F5B;

  --font-head: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 3px 18px rgba(35, 32, 26, 0.10);
  --shadow-lg: 0 8px 38px rgba(35, 32, 26, 0.14);
  --max-w:     1160px;
}

/* --- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--dark);
  line-height: 1.72;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY =========================================== */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }
p  { max-width: 68ch; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.8;
  color: var(--mid);
}

/* === LAYOUT =============================================== */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
}
section { padding: 5rem 0; }
section + section { border-top: 1px solid var(--light-line); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

/* === NAV — forest green =================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  box-shadow: 0 2px 14px rgba(22, 61, 39, 0.28);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  line-height: 1;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  display: block;
  color: rgba(255,255,255,0.80);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
  letter-spacing: 0.03em;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--yellow);
  color: var(--dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--forest);
    padding: 1rem 5%;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.65rem 1rem; font-size: 1rem; }
  .site-nav { position: relative; }
}

/* === HERO ================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.52;
  filter: saturate(1.3) brightness(1.05);
}

/* Warm sand gradient — text-side readable, image shows through right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(248, 238, 220, 0.94) 0%,
    rgba(248, 238, 220, 0.78) 38%,
    rgba(248, 238, 220, 0.32) 65%,
    transparent 100%
  );
  z-index: 1;
}

/* Warm yellow-green glow top-right */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 88% 12%, rgba(127,191,91,0.16) 0, transparent 52%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 640px;
}
.hero h1         { color: var(--dark); margin-bottom: 0.85rem; }
.hero h1 em      { color: var(--terracotta); font-style: normal; }
.hero-tagline    { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--forest); font-weight: 600; max-width: 52ch; margin-bottom: 1.2rem; }
.hero-intro      { font-size: 1rem; color: var(--mid); max-width: 58ch; line-height: 1.8; margin-bottom: 2.5rem; }

/* Route dots — terracotta / yellow / green */
.route-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.75rem;
}
.route-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.75;
}
.route-dots span:nth-child(even) { background: var(--palm); }
.route-dots span:nth-child(3n)   { background: var(--yellow); }
.route-dots::after {
  content: '';
  flex: 1;
  max-width: 110px;
  height: 2px;
  background: linear-gradient(90deg, var(--terracotta), transparent);
}

/* === BUTTONS ============================================== */
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.14); }
.btn:active { transform: translateY(0); }
.btn-primary   { background: var(--terracotta); color: #fff; }
.btn-secondary { background: var(--forest);     color: #fff; }
.btn-yellow    { background: var(--yellow);      color: var(--dark); }
.btn-green     { background: var(--palm);        color: #fff; }

/* === COUNTRY PILL STRIP =================================== */
.caption-strip {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.caption-strip .pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  border: 1.5px solid currentColor;
}
.pill-tc  { color: var(--terracotta); }
.pill-bl  { color: var(--palm); }           /* was blue — now palm green */
.pill-gn  { color: var(--olive); }
.pill-yw  { color: #7a5000; background: var(--yellow-pale); border-color: var(--yellow); }

/* === PHOTO GRID =========================================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.photo-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--parchment);
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}
.photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(31,45,22,0.65));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 1.5rem 0.85rem 0.6rem;
}

/* === HOME SECTION CARDS =================================== */
.home-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.home-section-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--terracotta);
}
.home-section-card:nth-child(2) { border-top-color: var(--palm); }
.home-section-card:nth-child(3) { border-top-color: var(--olive); }
.home-section-card h3 { margin-bottom: 0.75rem; color: var(--dark); }
.home-section-card p  { font-size: 0.96rem; color: var(--mid); }

/* Featured CTA card — forest green */
.cta-card {
  background: var(--forest);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(127,191,91,0.14);
}
.cta-card h3 { color: var(--yellow); font-size: 1.6rem; }
.cta-card p  { color: rgba(255,255,255,0.82); max-width: 55ch; }

/* === VIDEO CARDS ========================================== */
.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--parchment);
}
.video-embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--parchment);
}
.video-embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
  color: var(--mid);
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}
.video-placeholder .play-icon {
  width: 58px; height: 58px;
  border: 3px solid rgba(198,90,46,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--terracotta);
  background: rgba(255,255,255,0.65);
}
.video-placeholder p         { color: var(--mid); font-size: 0.88rem; max-width: 28ch; }
.video-placeholder p strong  { color: var(--terracotta); }

.video-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.55rem; }
.video-card-body h3 { font-size: 1.22rem; color: var(--terracotta); }

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}
.video-meta span {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
}
.tag-location { background: var(--palm-pale);  color: var(--forest); }   /* green, not blue */
.tag-year     { background: var(--yellow-pale); color: #7a5000; }
.tag-collab   { background: var(--leaf-pale);   color: var(--olive); }
.video-card-body p { font-size: 0.94rem; color: var(--mid); line-height: 1.75; }

/* === PRACTICE NOTES ======================================= */
.practice-notes {
  background: var(--yellow-pale);
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  border-left: 5px solid var(--terracotta);
}
.practice-notes p { color: var(--mid); margin-bottom: 1rem; }
.practice-notes p:last-child { margin-bottom: 0; }

/* === IMAGE STRIP ========================================== */
.image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.image-strip .photo-card { aspect-ratio: 1/1; }

/* === AUDIO PLACEHOLDER ==================================== */
.audio-placeholder {
  background: var(--leaf-pale);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--forest);
  border: 2px dashed var(--palm);
  margin-top: 1.5rem;
}
.audio-placeholder .audio-icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.5; }

/* === TRAVELS ============================================== */
.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.region-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--parchment);
}
.region-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--parchment);
}
.region-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.region-card:hover .region-card-image img { transform: scale(1.04); }
.region-card-badge {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border-radius: 20px;
}
.region-card-body { padding: 1.5rem; flex: 1; }
.region-card-body h3 { margin-bottom: 0.5rem; color: var(--dark); font-size: 1.3rem; }
.region-card-body p  { font-size: 0.93rem; color: var(--mid); line-height: 1.72; }
.region-card-body .places { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.85rem; }
.region-card-body .place-tag {
  font-size: 0.74rem; font-weight: 700;
  background: var(--palm-pale); color: var(--forest);   /* green, not blue */
  padding: 0.2rem 0.6rem; border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Routes panel — terracotta, not blue */
.routes-panel {
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
}
.routes-panel::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(242,184,75,0.14);
}
.routes-panel h2 { color: var(--yellow); margin-bottom: 1rem; }
.routes-panel p  { color: rgba(255,255,255,0.90); max-width: 60ch; font-size: 1.05rem; }

/* === WRITING ============================================== */
.writing-hero {
  background: var(--cream);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--terracotta);
}
.writing-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.10;
}
.writing-hero h1        { color: var(--terracotta); }
.writing-hero .subtitle { color: var(--forest); font-size: 1.12rem; margin-bottom: 1.5rem; font-style: italic; font-family: var(--font-head); }
.writing-hero .lead     { color: var(--mid); }

.writing-body { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 5rem 0; }
@media (max-width: 820px) { .writing-body { grid-template-columns: 1fr; } }

.writing-text h2 { margin-bottom: 1.25rem; color: var(--dark); }
.writing-text p  { color: var(--mid); margin-bottom: 1.25rem; font-size: 1.01rem; line-height: 1.82; }
.writing-text em { color: var(--terracotta); font-style: italic; }

.writing-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--parchment);
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}
.sidebar-photo img { width: 100%; height: 100%; object-fit: cover; }

.field-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.field-note {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--terracotta);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--parchment);
}
.field-note:nth-child(2) { border-left-color: var(--orange); }
.field-note:nth-child(3) { border-left-color: var(--palm); }
.field-note:nth-child(4) { border-left-color: var(--olive); }
.field-note .note-location {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--terracotta); margin-bottom: 0.5rem;
}
.field-note p { color: var(--mid); font-style: italic; max-width: none; line-height: 1.7; }

/* === ABOUT ================================================ */
.about-hero {
  background: linear-gradient(120deg, var(--yellow-pale) 0%, var(--cream) 100%);
  padding: 5rem 0;
  border-bottom: 4px solid var(--terracotta);
}
.about-hero h1   { color: var(--dark); }
.about-hero .lead { color: var(--mid); margin-top: 0.75rem; }

.about-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 5rem 0;
}
@media (max-width: 820px) { .about-body { grid-template-columns: 1fr; } }
.about-text p { color: var(--mid); margin-bottom: 1.25rem; font-size: 1.01rem; line-height: 1.82; }
.about-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--parchment);
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Contact — forest green, not indigo/blue */
.contact-section {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2.5rem;
}
.contact-section h3 { color: var(--yellow); margin-bottom: 1.25rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-list li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.88); font-size: 0.95rem; }
.contact-list .icon { font-size: 1.1rem; opacity: 0.65; }
.contact-list a { color: var(--yellow); }
.contact-note { font-size: 0.77rem; color: rgba(255,255,255,0.38); margin-top: 1rem; font-style: italic; }

/* === COLOUR BAND — no blue ================================ */
.colour-band {
  height: 6px;
  background: linear-gradient(90deg,
    var(--terracotta) 0%,
    var(--orange)     22%,
    var(--yellow)     42%,
    var(--leaf)       60%,
    var(--palm)       78%,
    var(--forest)    100%
  );
}

/* === PAGE HERO (inner pages) ============================== */
.page-hero {
  background: linear-gradient(110deg, var(--cream) 0%, var(--yellow-pale) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  border-bottom: 4px solid var(--terracotta);
}
.page-hero h1           { color: var(--dark); }
.page-hero .lead        { color: var(--mid); margin-top: 1rem; }
.page-hero .section-label { color: var(--terracotta); }

/* === BACK LINK ============================================ */
.back-links {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--light-line);
}
.back-links a {
  font-size: 0.9rem; font-weight: 700;
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* === FOOTER — forest green ================================ */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.60);
  padding: 3.5rem 0 2rem;
  margin-top: 6rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 580px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand .logo    { font-family: var(--font-head); font-size: 1.5rem; color: var(--yellow); }
.footer-brand .tagline { font-size: 0.85rem; margin-top: 0.3rem; }
.footer-nav { list-style: none; display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.footer-nav a { color: rgba(255,255,255,0.52); font-size: 0.88rem; transition: color 0.15s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem; color: rgba(255,255,255,0.26); text-align: center;
}

/* === INTRO BOX (selected page) ============================ */
.intro-box {
  background: var(--yellow-pale);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  border-left: 5px solid var(--terracotta);
  margin-bottom: 3rem;
}
.intro-box p { color: var(--mid); margin-bottom: 1rem; font-size: 1.02rem; }
.intro-box p:last-child { margin-bottom: 0; }

/* === SECTION DIVIDER ====================================== */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 3.5rem 0 2rem;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--light-line);
}
.divider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

/* === DOTTED ROUTE LINE ==================================== */
.route-line { display: flex; align-items: center; gap: 0; margin: 2rem 0; }
.route-line::before { content: ''; flex: 1; border-top: 2px dashed rgba(198,90,46,0.28); }
.route-line-dot {
  width: 12px; height: 12px;
  background: var(--terracotta);
  border-radius: 50%;
  margin: 0 8px;
  flex-shrink: 0;
}
.route-line-dot:nth-child(even) { background: var(--palm); }
