/* Celovia — global styles */

:root {
  --radius: 0px;
  --radius-card: 4px;
  --density: 1;
  --img-filter: none;

  --bg: #fafaf8;
  --bg-paper: #ffffff;
  --bg-deep: #eef0eb;
  --ink: #1b4f72;
  --ink-soft: #4a6a8a;
  --ink-faint: #7a8b9e;
  --rule: #d8dde2;
  --primary: #097c87;
  --primary-deep: #065a63;
  --accent: #ff7f73;
  --accent-soft: #ffb1a8;
  --supporting: #9fc3b3;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
  padding: 12px 18px;
  background: var(--primary);
  color: var(--bg-paper);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  overflow: visible;
}

.btn:focus-visible,
.nav-link:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Typography ───────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.02;
  font-feature-settings: "ss01", "liga";
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lede {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  text-wrap: pretty;
}
.about-page h1,
.about-page h2,
.about-page h3,
.about-page .sec-head-title,
.about-page .about-section-title,
.about-page .about-subtitle {
  font-family: var(--font-display);
}
.about-page .about-copy p,
.about-page .about-intro,
.about-page .sec-head-kicker {
  font-family: var(--font-body);
}
.about-copy p {
  margin-top: 1.15em;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
}
.about-copy p:first-child {
  margin-top: 0;
}
.about-section {
  padding-block: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--rule);
}
.about-page .about-hero {
  border-top: none;
}
.about-hero-title {
  margin-top: 14px;
}
.about-hero-lede {
  max-width: 42rem;
  margin-top: 22px;
}
.about-section-title,
.about-page .about-subtitle {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 20px;
  color: var(--ink);
}
.about-intro {
  max-width: 42rem;
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
}
.about-story-block {
  max-width: 38rem;
}
.about-copy--lead {
  max-width: 42rem;
}
.about-copy--lead p:first-child {
  font-size: clamp(17px, 1.45vw, 19px);
  color: var(--ink);
}
.about-section--travel {
  padding-bottom: 0;
  border-top: none;
}
.about-section--travel > .container {
  padding-bottom: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--rule);
  padding-top: clamp(40px, 5vw, 72px);
}
.about-section--cta {
  text-align: center;
}
.about-section--cta .about-section-title,
.about-section--cta .about-copy {
  margin-left: auto;
  margin-right: auto;
}
.about-section--cta .about-copy {
  max-width: 42rem;
  text-align: left;
}
.about-cta {
  margin-top: clamp(28px, 4vw, 40px);
}
.serif-italic { font-family: var(--font-display); font-style: italic; }

/* ── Layout ───────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-block: calc(clamp(60px, 9vw, 130px) * var(--density)); }
.section-tight { padding-block: calc(clamp(40px, 6vw, 80px) * var(--density)); }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fbf6ea; }
.btn-primary:hover { background: var(--primary-deep); }
.btn-accent { background: var(--accent); color: #fbf6ea; }
.btn-accent:hover { background: color-mix(in oklab, var(--accent) 88%, #000); }
.btn-hero {
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}
.btn-hero:hover { box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg-paper); }
.btn-light { background: var(--bg-paper); color: var(--ink); }

/* ── Nav ───────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  --nav-bar-height: 92px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--rule);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
  position: relative;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
.nav-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--primary); color: var(--bg-paper);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px; line-height: 1;
  padding-bottom: 3px;
}
.nav-logo {
  display: block;
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .nav-wrap { --nav-bar-height: 80px; }
  .nav-logo {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}
.nav-brand-name {
  font-family: var(--font-display); font-size: 26px; line-height: 1;
}
.nav-wrap .nav-brand-name {
  font-size: 32px;
}
.nav-brand-tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px;
}
.nav-brand-by {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
  margin-left: 4px;
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-link {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-link:hover { background: rgba(0,0,0,0.05); }
.nav-link.is-active { background: var(--ink); color: var(--bg-paper); }
.nav-cta { margin-left: 12px; }
.nav-cta.is-active {
  background: var(--ink);
  color: var(--bg-paper);
}
.nav-cta.is-active:hover {
  background: var(--ink);
  color: var(--bg-paper);
}

.nav-panel { display: block; flex-shrink: 0; }

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-paper);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  transition: background .15s, border-color .15s;
}
.nav-toggle:hover { background: var(--bg-deep); }
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-open .nav-toggle-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: var(--nav-bar-height) 0 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(27, 79, 114, 0.28);
  cursor: pointer;
  z-index: 48;
}
.nav-backdrop.is-visible { display: block; }

.nav-wrap.is-mobile-nav .nav-brand {
  flex: 1;
  min-width: 0;
}
.nav-wrap.is-mobile-nav .nav-brand-tag {
  display: none;
}
.nav-wrap.is-mobile-nav .nav-panel {
  display: none;
  position: fixed;
  top: var(--nav-bar-height);
  left: 0;
  right: 0;
  z-index: 49;
  padding: 16px var(--gutter) 28px;
  background: var(--bg-paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  max-height: calc(100dvh - var(--nav-bar-height));
  overflow-y: auto;
}
.nav-wrap.is-mobile-nav .nav-panel.is-open {
  display: block;
}
.nav-wrap.is-mobile-nav .nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
}
.nav-wrap.is-mobile-nav .nav-links .nav-link {
  font-size: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-card);
}
.nav-wrap.is-mobile-nav .nav-cta {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  justify-content: center;
  padding-block: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bars span {
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
  .hero-video {
    display: none;
  }
  .collage-item:hover > div:first-child,
  .post-card:hover > div:first-child {
    transform: none;
  }
}

/* ── Hero ───────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(560px, 78vh, 760px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
  filter: var(--img-filter);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--img-filter);
  background-color: transparent;
  transition: opacity .32s ease;
}
.hero-shade {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg,
    rgba(10, 50, 60, 0.32) 0%,
    rgba(10, 50, 60, 0.39) 30%,
    rgba(10, 50, 60, 0.45) 72%,
    rgba(10, 50, 60, 0.49) 100%
  );
  z-index: -1;
  pointer-events: none;
}
.hero-light .hero-shade { background: linear-gradient(180deg, rgba(10, 50, 60, 0.18) 0%, rgba(10, 50, 60, 0.20) 40%, rgba(10, 50, 60, 0.28) 78%, rgba(10, 50, 60, 0.32) 100%); }
.hero-heavy .hero-shade { background: linear-gradient(180deg, rgba(10, 50, 60, 0.35) 0%, rgba(10, 50, 60, 0.42) 30%, rgba(10, 50, 60, 0.48) 65%, rgba(10, 50, 60, 0.52) 100%); }
.hero-inner {
  width: 100%;
  padding-block: clamp(40px, 6vw, 80px);
  color: var(--ink);
  position: relative;
  z-index: 1;
}
.hero-copy {
  position: relative;
  max-width: 720px;
  padding: clamp(22px, 3.6vw, 40px);
  color: rgba(251,246,234,0.98);
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-note {
  margin-top: 14px;
  max-width: 580px;
  color: rgba(251,246,234,0.9);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.6;
}
.hero-copy .hero-title { color: rgba(251,246,234,0.98); }
.hero-copy .hero-eyebrow { color: rgba(251,246,234,0.85); }
.hero-copy .hero-sub { color: rgba(251,246,234,0.88); }

@media (max-width: 780px) {
  .hero-copy { padding: clamp(14px, 4vw, 20px); border-radius: 12px; }
}
.hero-eyebrow { color: var(--ink-soft); }
.hero-title {
  font-size: clamp(56px, 10vw, 142px);
  margin: 14px 0 0;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  margin-top: clamp(18px, 2.4vw, 28px);
  max-width: 560px;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(251,246,234,0.94);
  text-wrap: balance;
}
.hero-copy .hero-lede { color: rgba(251,246,234,0.94); }
.hero-split-lede {
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-sub {
  margin-top: 22px;
  max-width: 580px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.55;
}
.hero-actions { margin-top: clamp(28px, 3.6vw, 38px); display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn-hero { min-width: min(100%, 220px); justify-content: center; }
@media (max-width: 520px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
.hero-meta {
  position: absolute; top: 0; right: 0;
  padding: 18px var(--gutter);
  display: flex; gap: 16px; align-items: center;
  color: var(--ink-soft);
  background: rgba(250,250,248,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom-left-radius: 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap;
}
.hero-meta span { white-space: nowrap; }

/* Split hero variant */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: clamp(540px, 70vh, 720px);
  background: var(--bg);
  isolation: isolate;
}
.hero-split-text {
  padding: clamp(40px, 6vw, 90px) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-split-title {
  font-size: clamp(48px, 7vw, 108px);
  margin: 14px 0 0;
  color: var(--ink);
}
.hero-split-title em { font-style: italic; color: var(--primary); }
.hero-split-sub {
  margin-top: 22px;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 18px);
}
.hero-split-img {
  background-size: cover; background-position: center;
  min-height: 360px;
}
@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; }
}

/* ── Marquee ──────────────────────── */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--rule);
  background: var(--bg-paper);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-row {
  display: flex; align-items: center; gap: 28px;
  padding: 18px 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  white-space: nowrap;
  font-style: italic;
  color: var(--ink);
}
.marquee-item { display: inline-flex; align-items: center; gap: 28px; }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Trust strip ──────────────────────── */
.trust-strip {
  border-bottom: 1px solid var(--rule);
  background: var(--bg-paper);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  padding-block: clamp(22px, 3vw, 32px);
}
.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-strip-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--primary);
}
@media (max-width: 900px) {
  .trust-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .trust-strip-inner { grid-template-columns: 1fr; gap: 14px; }
}

/* ── Consultation touch ───────────────── */
.consultation-touch {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
  margin-top: clamp(32px, 4vw, 48px);
  padding: clamp(20px, 3vw, 28px) clamp(22px, 3.2vw, 32px);
  background: var(--bg-deep);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
}
.consultation-touch-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  flex-shrink: 0;
  border: 3px solid var(--bg-paper);
  box-shadow: 0 4px 16px rgba(27, 79, 114, 0.12);
}
.consultation-touch-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  min-width: 0;
}
.consultation-touch-lede {
  margin: 0;
  flex: 1 1 240px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.consultation-touch-lede strong {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 600px) {
  .consultation-touch { align-items: flex-start; }
  .consultation-touch-copy { flex-direction: column; align-items: flex-start; }
}

/* ── Placeholder image ──────────────────────── */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(14, 72, 86, 0.08) 0,
      rgba(14, 72, 86, 0.08) 1px,
      transparent 1px,
      transparent 14px
    ),
    var(--bg-deep);
  display: grid; place-items: center;
  color: var(--ink-soft);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 0;
}
.ph::after {
  content: attr(data-label);
  padding: 6px 10px;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
}

/* ── Reusable section header ──────────── */
.sec-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.4fr); gap: clamp(20px, 4vw, 80px); align-items: end; }
.sec-head-title {
  font-size: clamp(40px, 5.4vw, 76px);
  margin: 12px 0 0;
}
.sec-head-title em { font-style: italic; color: var(--primary); }
.sec-head-kicker { color: var(--ink-soft); max-width: 460px; }
@media (max-width: 780px) { .sec-head { grid-template-columns: 1fr; } }

/* ── About row (portrait + bio) ─────── */
.about-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.about-row--origin {
  margin-top: 4px;
}
.about-row--feature {
  align-items: start;
}
.about-feature-img {
  max-width: 480px;
  margin: 0;
  padding: 8px 8px 28px;
  background: #fff;
  border: 4px solid #fff;
  box-shadow:
    0 2px 8px rgba(27, 79, 114, 0.08),
    0 20px 48px rgba(27, 79, 114, 0.12);
  transform: rotate(1.5deg);
}
.about-feature-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-portrait {
  margin: 0;
  width: min(100%, 340px);
  max-width: 340px;
  align-self: start;
  justify-self: start;
  padding: 8px 8px 28px;
  background: #fff;
  border: 4px solid #fff;
  box-shadow:
    0 2px 8px rgba(27, 79, 114, 0.08),
    0 20px 48px rgba(27, 79, 114, 0.12);
  transform: rotate(-2deg);
  overflow: hidden;
}
.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}

/* Homepage intro portrait — explicit sizing so the frame never collapses */
.home-portrait {
  margin: 0;
  flex: 0 0 auto;
  width: 340px;
  max-width: 100%;
  padding: 8px 8px 28px;
  background: #fff;
  border: 4px solid #fff;
  box-shadow:
    0 2px 8px rgba(27, 79, 114, 0.08),
    0 20px 48px rgba(27, 79, 114, 0.12);
  transform: rotate(-2deg);
}
.home-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
}
.about-meta {
  margin-top: 28px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 8px 24px;
  font-size: 14px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.about-meta dt { color: var(--ink-soft); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding-top: 4px; }
@media (max-width: 880px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 40px);
  }
  .about-portrait {
    max-width: 300px;
    width: min(100%, 300px);
    margin: 0 auto;
    justify-self: center;
    transform: rotate(-1deg);
  }
  .home-portrait {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    transform: rotate(-1deg);
  }
  .about-feature-img {
    max-width: 100%;
    margin: 0 auto;
    transform: none;
  }
  .about-row--feature .about-copy {
    order: 1;
  }
  .about-row--feature .about-feature-img {
    order: 2;
  }
}

/* ── About travel quote ─────────────── */
.about-collage-wrap {
  padding-block: clamp(40px, 6vw, 64px) clamp(56px, 7vw, 96px);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(159, 195, 179, 0.07) 42%, var(--bg) 100%);
}
.about-collage-label {
  margin: 0 0 clamp(28px, 4vw, 36px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
}
.about-collage-wrap-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-collage-quote {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 34rem;
  background: none;
  border: none;
  box-shadow: none;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 42px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  text-wrap: pretty;
}
.about-travel-carousel-wrap {
  position: relative;
  margin-top: clamp(32px, 5vw, 48px);
}
.about-travel-carousel {
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.about-travel-carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(27, 79, 114, 0.1);
  border-radius: 50%;
  background: var(--bg-paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  box-shadow:
    0 2px 8px rgba(27, 79, 114, 0.08),
    0 8px 20px rgba(27, 79, 114, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.about-travel-carousel-btn:hover {
  background: var(--bg);
  box-shadow:
    0 4px 12px rgba(27, 79, 114, 0.1),
    0 12px 28px rgba(27, 79, 114, 0.12);
}
.about-travel-carousel-btn--prev {
  left: 4px;
}
.about-travel-carousel-btn--next {
  right: 4px;
}
@media (min-width: 901px) {
  .about-travel-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.about-travel-carousel:active {
  cursor: grabbing;
}
.about-travel-carousel:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}
.about-travel-carousel::-webkit-scrollbar {
  display: none;
}
.about-travel-carousel-track {
  display: flex;
  gap: clamp(16px, 2.5vw, 24px);
  width: max-content;
  margin: 0;
  padding: 8px 0 16px;
  list-style: none;
}
.about-travel-carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(240px, 72vw, 300px);
}
.about-travel-carousel-item--landscape {
  width: clamp(300px, 85vw, 440px);
}
.about-travel-carousel-frame {
  margin: 0;
  background: var(--bg-paper);
  border: 1px solid rgba(27, 79, 114, 0.08);
  border-radius: var(--radius-card);
  padding: 8px;
  box-shadow:
    0 2px 8px rgba(27, 79, 114, 0.06),
    0 12px 28px rgba(27, 79, 114, 0.08);
}
.about-travel-carousel-frame img {
  display: block;
  width: 100%;
  height: clamp(280px, 42vw, 360px);
  object-fit: cover;
  border-radius: calc(var(--radius-card) - 1px);
}
.about-travel-carousel-item--landscape .about-travel-carousel-frame img {
  height: auto;
  aspect-ratio: 16 / 9;
}
.about-collage-figure {
  margin: clamp(32px, 5vw, 48px) auto 0;
  max-width: 780px;
  padding: 0;
}
.about-collage-svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.about-collage-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-card);
  filter: drop-shadow(0 2px 8px rgba(27, 79, 114, 0.08))
    drop-shadow(0 16px 40px rgba(27, 79, 114, 0.10));
}

@media (max-width: 900px) {
  .about-collage-quote {
    font-size: clamp(24px, 5.5vw, 32px);
    padding-inline: 8px;
  }
  .about-travel-carousel-wrap {
    margin-top: clamp(28px, 6vw, 40px);
  }
  .about-travel-carousel-item {
    width: clamp(220px, 78vw, 280px);
  }
  .about-travel-carousel-item--landscape {
    width: clamp(280px, 90vw, 360px);
  }
  .about-collage-figure {
    margin-top: clamp(28px, 6vw, 40px);
  }
}

/* ── Steps / services ─────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 56px);
  margin-top: clamp(40px, 6vw, 80px);
}
.step {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px; line-height: 1;
  color: var(--primary);
}
.step-title {
  font-family: var(--font-display);
  font-size: 28px; line-height: 1.1;
  margin: 16px 0 8px;
}
.step-body { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

.belize-trips { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) { .belize-trips { grid-template-columns: 1fr; } }

.belize-regions { grid-template-columns: repeat(5, 1fr); }
.belize-region-title { font-size: 22px; }
@media (max-width: 1100px) { .belize-regions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .belize-regions { grid-template-columns: 1fr; } }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(40px, 6vw, 70px);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.service-card {
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  transition: background .2s ease;
}
.service-card:hover { background: var(--bg-paper); }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 22px;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.service-body { color: var(--ink-soft); font-size: 15px; margin: 0; }
@media (max-width: 880px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.faq-hero { padding-bottom: clamp(18px, 3.2vw, 36px); }
.faq-hero-image { margin-top: 20px; border-radius: 18px; overflow: hidden; box-shadow: 0 22px 48px rgba(0,0,0,0.08); }
.faq-hero-image > div { min-height: 260px; width: 100%; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.faq-card {
  padding: clamp(26px, 3vw, 36px);
  border-radius: 12px;
  background: var(--bg-paper);
  border: 1px solid rgba(16,28,42,0.06);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.faq-card:hover { transform: translateY(-3px); box-shadow: 0 26px 48px rgba(0,0,0,0.08); }
.faq-question {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 12px;
  line-height: 1.08;
  color: var(--ink);
}
.faq-answer {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.before-panel {
  padding: clamp(20px, 3vw, 28px);
  background: var(--bg-deep);
  border-radius: 12px;
  border: 1px solid rgba(16,28,42,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.before-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 10px; }
.before-list li { padding-left: 18px; position: relative; color: var(--ink-soft); line-height: 1.8; }
.before-list li::before { content: '•'; position: absolute; left: 0; top: 0.12em; color: var(--accent); font-size: 18px; }

.faq-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background: var(--bg-deep);
  border-radius: 12px;
  border: 1px solid rgba(16,28,42,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}
.faq-cta-copy { max-width: 720px; }
.faq-cta-panel .btn { min-width: 160px; }

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta-panel { grid-template-columns: 1fr; }
}

.checklist-hero { padding-bottom: clamp(30px, 4vw, 44px); }
.checklist-hero-image {
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.10);
}
.checklist-hero-image > div {
  min-height: 320px;
  width: 100%;
}
.checklist-sections {
  padding-top: 10px;
  padding-bottom: clamp(32px, 5vw, 50px);
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 32px);
}
.checklist-card {
  padding: clamp(32px, 3.5vw, 38px);
  border-radius: 12px;
  background: var(--bg-paper);
  border: 1px solid rgba(16, 28, 42, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.checklist-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.09);
}
.checklist-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 30px);
  margin: 0 0 24px;
  line-height: 1.1;
  color: var(--ink);
}
.checklist-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checklist-card li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.checklist-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.25em;
  color: var(--accent);
  font-size: 14px;
  line-height: 1;
}
.forgotten-section {
  padding-top: 10px;
  padding-bottom: clamp(32px, 4vw, 44px);
}
.forgotten-panel {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 4vw, 38px);
  background: var(--bg-deep);
  border-radius: 16px;
  border: 1px solid rgba(16, 28, 42, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}
.forgotten-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.forgotten-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.forgotten-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}
.checklist-final-cta {
  padding-top: 0;
}
.checklist-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(24px, 3vw, 36px);
  padding: clamp(36px, 4vw, 50px);
  background: var(--bg-deep);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(16, 28, 42, 0.08);
}
.checklist-cta-panel .btn { min-width: 180px; }
.checklist-bottom-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 36px);
  max-width: 720px;
  margin: 0;
  line-height: 1.08;
}
.checklist-bottom-support,
.checklist-bottom-sub {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
  max-width: 700px;
}
@media (max-width: 900px) {
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-cta-panel { grid-template-columns: 1fr; }
}

/* ── Highlights collage ─────────────── */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 18px;
  margin-top: clamp(40px, 6vw, 70px);
}
.collage-item { position: relative; overflow: hidden; border-radius: var(--radius-card); }
.collage-item .ph, .collage-item > div:first-child { width: 100%; height: 100%; background-size: cover; background-position: center; filter: var(--img-filter); transition: transform .4s ease; }
.collage-item:hover > div:first-child { transform: scale(1.04); }
.collage-cap {
  position: absolute; left: 18px; bottom: 14px;
  background: var(--bg-paper);
  padding: 6px 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}
.c-a { grid-column: span 7; grid-row: span 3; }
.c-b { grid-column: span 5; grid-row: span 2; }
.c-c { grid-column: span 5; grid-row: span 2; }
.c-d { grid-column: span 4; grid-row: span 2; }
.c-e { grid-column: span 8; grid-row: span 2; }
@media (max-width: 880px) {
  .collage { grid-template-columns: repeat(6, 1fr); }
  .c-a, .c-b, .c-c, .c-d, .c-e { grid-column: span 6; grid-row: span 2; }
}

/* ── Quote ──────────────────────────────── */
.quote-band {
  background: var(--primary);
  color: var(--bg-paper);
  padding: clamp(44px, 5vw, 72px) 0;
}
.quote-band .container {
  max-width: 980px;
}
.quote-band .quote-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 auto;
  max-width: 68ch;
}
.quote-band .quote-text em { color: var(--accent-soft); font-style: italic; }
.quote-band .quote-text em.quote-accent {
  display: block;
  margin-top: 1em;
  color: var(--accent);
  font-size: 1.05em;
  font-style: italic;
  font-weight: 500;
}
.quote-attr {
  margin: 28px auto 0;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(251,246,234,0.75);
}

/* ── Blog cards ─────────────────────────── */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); margin-top: clamp(40px, 6vw, 70px); }
.post-card { cursor: pointer; display: block; text-decoration: none; color: inherit; }
.post-card .ph, .post-card > div:first-child { aspect-ratio: 4/3; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; filter: var(--img-filter); transition: transform .35s ease; }
.post-card:hover > div:first-child { transform: scale(1.02); }
.post-card:hover .post-title { color: var(--primary); }
.post-meta { display: flex; gap: 14px; margin-top: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.post-title { font-family: var(--font-display); font-size: clamp(24px, 2.3vw, 32px); line-height: 1.12; margin: 8px 0 10px; transition: color .15s; }
.post-excerpt { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 880px) { .posts { grid-template-columns: 1fr; } }

/* ── Final CTA ──────────────────────────── */
.final-cta {
  position: relative;
  padding-block: clamp(80px, 12vw, 160px);
  background: var(--primary-deep);
  color: var(--bg-paper);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: var(--img-filter);
  opacity: 0.35;
  z-index: -1;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,30,38,0.5), rgba(7,30,38,0.75));
  z-index: -1;
}
.final-cta .display { font-size: clamp(48px, 7vw, 108px); }
.final-cta .display em { color: var(--accent-soft); font-style: italic; }
.final-cta-sub { margin: 22px auto 0; max-width: 540px; color: rgba(251,246,234,0.85); }
.final-cta-actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────── */
.footer {
  background: var(--bg-paper);
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 14px;
}
.footer-affiliate {
  background: var(--bg-paper);
  border-block: 1px solid var(--rule);
}
.footer-affiliate-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding-block: 24px;
}
.footer-affiliate-brand {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--primary);
  font-weight: 600;
}
.footer-affiliate-text { color: var(--ink-soft); font-size: 14px; max-width: 720px; }
.footer-affiliate-text strong { color: var(--ink); font-weight: 600; }

.footer-main {
  background: var(--primary-deep);
  color: rgba(251,246,234,0.72);
}
.footer-main .footer-brand .nav-brand-name { color: var(--bg-paper); }
.footer-main .footer-brand .nav-brand-tag { color: rgba(251,246,234,0.6); }
.footer-main a { color: rgba(251,246,234,0.72); }
.footer-main a:hover { color: var(--bg-paper); }
.footer-main h4 { color: var(--bg-paper); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-block: clamp(50px, 7vw, 90px) clamp(28px, 4vw, 44px);
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  padding-block: clamp(28px, 4vw, 44px);
}
.footer-office h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bg-paper); margin: 0 0 14px; font-weight: 600; }
.footer-office p { margin: 0; font-size: 13.5px; line-height: 1.7; color: rgba(251,246,234,0.7); }

.footer-creds {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px);
  align-items: center; justify-content: center;
  padding-block: clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-cred-logo {
  display: inline-flex; align-items: center;
  opacity: 0.7;
  transition: opacity .2s ease;
}
.footer-cred-logo:hover { opacity: 1; }
.footer-cred-logo img {
  height: 36px;
  width: auto;
  max-width: 140px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bg-paper); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { text-decoration: none; }
.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(251,246,234,0.55);
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
}

/* ── Contact ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 90px);
}
.contact-info dl { display: grid; grid-template-columns: auto 1fr; gap: 14px 24px; margin: 28px 0 0; padding-top: 28px; border-top: 1px solid var(--rule); }
.contact-info dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); padding-top: 4px; }
.contact-info dd { margin: 0; }
.contact-chat-card {
  margin-top: 36px;
  padding: 22px;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--bg-paper);
  font-family: var(--font-body); font-size: 15px;
  border-radius: 4px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.field textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } }

/* Turnstile widget */
.turnstile-widget { min-height: 65px; }

/* Form success state */
.form-success {
  padding: 40px 32px;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  text-align: center;
  border-radius: 8px;
}
.form-success .display { font-size: 44px; color: var(--primary); }

.thank-you-next {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.thank-you-next a {
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .15s;
}
.thank-you-next a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Blog index ─────────────────────────── */
.featured-post {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.featured-post .ph, .featured-post > a > div:first-child, .featured-post > div:first-child { aspect-ratio: 5/4; border-radius: var(--radius-card); overflow: hidden; background-size: cover; background-position: center; filter: var(--img-filter); }
.featured-title { font-size: clamp(38px, 4.5vw, 64px); margin: 12px 0 18px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid var(--rule); border-radius: 999px; color: var(--ink-soft);
}
@media (max-width: 880px) { .featured-post { grid-template-columns: 1fr; } }

.blog-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: clamp(40px, 5vw, 60px) 0 32px;
}
.blog-filter button {
  font-family: var(--font-body); font-size: 13px;
  padding: 8px 14px; border-radius: 999px;
  background: transparent; border: 1px solid var(--rule); color: var(--ink); cursor: pointer;
  transition: all .15s;
}
.blog-filter button:hover { border-color: var(--ink); }
.blog-filter button.is-active { background: var(--ink); color: var(--bg-paper); border-color: var(--ink); }

.blog-empty {
  margin: clamp(32px, 4vw, 48px) 0 0;
  padding: 28px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--bg-paper);
}

.blog-more {
  margin-top: clamp(40px, 5vw, 60px);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 40px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--bg-paper);
  text-align: center;
}
.blog-more-text {
  margin: 14px auto 0;
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.blog-more-topics {
  justify-content: center;
  margin-top: 22px;
}

/* ── Blog post ─────────────────────────── */
.post-header { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(28px, 4vw, 56px); }
.post-header .display { font-size: clamp(40px, 5.4vw, 80px); margin: 14px 0 20px; max-width: 18ch; }
.post-cover { aspect-ratio: 21/9; }
.post-body {
  max-width: 680px; margin: 0 auto;
  padding-block: clamp(40px, 6vw, 80px);
  font-size: 18px; line-height: 1.7;
  color: #2a2a26;
}
.post-body h2 { font-family: var(--font-display); font-size: 36px; line-height: 1.15; margin: 48px 0 16px; }
.post-body h3 { font-family: var(--font-display); font-size: 26px; line-height: 1.2; margin: 36px 0 12px; }
.post-body p { margin: 0 0 20px; }
.post-body blockquote {
  margin: 32px 0; padding: 4px 0 4px 24px;
  border-left: 2px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic; font-size: 24px; line-height: 1.4; color: var(--ink);
}
.post-body ul { padding-left: 22px; margin: 0 0 20px; }
.post-body li { margin-bottom: 8px; }
.post-body em { font-style: italic; }
.post-body strong { font-weight: 700; }
.post-tagline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); display: flex; gap: 14px; align-items: center; }
.post-tagline span.dot { width: 4px; height: 4px; background: var(--ink-soft); border-radius: 50%; }

/* ── Legal pages ─────────────────────────── */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ink);
  margin: 48px 0 16px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { margin: 0 0 18px; }
.legal-body ul {
  padding-left: 22px;
  margin: 0 0 20px;
}
.legal-body li { margin-bottom: 10px; }
.legal-body a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body strong { color: var(--ink); font-weight: 600; }

.belize-pricing-note {
  margin: clamp(28px, 4vw, 40px) 0 0;
  max-width: 52ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-style: italic;
}

.form-privacy-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.form-privacy-note a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── About page ─────────────────────────── */
.about-hero {
  padding-block: clamp(56px, 8vw, 120px) clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.about-hero .display { font-size: clamp(56px, 8vw, 120px); }
.about-page .about-hero .display { font-size: clamp(48px, 7vw, 96px); }
.about-hero .display em { font-style: italic; color: var(--primary); }
