@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* =========================================================================
   ALETHONYM — site styles
   Concept: high-end travel editorial · minimal · modern.
   Palette (3 colours only, tinted with opacity):
     Deep Navy  #0F1724
     Soft White #F5F7FB
     Blue Gray  #9AA8BA
   Type:
     Arial Black  — "Alethonym" wordmark (system font, letter-spacing 0)
     Manrope      — English display labels (Featured / More / Editorial, kickers)
     Noto Sans JP — Japanese headings, body, navigation
   ========================================================================= */

:root {
  --navy:  #0F1724;
  --white: #F5F7FB;
  --gray:  #9AA8BA;

  --bg:         var(--navy);
  --bg-raise:   rgba(245, 247, 251, 0.028);
  --bg-raise-2: rgba(245, 247, 251, 0.055);
  --ink:        var(--white);
  --ink-soft:   var(--gray);
  --ink-faint:  var(--gray);
  --line:       rgba(154, 168, 186, 0.22);
  --line-soft:  rgba(154, 168, 186, 0.12);
  --line-bright: rgba(245, 247, 251, 0.42);
  --glass:      rgba(15, 23, 36, 0.66);
  --focus:      var(--gray);

  --maxw:      74rem;
  --maxw-text: 44rem;
  --pad-x:     clamp(1.25rem, 5vw, 3.5rem);

  --t--1: clamp(0.8rem, 0.77rem + 0.14vw, 0.875rem);
  --t-0:  clamp(1rem, 0.965rem + 0.18vw, 1.06rem);
  --t-1:  clamp(1.12rem, 1.04rem + 0.36vw, 1.3rem);
  --t-2:  clamp(1.4rem, 1.22rem + 0.9vw, 1.95rem);
  --t-3:  clamp(1.8rem, 1.45rem + 1.8vw, 2.8rem);
  --t-4:  clamp(2.3rem, 1.7rem + 3vw, 4rem);
  --t-5:  clamp(2.8rem, 1.9rem + 4.4vw, 5.4rem);

  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
          "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Segoe UI",
          Roboto, Helvetica, Arial, sans-serif;
  --display: "Manrope", "Noto Sans JP", -apple-system, BlinkMacSystemFont,
             "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --wordmark: "Arial Black", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--t-0);
  line-height: 1.9;
  font-feature-settings: "palt";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--white); }
:where(h1, h2, h3, h4) {
  font-family: var(--sans);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0;
}
p { margin: 0 0 1.25em; }
hr { border: 0; border-top: 1px solid var(--line-soft); margin: 3rem 0; }
::selection { background: rgba(245, 247, 251, 0.14); }

/* Manrope — used for English display labels (not the wordmark) */
.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-feature-settings: normal;
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 1rem; top: 1rem; z-index: 200;
  background: var(--white); color: var(--navy); padding: 0.6rem 1rem;
  border-radius: 4px; font-size: var(--t--1); letter-spacing: 0.04em;
  transform: translateY(-180%); transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.wrap--text { max-width: var(--maxw-text); }
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.stack > * + * { margin-top: 1.25em; }
.lede { font-size: var(--t-1); color: var(--ink-soft); line-height: 1.85; font-weight: 400; }
.muted { color: var(--ink-soft); }
.small { font-size: var(--t--1); color: var(--ink-faint); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--display);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.1rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-weight: 500;
}

/* ---------- Header — thin, quiet ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--glass);
  backdrop-filter: saturate(1.1) blur(16px);
  -webkit-backdrop-filter: saturate(1.1) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 3.5rem;
}
.brand {
  font-family: var(--wordmark);
  font-weight: 900;
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.7rem);
  letter-spacing: 0;
  color: var(--white);
  white-space: nowrap;
}
.brand:hover { color: var(--white); }

.nav-toggle {
  display: none; align-items: center; gap: 0.55rem; min-height: 44px;
  background: none; border: 1px solid var(--line); border-radius: 4px;
  padding: 0.42rem 0.85rem; font: inherit; font-size: var(--t--1);
  letter-spacing: 0.1em; color: var(--ink-soft); cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-toggle:hover { border-color: var(--line-bright); color: var(--white); }
.nav-toggle__box { width: 16px; height: 9px; position: relative; display: inline-block; }
.nav-toggle__box::before, .nav-toggle__box::after,
.nav-toggle__box span { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: currentColor; }
.nav-toggle__box::before { top: 0; }
.nav-toggle__box span { top: 4px; }
.nav-toggle__box::after { bottom: 0; }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; color: var(--ink-soft);
  font-size: var(--t--1); letter-spacing: 0.14em;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--white); }

@media (max-width: 47.99em) {
  .site-header__bar { flex-wrap: wrap; padding-block: 0.5rem; }
  .site-nav {
    width: 100%;
    background: var(--navy); border-bottom: 1px solid var(--line-soft);
  }
  .nav-ready .site-header__bar { flex-wrap: nowrap; }
  .nav-ready .nav-toggle { display: inline-flex; }
  .nav-ready .site-nav { display: none; position: absolute; inset: 100% 0 auto 0; }
  .nav-ready .site-nav.is-open { display: block; }
  .site-nav ul { padding: 0.35rem var(--pad-x) 1.4rem; }
  .site-nav li + li { border-top: 1px solid var(--line-soft); }
  .site-nav a { padding: 0.95rem 0; letter-spacing: 0.1em; }
}
@media (min-width: 48em) {
  .nav-toggle { display: none; }
  .site-nav ul { display: flex; align-items: center; gap: 2.25rem; }
}

/* ---------- Hero — typography-led, no image placeholder ---------- */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}
/* Quiet backdrop for the typography-led hero. */
.hero__visual {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 85% at 80% 8%, rgba(245, 247, 251, 0.06), transparent 55%),
    radial-gradient(150% 130% at 8% 100%, rgba(154, 168, 186, 0.12), transparent 60%),
    linear-gradient(180deg, #121b2b 0%, #0F1724 52%, #0b111c 100%);
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 46%, transparent 42%, rgba(9, 14, 22, 0.5) 100%);
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.25rem, 6vw, 4.5rem);
  align-items: center;
}
.hero__grid > div { min-width: 0; }

.hero__mark {
  font-family: var(--wordmark); font-weight: 900;
  font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.1rem);
  letter-spacing: 0; color: var(--white);
  margin: 0 0 1.5rem;
}
.hero__title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.88rem, 9.24vw, 4.752rem);
  line-height: 1.32;
  letter-spacing: 0.04em;
  margin: 0 0 1.7rem;
}
.hero__title span { white-space: nowrap; }
.hero__sub {
  font-size: var(--t-1);
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 26rem;
  margin: 0 0 2rem;
}
/* Top-page photography only: preserve all shared type and button rules. */
.home-with-photos .hero {
  min-height: clamp(540px, 78svh, 820px);
  isolation: isolate;
}
.home-with-photos .hero__visual { background: var(--navy); }
.home-with-photos .hero__background {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 58% 56%;
}
.home-with-photos .hero__visual::after {
  background: linear-gradient(90deg, rgba(15, 23, 36, 0.94) 0%, rgba(15, 23, 36, 0.78) 38%, rgba(15, 23, 36, 0.28) 68%, rgba(15, 23, 36, 0.08) 100%);
}
.home-with-photos .hero__grid { grid-template-columns: minmax(0, 1fr); }
.home-with-photos .hero__sub { color: var(--white); }
@media (max-width: 47.99em) {
  .home-with-photos .hero { min-height: 560px; padding-block: 3.5rem; }
  .home-with-photos .hero__background { object-position: 62% 52%; }
  .home-with-photos .hero__visual::after {
    background: linear-gradient(90deg, rgba(15, 23, 36, 0.88), rgba(15, 23, 36, 0.6) 65%, rgba(15, 23, 36, 0.32));
  }
}
.home-with-photos .photo-section {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: 560px;
  padding-block: clamp(3.5rem, 7vw, 7rem);
  background: var(--navy);
}
.home-with-photos .photo-section__background {
  position: absolute; inset: 0; z-index: -1;
}
.home-with-photos .photo-section__background img {
  display: block; width: 100%; height: 100%; object-fit: cover;
}
.home-with-photos .photo-section__background::after {
  content: ""; position: absolute; inset: 0;
}
.home-with-photos .feature-panel .photo-section__background img { object-position: 42% 58%; }
.home-with-photos .feature-panel .photo-section__background::after {
  background: linear-gradient(90deg, rgba(15,23,36,0.18), rgba(15,23,36,0.82) 46%, rgba(15,23,36,0.94));
}
.home-with-photos .feature-panel .feature { display: block; padding: 0; }
.home-with-photos .editorial-panel .photo-section__background img { object-position: 54% 56%; }
.home-with-photos .editorial-panel .photo-section__background::after {
  background: linear-gradient(90deg, rgba(15,23,36,0.94), rgba(15,23,36,0.84) 44%, rgba(15,23,36,0.2));
}
.home-with-photos .editorial-panel .statement__grid { display: block; max-width: 34rem; }
.home-with-photos .photo-section .arrow-link { min-height: 44px; }
@media (min-width: 56em) {
  .home-with-photos .feature-panel { min-height: 640px; }
  .home-with-photos .feature-panel > .wrap { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .home-with-photos .feature-panel > .wrap > * { grid-column: 2; }
  .home-with-photos .editorial-panel { min-height: 600px; }
}
@media (max-width: 55.99em) {
  .home-with-photos .photo-section { min-height: 520px; padding-block: 3.5rem; }
  .home-with-photos .feature-panel .photo-section__background img { object-position: 30% 58%; }
  .home-with-photos .editorial-panel .photo-section__background img { object-position: 60% 55%; }
  .home-with-photos .photo-section .photo-section__background::after {
    background: linear-gradient(180deg, rgba(15,23,36,0.76), rgba(15,23,36,0.9) 45%, rgba(15,23,36,0.87));
  }
}

/* ---------- Buttons / links — minimal ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font: inherit; font-size: var(--t--1); letter-spacing: 0.14em;
  color: var(--ink);
  padding: 0.9rem 1.7rem; border: 1px solid var(--line);
  border-radius: 4px; background: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { border-color: var(--line-bright); color: var(--white); background: rgba(245, 247, 251, 0.04); }
.btn--primary { background: var(--white); color: var(--navy); border-color: var(--white); font-weight: 500; min-height: 48px; }
.btn--primary:hover { background: var(--gray); color: var(--navy); border-color: var(--gray); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--t--1); letter-spacing: 0.14em; color: var(--ink-soft);
}
.arrow-link::after {
  content: ""; width: 1.7rem; height: 1px; background: currentColor;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}
.arrow-link:hover { color: var(--white); }
.arrow-link:hover::after { width: 2.6rem; background: var(--white); }

/* ---------- Featured block — editorial, oversized ---------- */
.feature {
  display: grid; gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: stretch;
  padding-block: 0.5rem 0;
}
@media (min-width: 56em) { .feature { grid-template-columns: 1.1fr 1fr; } }
.feature__visual {
  position: relative; overflow: hidden;
  border: 1px solid var(--line-soft); border-radius: 10px;
  min-height: 18rem;
  background:
    radial-gradient(90% 70% at 28% 18%, rgba(154, 168, 186, 0.18), transparent 62%),
    linear-gradient(160deg, rgba(245, 247, 251, 0.05), transparent 52%),
    linear-gradient(0deg, #0b111c, #16202e);
}
.feature__visual::after {
  content: ""; position: absolute; left: 14%; right: 42%; top: 30%;
  height: 1px; background: linear-gradient(90deg, rgba(245, 247, 251, 0.4), transparent);
}
.feature__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature:hover .feature__img { transform: scale(1.03); }
.feature__body { display: flex; flex-direction: column; justify-content: center; }
.feature__kicker { font-family: var(--display); font-size: 1rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 0.8rem; }
.feature__title {
  font-weight: 400;
  font-size: var(--t-3); line-height: 1.4; margin: 0 0 1.1rem; text-wrap: balance;
}
.home-with-photos .feature__title span { white-space: nowrap; }
.home-with-photos .feature__supplement {
  font-size: var(--t-0);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.feature__dek { color: var(--ink-soft); margin: 0 0 2rem; max-width: 34rem; }

/* ---------- Category links — understated, secondary ---------- */
.cats { border-top: 1px solid var(--line-soft); }
.cats__upcoming { margin: 1.25rem 0 0; max-width: 44rem; }
.cats__list {
  list-style: none; margin: 1.4rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.cats__item a, .cats__item span {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.62rem 1.1rem; border: 1px solid var(--line-soft);
  border-radius: 4px; font-size: var(--t--1); letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.cats__item a:hover { border-color: var(--line-bright); color: var(--white); }
.cats__item--active a { border-color: var(--line-bright); color: var(--white); }
.cats__item--soon span { color: var(--ink-faint); cursor: default; }
.cats__item--soon span::after {
  content: "準備中"; font-size: 0.74em; letter-spacing: 0.06em;
  color: var(--ink-faint); border-left: 1px solid var(--line-soft); padding-left: 0.6rem;
}

/* ---------- Editorial statement ---------- */
.statement { border-top: 1px solid var(--line-soft); }
.statement__grid { display: grid; gap: clamp(1.5rem, 5vw, 3rem); }
@media (min-width: 56em) { .statement__grid { grid-template-columns: 0.85fr 1.15fr; } }
.statement__body { max-width: 34rem; }
.statement__title { font-weight: 400; font-size: var(--t-2); margin: 0.4rem 0 1rem; }

/* ---------- Cards (list / category pages) — light touch ---------- */
.grid { display: grid; gap: clamp(1rem, 3vw, 1.75rem); }
.article-list { max-width: 48rem; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 40em) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 52em) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--bg-raise); border: 1px solid var(--line-soft);
  border-radius: 8px; padding: clamp(1.25rem, 3vw, 1.85rem);
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.card:hover { border-color: var(--line-bright); transform: translateY(-3px); background: var(--bg-raise-2); }
.card__kicker { font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.card__title { font-weight: 400; font-size: var(--t-1); margin: 0; line-height: 1.6; }
.card__desc { color: var(--ink-soft); font-size: var(--t-0); margin: 0; }
.card__meta { font-size: var(--t--1); color: var(--ink-faint); margin-top: auto; }
.card--muted { opacity: 0.6; }
.tag-soon {
  align-self: flex-start; font-size: var(--t--1); letter-spacing: 0.08em;
  border: 1px solid var(--line-soft); color: var(--ink-faint);
  padding: 0.15rem 0.6rem; border-radius: 4px;
}

/* ---------- Article ---------- */
.article { padding-block: clamp(2.5rem, 7vw, 4.5rem); }
.article__header { max-width: var(--maxw-text); margin-inline: auto; }
.article__title { font-weight: 400; font-size: var(--t-3); margin: 0.5rem 0 0.9rem; line-height: 1.5; text-wrap: balance; }
.article__meta { font-size: var(--t--1); color: var(--ink-faint); letter-spacing: 0.05em; }
.article__body { max-width: var(--maxw-text); margin-inline: auto; }
.article__body h2 {
  font-weight: 500; font-size: var(--t-2); margin: 2.8rem 0 1rem;
  padding-top: 1.9rem; border-top: 1px solid var(--line-soft);
}
.article__body h3 { font-weight: 500; font-size: var(--t-1); margin: 2rem 0 0.7rem; }
.article__body ul, .article__body ol { padding-left: 1.3em; margin: 0 0 1.25em; }
.article__body li { margin-bottom: 0.5em; }
.article__body li::marker { color: var(--ink-soft); }

.notice {
  border: 1px solid var(--line-soft); border-left: 2px solid var(--gray);
  background: var(--bg-raise); border-radius: 6px;
  padding: 1.1rem 1.25rem; margin: 1.7rem 0; font-size: var(--t-0);
}
.notice strong { color: var(--ink); }
.notice--draft { background: var(--bg-raise-2); border-left-color: var(--white); }

.table-scroll { overflow-x: auto; margin: 1.7rem 0; border: 1px solid var(--line-soft); border-radius: 8px; }
table.compare { width: 100%; border-collapse: collapse; font-size: var(--t-0); min-width: 40rem; }
table.compare caption { text-align: left; padding: 1rem 1.15rem; color: var(--ink-faint); font-size: var(--t--1); }
table.compare th, table.compare td { padding: 0.9rem 1.15rem; text-align: left; vertical-align: top; border-top: 1px solid var(--line-soft); }
table.compare thead th { border-top: 0; font-weight: 500; background: var(--bg-raise-2); }
table.compare tbody th { font-weight: 500; color: var(--ink); white-space: nowrap; }
table.compare .todo { color: var(--ink-faint); font-style: italic; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.5rem 0; }
.cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--t--1); letter-spacing: 0.1em;
  padding: 0.85rem 1.5rem; border-radius: 4px;
  border: 1px solid var(--line); color: var(--ink);
}
.cta:hover { border-color: var(--line-bright); background: rgba(245, 247, 251, 0.04); }
.cta--pending { border-style: dashed; color: var(--ink-faint); cursor: not-allowed; background: none; }

.defs { display: grid; gap: 0; border-top: 1px solid var(--line-soft); margin-top: 0.5rem; }
.defs > div { display: grid; gap: 0.2rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
@media (min-width: 34em) { .defs > div { grid-template-columns: 12rem 1fr; gap: 1rem; align-items: baseline; } }
.defs dt { font-weight: 500; color: var(--ink); margin: 0; }
.defs dd { margin: 0; color: var(--ink-soft); }

.crumbs { font-size: var(--t--1); color: var(--ink-faint); letter-spacing: 0.05em; margin-bottom: 0.9rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: 0.45rem; color: var(--line); }
.crumbs li:last-child::after { content: none; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-raise); margin-top: 0; }
.site-footer__grid { display: grid; gap: 2rem; padding-block: clamp(2.75rem, 7vw, 4rem); }
@media (min-width: 44em) { .site-footer__grid { grid-template-columns: 1.35fr 1fr 1fr; } }
.site-footer h2 { font-family: var(--display); font-size: 0.95rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 0.9rem; font-weight: 500; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--ink-soft); font-size: var(--t--1); }
.site-footer a:hover { color: var(--white); }
.site-footer__brand { font-family: var(--wordmark); font-size: 1.4rem; letter-spacing: 0; color: var(--white); margin: 0 0 0.6rem; font-weight: 900; }
.site-footer__fine {
  border-top: 1px solid var(--line-soft); padding-block: 1.4rem;
  font-size: var(--t--1); color: var(--ink-faint);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
}

/* ---------- Scroll reveal — subtle, reduced-motion aware ---------- */
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .feature__img, .arrow-link::after { transition: none !important; }
  html { scroll-behavior: auto; }
}
