/* ============================================
   Soul Journey — Brand-aligned styles
   v0.1 · 2026-04-28
   Brand tokens follow docs/brand-profile.soul-journey.md
   ============================================ */

/* -- Design tokens ------------------------------- */
:root {
  /* Color — sky */
  --sj-sky-50: #e9f5f9;
  --sj-sky-100: #e1e6ea;
  --sj-sky-200: #d9e2e8;

  /* Color — sand */
  --sj-sand-50: #f9f4ee;
  --sj-sand-100: #ebe7e4;

  /* Color — paper / surfaces */
  --sj-paper: #f2f1f0;
  --sj-white: #ffffff;

  /* Color — ink (text) */
  --sj-ink: #2c2e30;
  --sj-ink-mute: #787c7f;
  --sj-ink-soft: #9aa1a4;

  /* Color — accent */
  --sj-ember: #c89071;
  --sj-ember-deep: #a87456;
  --sj-ember-soft: #e9cebd;

  /* Type */
  --sj-display: "Cormorant Garamond", Garamond, Georgia, "Times New Roman", serif;
  --sj-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --sj-container: 1200px;
  --sj-container-narrow: 720px;
  --sj-radius-sm: 4px;
  --sj-radius-md: 12px;
  --sj-radius-lg: 24px;

  /* Shadow */
  --sj-shadow-soft: 0 1px 2px rgba(40, 50, 60, 0.04);
  --sj-shadow-lift: 0 8px 24px rgba(40, 50, 60, 0.06);

  /* Motion */
  --sj-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -- Reset --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--sj-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--sj-ink);
  background: var(--sj-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* -- Skip link ----------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 16px; left: 16px;
  width: auto; height: auto;
  padding: 12px 20px;
  background: var(--sj-ink);
  color: var(--sj-white);
  z-index: 1000;
  border-radius: var(--sj-radius-md);
  text-decoration: none;
}

/* -- Container ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--sj-container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--sj-container-narrow); }

/* -- Typography ---------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--sj-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--sj-ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw + 0.6rem, 2.4rem); }
h3 { font-size: clamp(1.35rem, 1.6vw + 0.6rem, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 500; }

p { margin: 0 0 1em; }
strong { font-weight: 500; color: var(--sj-ink); }

.lead {
  font-family: var(--sj-display);
  font-size: clamp(1.3rem, 1.6vw + 0.7rem, 1.7rem);
  line-height: 1.45;
  color: var(--sj-ink);
  margin-bottom: 1.2em;
}

.muted { color: var(--sj-ink-mute); }
.quiet {
  font-family: var(--sj-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sj-ink-mute);
  border-left: 2px solid var(--sj-ember);
  padding-left: 1em;
  margin: 1.5em 0;
}

/* -- Band (decorative full-bleed image) ---------- */
.band {
  width: 100%;
  height: clamp(180px, 28vw, 320px);
  overflow: hidden;
  position: relative;
}
.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.band-detail img { object-position: center 10%; }

/* -- Section ------------------------------------- */
.section {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
}
.section-intro    { background: var(--sj-sand-50); }
.section-journeys { background: var(--sj-paper); }
.section-about    { background: var(--sj-sky-50); }
.section-blog     { background: var(--sj-sand-50); }
.section-contact  { background: var(--sj-paper); }

.section-header { margin-bottom: clamp(40px, 5vw, 72px); }
.section-title { margin-bottom: 0.4em; }
.section-sub {
  font-size: 1.1rem;
  color: var(--sj-ink-mute);
  max-width: 640px;
  margin: 0;
}

/* -- Buttons ------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--sj-radius-md);
  font-family: var(--sj-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 240ms var(--sj-ease);
  background: transparent;
  color: var(--sj-ink);
}
.btn-primary {
  background: var(--sj-ember);
  color: var(--sj-white);
  border-color: var(--sj-ember);
  box-shadow: 0 4px 14px rgba(168, 116, 86, 0.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--sj-ember-deep);
  border-color: var(--sj-ember-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(168, 116, 86, 0.35);
}
.btn-ghost {
  border-color: var(--sj-ink);
  color: var(--sj-ink);
  background: rgba(249, 244, 238, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--sj-white);
  border-color: var(--sj-ink);
  transform: translateY(-1px);
}

/* -- Inline arrow link --------------------------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sj-ember-deep);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 240ms var(--sj-ease);
}
.link-arrow:hover, .link-arrow:focus-visible {
  border-bottom-color: var(--sj-ember-deep);
  gap: 10px;
}

/* -- Site nav ------------------------------------ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 241, 240, 0);
  backdrop-filter: blur(0);
  transition: all 320ms var(--sj-ease);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(242, 241, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--sj-sky-200);
}
.nav-inner {
  max-width: var(--sj-container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sj-ink);
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(40, 50, 60, 0.10));
}
.nav-logo-word {
  font-family: var(--sj-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sj-ink);
}
.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--sj-ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 240ms var(--sj-ease);
}
.nav-menu a:hover, .nav-menu a:focus-visible {
  border-bottom-color: var(--sj-ember);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sj-ink);
  border-radius: 2px;
  transition: all 240ms var(--sj-ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -- Hero ---------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-horizon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(242, 241, 240, 0.30) 0%,
      rgba(242, 241, 240, 0.10) 35%,
      rgba(40, 50, 60, 0.12) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.hero-mark img {
  width: clamp(120px, 14vw, 180px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(40, 50, 60, 0.10));
}
.hero-title {
  font-size: clamp(1.9rem, 4vw + 0.8rem, 3.2rem);
  line-height: 1.25;
  margin: 0 0 0.8em;
  color: var(--sj-ink);
  /* Subtle white halo for safety when title sits on busier sky areas */
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}
/* Small semi-transparent card holding status + CTAs */
.hero-card {
  display: inline-block;
  margin-top: 8px;
  padding: clamp(18px, 2.2vw, 24px) clamp(28px, 3.5vw, 44px);
  background: rgba(249, 244, 238, 0.5);
  -webkit-backdrop-filter: blur(8px) saturate(105%);
  backdrop-filter: blur(8px) saturate(105%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--sj-radius-md);
  box-shadow: 0 6px 18px rgba(40, 50, 60, 0.10);
  max-width: 560px;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .hero-card { background: rgba(249, 244, 238, 0.85); }
}

.hero-status {
  font-size: 1rem;
  color: var(--sj-ink);
  margin: 0 0 1.25em;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* -- Intro --------------------------------------- */
.section-intro .lead { color: var(--sj-ink); }

/* -- Journeys ------------------------------------ */
.journeys {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}
.journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  background: var(--sj-white);
  border-radius: var(--sj-radius-lg);
  overflow: hidden;
  box-shadow: var(--sj-shadow-soft);
  transition: box-shadow 320ms var(--sj-ease);
}
.journey:hover { box-shadow: var(--sj-shadow-lift); }
.journey:nth-child(even) { direction: rtl; }
.journey:nth-child(even) > * { direction: ltr; }

.journey-figure {
  margin: 0;
  position: relative;
  min-height: 320px;
  background: var(--sj-sky-50);
  overflow: hidden;
}
.journey-figure img,
.journey-figure svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--sj-ease);
}
.journey:hover .journey-figure img { transform: scale(1.02); }

.journey-body {
  padding: clamp(24px, 4vw, 48px);
}
.journey-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--sj-ink-mute);
  margin: 0 0 0.6em;
  text-transform: none;
}
.journey-title { margin: 0 0 0.6em; }
.journey-meta {
  font-size: 0.95rem;
  color: var(--sj-ink-mute);
  margin: 1em 0 1.4em;
  padding-top: 1em;
  border-top: 1px solid var(--sj-sky-100);
}

/* -- About --------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.about-portrait {
  position: sticky;
  top: 100px;
}
.portrait {
  margin: 0;
  background: var(--sj-sand-50);
  border-radius: var(--sj-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sj-shadow-soft);
}
.portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}
.portrait-caption {
  font-family: var(--sj-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--sj-ink-mute);
  text-align: center;
  margin: 0;
  padding: 12px 16px 16px;
  background: var(--sj-white);
  border-top: 1px solid var(--sj-sky-100);
}
.about-text p:first-child {
  font-family: var(--sj-display);
  font-size: 1.4rem;
  color: var(--sj-ink);
}

/* -- Principles ---------------------------------- */
.principles {
  background: var(--sj-white);
  border-radius: var(--sj-radius-lg);
  padding: clamp(40px, 5vw, 64px);
  box-shadow: var(--sj-shadow-soft);
  margin-bottom: clamp(56px, 7vw, 96px);
}
.principles-title { margin-bottom: 0.4em; }
.principles-intro {
  color: var(--sj-ink-mute);
  margin-bottom: 2.5em;
  max-width: 600px;
}
.principles-list {
  list-style: none;
  counter-reset: principle;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.principles-list li {
  counter-increment: principle;
  position: relative;
  padding-top: 32px;
}
.principles-list li::before {
  content: counter(principle, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--sj-display);
  font-size: 1.4rem;
  color: var(--sj-ember);
  letter-spacing: 0.04em;
}
.principles-list h4 {
  margin-bottom: 0.4em;
  color: var(--sj-ink);
}
.principles-list p {
  font-size: 0.98rem;
  color: var(--sj-ink-mute);
  margin: 0;
}

/* -- How (steps) --------------------------------- */
.how-title { margin-bottom: 0.4em; }
.how-intro {
  color: var(--sj-ink-mute);
  margin-bottom: 2.5em;
  max-width: 600px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.how-step {
  background: var(--sj-paper);
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--sj-radius-md);
  border: 1px solid var(--sj-sky-100);
}
.how-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sj-sky-50);
  border: 1px solid var(--sj-sky-200);
  border-radius: 50%;
  font-family: var(--sj-display);
  font-size: 1.1rem;
  color: var(--sj-ember-deep);
  margin-bottom: 16px;
}
.how-step h4 { margin-bottom: 0.4em; }
.how-step p {
  font-size: 0.95rem;
  color: var(--sj-ink-mute);
  margin: 0;
}

/* -- Blog ---------------------------------------- */
.post-card {
  background: var(--sj-white);
  border-radius: var(--sj-radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--sj-shadow-soft);
}
.post-meta {
  font-size: 0.85rem;
  color: var(--sj-ink-mute);
  letter-spacing: 0.04em;
  margin: 0 0 0.8em;
}
.post-title { margin-bottom: 0.6em; }
.post-excerpt {
  font-family: var(--sj-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--sj-ink);
  margin-bottom: 1.6em;
}

/* -- Contact ------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info {
  background: var(--sj-sand-50);
  border-radius: var(--sj-radius-lg);
  padding: clamp(32px, 4vw, 48px);
}
.contact-name {
  font-family: var(--sj-display);
  font-size: 1.4rem;
  color: var(--sj-ink);
  margin-bottom: 1.5em;
}
.contact-list { margin: 0; padding: 0; display: grid; gap: 1.2em; }
.contact-list > div { display: grid; gap: 4px; }
.contact-list dt {
  font-size: 0.85rem;
  color: var(--sj-ink-mute);
  letter-spacing: 0.03em;
}
.contact-list dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--sj-ink);
}
.contact-list dd a {
  color: var(--sj-ember-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sj-ember-soft);
  transition: border-color 240ms var(--sj-ease);
}
.contact-list dd a:hover {
  border-bottom-color: var(--sj-ember-deep);
}

/* -- Form ---------------------------------------- */
.contact-form {
  background: var(--sj-white);
  border-radius: var(--sj-radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--sj-shadow-soft);
}
.field { margin-bottom: 1.4em; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sj-ink);
  margin-bottom: 0.4em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sj-sky-100);
  border-radius: var(--sj-radius-md);
  font-family: var(--sj-body);
  font-size: 1rem;
  background: var(--sj-paper);
  color: var(--sj-ink);
  transition: border-color 240ms var(--sj-ease), background 240ms var(--sj-ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sj-ember);
  background: var(--sj-white);
  box-shadow: 0 0 0 3px var(--sj-ember-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder,
.field textarea::placeholder {
  color: var(--sj-ink-soft);
  opacity: 1;
}

/* Inline validation */
.field-error {
  font-size: 0.88rem;
  color: var(--sj-ember-deep);
  margin: 0.4em 0 0;
  line-height: 1.45;
}
.field.is-error input,
.field.is-error textarea {
  border-color: var(--sj-ember);
  background: rgba(233, 206, 189, 0.18);
}

.form-note {
  font-size: 0.85rem;
  color: var(--sj-ink-mute);
  margin: 1em 0 0;
}
.form-note a {
  color: var(--sj-ember-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sj-ember-soft);
}
.form-note a:hover { border-bottom-color: var(--sj-ember-deep); }

.form-success {
  background: var(--sj-white);
  border-radius: var(--sj-radius-lg);
  padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--sj-shadow-soft);
  text-align: center;
  border: 1px solid var(--sj-sky-100);
}
.form-success-title {
  font-family: var(--sj-display);
  font-size: 1.7rem;
  color: var(--sj-ink);
  margin: 0 0 0.5em;
}
.form-success p {
  color: var(--sj-ink);
  margin: 0 0 1em;
  line-height: 1.6;
}
.form-success-note {
  font-size: 0.92rem;
  color: var(--sj-ink-mute);
  margin-top: 1.5em !important;
  padding-top: 1.2em;
  border-top: 1px solid var(--sj-sky-100);
}
.form-success-note a {
  color: var(--sj-ember-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sj-ember-soft);
}
.form-success-note a:hover { border-bottom-color: var(--sj-ember-deep); }

/* -- Footer -------------------------------------- */
.site-footer {
  background: var(--sj-sky-50);
  padding: 48px 0 32px;
  border-top: 1px solid var(--sj-sky-100);
}
.footer-inner {
  text-align: center;
}
.footer-mark {
  font-family: var(--sj-display);
  font-size: 1.05rem;
  color: var(--sj-ink-mute);
  letter-spacing: 0.04em;
  margin-bottom: 0.6em;
}
.footer-meta {
  font-size: 0.95rem;
  margin-bottom: 1em;
}
.footer-meta a {
  color: var(--sj-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--sj-ease);
}
.footer-meta a:hover { border-bottom-color: var(--sj-ember); }
.footer-fine {
  font-size: 0.85rem;
  color: var(--sj-ink-soft);
  margin: 0;
}

/* -- Reveal on scroll ---------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--sj-ease), transform 700ms var(--sj-ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Responsive ---------------------------------- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  /* Smaller nav header on mobile (better proportion) */
  .nav-logo-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }
  .nav-logo-word { font-size: 1.2rem; }
  .nav-inner { padding: 14px 20px; }

  /* Mobile menu — full viewport coverage below nav bar */
  .nav-menu {
    position: fixed;
    inset: 64px 0 0 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--sj-paper);
    padding: 24px 0;
    border-top: 1px solid var(--sj-sky-100);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 90;          /* under sticky nav (z 100) so toggle stays clickable */

    /* Closed state — robustly hidden across browsers */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 260ms var(--sj-ease),
      transform 260ms var(--sj-ease),
      visibility 0s linear 260ms;
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 260ms var(--sj-ease),
      transform 260ms var(--sj-ease),
      visibility 0s linear 0s;
  }
  .nav-menu a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--sj-sky-100);
    font-size: 1.05rem;
  }
  .nav-menu a:last-child { border-bottom: 0; }

  /* Lock body scroll while menu is open */
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .journey {
    grid-template-columns: 1fr;
  }
  .journey:nth-child(even) { direction: ltr; }
  .journey-figure {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: static; max-width: 320px; }

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

@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero { min-height: 80vh; padding: 64px 20px; }
  .hero-mark svg { width: 90px; height: 90px; }
}

/* -- Print --------------------------------------- */
@media print {
  .site-nav, .nav-toggle, .hero-cta, .contact-form { display: none; }
  body { background: white; color: black; }
  .section { page-break-inside: avoid; }
}
