:root {
  /* Warm tropical editorial palette */
  --color-primary: #1a1410;
  --color-secondary: #c0622a;        /* warm terracotta */
  --color-accent: #2d7d6f;           /* sea green */
  --color-accent-dim: #235f55;
  --color-surface: #f6f2ec;
  --color-surface-container: #ede8df;
  --color-on-surface: #1a1917;
  --color-on-surface-muted: #6b6460;
  --color-outline: #d8d0c6;
  --color-bg: #f6f2ec;
  --color-card: #fffdf9;
  --color-nav-bg: rgba(246, 242, 236, 0.90);
  --color-overlay: rgba(20, 12, 6, 0.78);
  --shadow-soft: 0 20px 40px rgba(40,20,10,0.07);
  --shadow-hover: 0 28px 56px rgba(40,20,10,0.14);
  --radius: 8px;
  --radius-lg: 14px;
  --max-w: 960px;
  --font-headline: 'Noto Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-label: 'Space Grotesk', monospace;
}

[data-theme="dark"] {
  --color-primary: #e2d8cc;
  --color-secondary: #e8956a;
  --color-accent: #e87cf8;
  --color-surface: #0f1419;
  --color-surface-container: #1a1f2e;
  --color-on-surface: #e6e8ea;
  --color-on-surface-muted: #9ca3af;
  --color-outline: #3a3f4b;
  --color-bg: #111318;
  --color-card: rgba(15, 23, 42, 0.7);
  --color-nav-bg: rgba(15, 20, 30, 0.8);
  --color-overlay: rgba(0, 0, 0, 0.85);
  --shadow-soft: 0 20px 40px rgba(0,0,0,0.3);
  --shadow-hover: 0 24px 48px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-on-surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background 0.4s ease, color 0.3s ease;
}

a { color: var(--color-secondary); text-decoration: none; transition: color 0.2s, opacity 0.2s; }
a:hover { opacity: 0.8; }
img { display: block; max-width: 100%; height: auto; }

/* === NAV (Glassmorphism) === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-outline);
  transition: background 0.5s ease;
}
.site-nav__brand {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-on-surface);
  letter-spacing: -0.02em;
}
.site-nav__links { display: flex; align-items: center; gap: 1.5rem; }
.site-nav__links a {
  font-family: var(--font-label);
  color: var(--color-on-surface-muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-nav__links a:hover { color: var(--color-on-surface); }

/* Theme toggle */
.theme-toggle {
  background: none;
  border: 1px solid var(--color-outline);
  border-radius: 20px;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--color-on-surface-muted);
  transition: all 0.2s;
}
.theme-toggle:hover { border-color: var(--color-secondary); color: var(--color-secondary); }

/* === HOME === */
.home { max-width: 1200px; margin: 0 auto; padding: 0 2rem 6rem; }
.home__hero {
  padding: 8rem 0 5rem;
  text-align: center;
}
.home__hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--color-on-surface);
  margin-bottom: 0.75rem;
}
.home__tagline {
  color: var(--color-on-surface-muted);
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
}
.home__trips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 1.5rem;
}
.trip-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trip-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
@media (max-width: 640px) {
  .trip-card--featured { aspect-ratio: 4/3; }
}
.trip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.trip-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s ease;
}
.trip-card:hover img { transform: scale(1.03); }
.trip-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 30%, rgba(15,8,3,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  gap: 0.4rem;
}
.trip-card__meta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.2rem;
}
.trip-card__date, .trip-card__count {
  font-family: var(--font-label);
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trip-card__count::before { content: '·'; margin: 0 0.5rem; opacity: 0.5; }
.trip-card__overlay h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.trip-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.55;
  margin-top: 0.25rem;
}

/* === LIST / TRIP TIMELINE === */
.list-page { max-width: 960px; margin: 0 auto; padding: 0 2rem 4rem; }

/* Hero banner (when cover photo available) */
.list-hero {
  position: relative;
  margin: 0 -2rem 3rem;
  max-width: calc(100% + 4rem);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/8;
}
@media (max-width: 640px) { .list-hero { aspect-ratio: 4/3; margin: 0 -1rem 2rem; } }
.list-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.list-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  background: linear-gradient(to top, rgba(15,8,3,0.85) 0%, transparent 55%);
}
.list-hero__overlay h1 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}
.list-hero__overlay p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-top: 0.4rem;
  max-width: 560px;
}

/* Fallback plain header */
.list-header { margin-bottom: 3rem; padding-top: 2.5rem; }
.list-header h1 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-on-surface);
}
.list-desc { color: var(--color-on-surface-muted); margin-top: 0.5rem; }

/* Timeline layout — stacked day cards */
.trip-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Day card — mosaic + info side by side */
.day-card__link {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-outline);
  transition: transform 0.2s, box-shadow 0.2s;
}
.day-card__link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Mosaic grid — up to 4 images */
.day-card__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 220px;
}
.mosaic-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mosaic-thumb--1 {
  grid-column: 1;
  grid-row: 1 / 3;
}
.mosaic-thumb--2 { grid-column: 2; grid-row: 1; }
.mosaic-thumb--3 { grid-column: 2; grid-row: 2; }
.mosaic-thumb--4 { display: none; }
/* If only 2 images, let the 2nd span both rows */
.mosaic-thumb--2:last-child { grid-row: 1 / 3; }

/* Info section */
.day-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem 1.5rem;
  justify-content: center;
}
.day-card__badge {
  display: inline-flex;
  width: fit-content;
  font-family: var(--font-label);
  font-size: 0.62rem;
  color: var(--color-secondary);
  background: transparent;
  border: 1.5px solid var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.2em 0.65em;
  border-radius: 20px;
  margin-bottom: 0.15rem;
}
.day-card__title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-on-surface);
  margin: 0;
}
.day-card__summary {
  font-size: 0.9rem;
  color: var(--color-on-surface-muted);
  line-height: 1.5;
  margin: 0;
}
.day-card__date {
  font-family: var(--font-label);
  font-size: 0.75rem;
  color: var(--color-on-surface-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Alternate: even cards flip mosaic to right */
.day-card:nth-child(even) .day-card__link {
  grid-template-columns: 1fr 1.1fr;
  direction: rtl;
}
.day-card:nth-child(even) .day-card__link > * {
  direction: ltr;
}

@media (max-width: 640px) {
  .day-card__link {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .day-card__mosaic { aspect-ratio: 16/9; min-height: unset; }
  .day-card__info { padding: 1.25rem; }
}

/* === SINGLE POST === */
.post { max-width: var(--max-w); margin: 0 auto; padding: 2rem; }
.post__header { padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--color-outline); margin-bottom: 3rem; }
.post__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.post__series-badge {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--color-secondary);
  padding: 0.22em 0.75em;
  border-radius: 20px;
}
.post__meta time {
  font-family: var(--font-label);
  font-size: 0.72rem;
  color: var(--color-on-surface-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.post__header h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--color-on-surface);
  line-height: 1.15;
}
.post__header h1::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  margin-top: 1rem;
  opacity: 0.85;
}
.post__summary {
  color: var(--color-on-surface-muted);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  margin-top: 1.25rem;
}

.post__content h2 {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 400;
  margin: 3.5rem 0 1rem;
  color: var(--color-on-surface);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-outline);
}
.post__content h3 {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 2.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-on-surface-muted);
}
.post__content p { margin-bottom: 1.4rem; font-size: 1.05rem; line-height: 1.8; }
.post__content strong { font-weight: 600; color: var(--color-on-surface); }
.post__content em { color: var(--color-secondary); font-style: italic; }
.post__content ul, .post__content ol { margin: 0 0 1.5rem 1.5rem; }
.post__content li { margin-bottom: 0.5rem; line-height: 1.6; }
.post__content hr { border: none; border-top: 1px solid var(--color-outline); margin: 3.5rem 0; }
.post__content blockquote {
  border-left: 3px solid var(--color-secondary);
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  margin: 2.5rem 0;
  color: var(--color-on-surface);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.75;
  background: rgba(192, 98, 42, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* === GALLERY (Masonry-inspired) === */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px;
  margin: 2.5rem 0;
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
.gallery__item {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover::after { opacity: 1; }

/* Hero first image */
.gallery__item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-overlay);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}
.lightbox__stage {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__stage img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem;
  cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
}
.lightbox__prev:hover, .lightbox__next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }
.lightbox__counter {
  position: absolute; bottom: 4.5rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.lightbox__caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1rem 2.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  font-style: italic;
  line-height: 1.5;
  min-height: 3.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* === POST NAV === */
.post__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-outline);
  gap: 1rem;
}
.post__nav-link {
  font-family: var(--font-label);
  font-size: 0.82rem;
  color: var(--color-on-surface-muted);
  background: var(--color-card);
  border: 1px solid var(--color-outline);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  max-width: 50%;
}
.post__nav-link:hover {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
  background: var(--color-surface);
}

/* === INLINE FIGURES — editorial full-width === */
.post figure {
  margin: 2rem 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  display: block;
  clear: both;
}
.post figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}
.post figure figcaption {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-on-surface-muted);
  font-style: italic;
  text-align: center;
  padding: 0 1rem;
}

/* === PANORAMA — Photo Sphere Viewer === */
.panorama-viewer {
  width: 100%;
  height: 450px;
  margin: 2rem 0 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg, #1a1a2e);
}
.panorama-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 2rem;
  font-style: italic;
}
@media (max-width: 767px) {
  .panorama-viewer {
    height: 300px;
    margin: 1.5rem -1rem 0.5rem;
    border-radius: var(--radius-md);
  }
}

/* Legacy horizontal scroll fallback (kept for non-JS) */
.post figure.pano,
.post figure img[src*=".pano."] {
  aspect-ratio: unset !important;
}
.post figure:has(img[src*=".pano."]) {
  display: block !important;
  margin: 3rem -4rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  border-radius: var(--radius-lg);
}
.post figure:has(img[src*=".pano."]) img {
  width: auto;
  max-width: none;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  aspect-ratio: unset;
}
@media (max-width: 767px) {
  .post figure:has(img[src*=".pano."]) {
    margin: 2rem -1rem;
  }
  .post figure:has(img[src*=".pano."]) img {
    height: 250px;
  }
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .site-nav { padding: 0.75rem 1rem; }
  .home__hero { padding: 5rem 0 3rem; }
  .home__trips { grid-template-columns: 1fr; }
  .trip-timeline { gap: 1.5rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery__item:first-child { aspect-ratio: 16/9; }
  .post { padding: 1rem; }
  .post__header { padding: 2.5rem 0 1.5rem; }
  .lightbox__prev, .lightbox__next { width: 40px; height: 40px; font-size: 1.2rem; }
}

/* === MINI GALLERY === */
.mini-gallery {
  margin: 2.5rem 0;
  clear: both;
}
.mini-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 600px) {
  .mini-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Single-item mini-gallery: full width */
.mini-gallery__grid:has(figure:only-child) {
  grid-template-columns: 1fr;
}
.mini-gallery__grid:has(figure:only-child) figure img {
  aspect-ratio: 16/9;
}
/* Two-item: side by side 50/50 */
.mini-gallery__grid:has(figure:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
/* Target figure elements rendered by Hugo shortcode */
.mini-gallery__grid figure {
  margin: 0;
  overflow: hidden;
  float: none !important;
  width: 100% !important;
  border-radius: 0;
  cursor: pointer;
}
.mini-gallery__grid figure img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.mini-gallery__grid figure:hover img {
  transform: scale(1.03);
}

/* Standalone post figures are also clickable */
.post__content figure {
  cursor: pointer;
}
.mini-gallery__grid figure figcaption {
  padding: 0.4rem 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-body);
  color: var(--color-on-surface-muted);
  background: var(--color-surface-container);
}
.mini-gallery__caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-on-surface-muted);
  text-align: center;
}

/* === VIDEO FIGURE === */
.video-figure {
  margin: 2.5rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-figure video {
  width: auto;
  max-width: 100%;
  max-height: 80vh;      /* keep tall phone clips from swallowing the page */
  display: block;
}
.video-figure figcaption {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--color-on-surface-muted);
  background: var(--color-surface-container);
}

/* === FULL-BLEED PANORAMAS === */
@media (min-width: 768px) {
  .post figure:has(img[src*=".pano."]) {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    border-radius: 0;
  }
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 3rem 1rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--color-outline);
  color: var(--color-on-surface-muted);
  font-size: 0.85rem;
}
.site-footer a {
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: opacity 0.2s;
}
.site-footer a:hover {
  opacity: 0.8;
}
.site-footer p {
  margin: 0;
}
.site-footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-footer__links a {
  margin-bottom: 0;
  color: var(--color-on-surface-muted);
}
.site-footer__links a:hover {
  color: var(--color-accent);
}

/* Call-to-action button (Travel With Me, etc.) */
.cta-button {
  display: inline-block;
  margin: 0.5rem 0 1rem;
  padding: 0.85rem 1.6rem;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.cta-button:hover {
  background: var(--color-accent-dim);
  transform: translateY(-1px);
}
[data-theme="dark"] .cta-button { color: #12131a; }
