/* =========================================================
   home.css — 2026 editorial front page (.a26)
   Dark hero → light content. One accent. Expressive type.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");

.home .homenon {
  display: none;
}

/* ---------- Header: transparent over hero → white on scroll ---------- */
.home #page-wrapper {
  padding-top: 0;
}

.home #header {
  background: transparent;
  box-shadow: none;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.home #header.is-scrolled,
.home.nav-open #header {
  background: #ffffff;
  box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.1);
}

/* Light chrome while floating on dark hero */
.home #header:not(.is-scrolled) #nav .menu > li > a {
  color: #fff !important;
}

.home #header:not(.is-scrolled) #nav .menu > li > a:hover,
.home #header:not(.is-scrolled) #nav .menu > li.is-current > a {
  color: #fff !important;
  border-bottom-color: rgba(255, 255, 255, 0.85);
}

.home #header:not(.is-scrolled) .header-tools .tool-search,
.home #header:not(.is-scrolled) .header-tools .tool-contact,
.home #header:not(.is-scrolled) .header-tools .accordion-click,
.home #header:not(.is-scrolled) .header-tools a.tool-contact {
  color: #fff !important;
}

.home #header:not(.is-scrolled) .header-tools .tool-search:hover,
.home #header:not(.is-scrolled) .header-tools .tool-contact:hover,
.home #header:not(.is-scrolled) .header-tools .accordion-click:hover {
  color: #fff !important;
  opacity: 0.85 !important;
}

.home #header:not(.is-scrolled) h1 a.logo {
  background-image: url("../../images/logo1.svg");
  filter: none;
  transition: none;
}

.home #header.is-scrolled h1 a.logo,
.home.nav-open #header h1 a.logo {
  background-image: url("../../images/logo2.svg");
  filter: none;
  transition: none;
}

.home #header:not(.is-scrolled) .nav-toggle {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.home #header:not(.is-scrolled) .nav-toggle__bar {
  background: #fff;
}

/* Restore dark chrome when scrolled / menu open */
.home #header.is-scrolled #nav .menu > li > a,
.home.nav-open #header #nav .menu > li > a {
  color: #000 !important;
}

.home #header.is-scrolled #nav .menu > li > a:hover,
.home #header.is-scrolled #nav .menu > li.is-current > a,
.home.nav-open #header #nav .menu > li > a:hover,
.home.nav-open #header #nav .menu > li.is-current > a {
  color: #9726ec !important;
  border-bottom-color: #9726ec;
}

.home #header.is-scrolled .header-tools .tool-search,
.home #header.is-scrolled .header-tools .tool-contact,
.home #header.is-scrolled .header-tools .accordion-click,
.home #header.is-scrolled .header-tools a.tool-contact,
.home.nav-open #header .header-tools .tool-search,
.home.nav-open #header .header-tools .tool-contact,
.home.nav-open #header .header-tools .accordion-click,
.home.nav-open #header .header-tools a.tool-contact {
  color: #111 !important;
}

.home #header.is-scrolled .nav-toggle,
.home.nav-open #header .nav-toggle {
  background: #fff;
  border-color: #ddd;
}

.home #header.is-scrolled .nav-toggle__bar,
.home.nav-open #header .nav-toggle__bar {
  background: #111;
}

.a26 {
  --a26-bg: #0c0c0e;
  --a26-bg-2: #151518;
  --a26-paper: #f7f7f9;
  --a26-paper-2: #efeff2;
  --a26-ink: #121214;
  --a26-muted: #6b6b74;
  --a26-line: rgba(18, 18, 20, 0.1);
  --a26-accent: #9726ec;
  --a26-accent-ink: #7a1dbf;
  --a26-radius: 0;
  --a26-wrap: 1400px; /* match theme .container */
  font-family: "IBM Plex Sans JP", "Hiragino Sans", sans-serif;
  color: var(--a26-ink);
  background: var(--a26-paper);
  overflow-x: clip;
}

.a26 * {
  box-sizing: border-box;
}

.a26 a {
  color: inherit;
  text-decoration: none;
}

.a26-wrap,
.a26-hero__content {
  width: var(--a26-wrap);
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

.a26-eyebrow {
  margin: 0 0 0.65rem;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a26-muted);
}

.a26-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Hero ---------- */
.a26-hero {
  position: relative;
  display: grid;
  align-content: end;
  min-height: min(92vh, 54rem);
  padding: 7rem 0 0;
  color: #fff;
  background: var(--a26-bg);
  overflow: hidden; /* clip ken-burns so bottom edge stays flush */
}

.a26-hero__media,
.a26-hero__shade {
  position: absolute;
  inset: 0;
}

.a26-hero__media {
  overflow: hidden;
}

.a26-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 42%;
  transform-origin: 55% 42%;
  will-change: transform;
  animation: a26-ken 22s ease-in-out infinite alternate;
}

.a26-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.22) 48%, rgba(8, 8, 10, 0.06) 100%),
    linear-gradient(to top, rgba(8, 8, 10, 0.28) 0%, rgba(8, 8, 10, 0.06) 38%, transparent 62%);
}

.a26-hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 2.75rem; /* was 5.5rem — empty dark band under CTAs */
}

.a26-hero .a26-eyebrow {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.a26-hero__title {
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
  font-family: "Zen Kaku Gothic New", "IBM Plex Sans JP", sans-serif;
  font-size: clamp(1.85rem, 4.6vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.28;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.a26-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-size: var(--fs-read);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.a26-hero__title,
.a26-hero__lead,
.a26-hero .a26-eyebrow {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.a26-hero__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0.75rem 0.9rem;
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Translucent white glass buttons on dark sections */
.a26-hero__actions .a26-btn,
.a26-about__links .a26-btn,
.a26-cta .a26-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.a26-hero__actions .a26-btn:hover,
.a26-about__links .a26-btn:hover,
.a26-cta .a26-btn:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff !important;
}

.a26-hero__actions .a26-btn--solid,
.a26-cta .a26-btn--light {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.a26-hero__actions .a26-btn--solid:hover,
.a26-cta .a26-btn--light:hover {
  background: rgba(255, 255, 255, 0.34);
}

.a26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin: 0;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: var(--fs-ui);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.a26-btn:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.a26-btn--solid {
  background: var(--a26-accent);
  color: #fff !important;
}

.a26-btn--solid:hover {
  background: #8619d8;
}

.a26-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: transparent;
}

.a26-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.a26-btn--light {
  background: #fff;
  color: var(--a26-ink) !important;
}

.a26-btn--light:hover {
  background: #f0e7ff;
  color: var(--a26-accent-ink) !important;
}


/* ---------- Paths ---------- */
.a26-paths {
  padding: 4.5rem 0 4rem;
  background: #fff;
}

.a26-sechead {
  margin-bottom: 1.75rem;
}

.a26-sechead h3,
.a26-about__sticky h3,
.a26-cta h3 {
  margin: 0;
  font-family: "Zen Kaku Gothic New", "IBM Plex Sans JP", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.a26-sechead--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.a26-pathgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.a26-path {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 16.5rem;
  padding: 1.35rem;
  border: 0;
  border-radius: 0;
  background: var(--a26-bg);
  color: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.a26-path:hover {
  box-shadow: 0 18px 40px rgba(18, 18, 20, 0.18);
  transform: translateY(-2px);
  opacity: 1;
}

.a26-path__no {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--fs-meta);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
}

.a26-path__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-bottom: 0.15rem;
}

.a26-path__label {
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.a26-path__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: var(--fs-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.a26-path__text {
  max-width: 16rem;
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.a26-path__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.a26-path__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.28) 55%, rgba(8, 8, 10, 0.18) 100%),
    linear-gradient(to top, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.18) 42%, transparent 70%);
}

.a26-path__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}

.a26-path:hover .a26-path__media img {
  transform: scale(1.04);
}

.a26-path > :not(.a26-path__media) {
  position: relative;
  z-index: 1;
}

/* ---------- About ---------- */
.a26-about,
.a26-cta {
  position: relative;
  background-color: var(--a26-bg);
  background-image:
    linear-gradient(180deg, rgba(8, 8, 10, 0.6) 0%, rgba(8, 8, 10, 0.86) 100%),
    url("../../images/wellness-bg.jpg");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed; /* image stays fixed; dark veil stays with section */
  color: #fff;
}

.a26-about {
  padding: 4rem 0;
  border-top: 0;
}

.a26-about__grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(0, 1.4fr);
  gap: 2rem 3rem;
  align-items: start;
}

.a26-about__sticky {
  position: sticky;
  top: 6rem;
}

.a26-about .a26-eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.a26-about__sticky h3 {
  color: #fff;
}

.a26-about__copy p {
  margin: 0 0 1.15rem;
  font-size: var(--fs-read);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

.a26-about__copy p a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.a26-about__copy p a:hover {
  opacity: 1;
  color: #fff;
  border-bottom-color: #fff;
}

.a26-about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.9rem;
  margin-top: 0.35rem;
}

.a26-about__links .a26-btn {
  flex: 1 1 0;
  min-width: 8.5rem;
  text-align: center;
}

.a26-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-ui);
  font-weight: 600;
  color: var(--a26-accent-ink);
  border-bottom: 1px solid rgba(151, 38, 236, 0.35);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.a26-textlink:hover {
  color: var(--a26-accent);
  border-bottom-color: var(--a26-accent);
  opacity: 1;
}

.a26-textlink::after {
  content: "→";
}

/* ---------- Streams ---------- */
.a26-stream {
  padding: 3.5rem 0;
  background: var(--a26-paper);
  border-top: 1px solid var(--a26-line);
}

.a26-stream--soft {
  background: var(--a26-paper-2);
}

.a26-list,
.a26-list--news {
  margin: 0;
  padding: 0;
  padding-left: 0;
  list-style: none;
  border-top: 1px solid #eceff3;
}

.a26-list > li,
.a26-list--news > li {
  padding-left: 0;
  border-bottom: 1px solid #eceff3;
}

.a26-list > li > a {
  display: grid;
  grid-template-columns: 6.8em minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55em 0.75em;
  padding: 0.95em 0.15em;
  color: #111;
  transition: color 0.2s ease, background 0.2s ease;
}

.a26-list--news > li > a {
  grid-template-columns: 6.4em minmax(0, 1fr) auto;
}

.a26-list > li > a:hover {
  color: #000;
  background: #f7f9fc;
  opacity: 1;
}

.a26-list time {
  font-size: var(--fs-meta);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #6a7380;
}

.a26-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 0;
  /* JP: ink sits high — slightly more top padding */
  padding: 0.48em 0.65em 0.34em;
  border: 0;
  background: rgba(18, 18, 20, 0.08);
  color: #121214;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.a26-list__title {
  min-width: 0;
  font-size: var(--fs-title);
  font-weight: 500;
  line-height: 1.45;
  color: #141414;
}

/* Match .wpnews .news-list_text .newicon (not the older blue span.newicon). */
.a26-list--news .a26-list__title .newicon {
  margin: 0 0 0 0.4em;
  padding: 0.2em 0.45em;
  border: 0;
  background: #111;
  color: #fff;
  font-family: "proxima-soft", sans-serif;
  font-size: var(--fs-tiny);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
  height: auto;
  vertical-align: middle;
  white-space: nowrap;
}

.a26-list > li > a:hover .a26-list__title {
  color: #000;
}

.a26-tax {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin: 0 0 0 0.4em;
  padding: 0.32em 0.45em 0.2em;
  border: 1px solid #5a6470;
  background: #5a6470;
  color: #fff;
  font-size: var(--fs-tiny);
  font-weight: 500;
  line-height: 1;
}

.a26-tax--update {
  border-color: #00b8ae;
  background: #00b8ae;
  color: #fff;
}

.a26-list__arrow {
  color: var(--a26-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.a26-list > li > a:hover .a26-list__arrow {
  color: var(--a26-accent);
  transform: translateX(3px);
}

.a26-list__empty {
  padding: 1em 0.15em;
  color: #6a7380;
  font-size: var(--fs-lead);
}

/* ---------- CTA ---------- */
.a26-cta {
  padding: 3.5rem 0 4.5rem;
}

.a26-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 0;
}

.a26-cta h3 {
  margin: 0 0 0.55rem;
  color: #fff;
}

.a26-cta p {
  margin: 0;
  font-size: var(--fs-read);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes a26-ken {
  from {
    transform: scale(1.18) translate(2.2%, 1.4%);
  }
  to {
    transform: scale(1.05) translate(-2.4%, -1.2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .a26-hero__media img {
    animation: none;
    transform: none;
  }

  .a26-about,
  .a26-cta {
    background-attachment: scroll, scroll;
  }

  .a26-path,
  .a26-btn,
  .a26-list > li > a,
  .a26-list__arrow {
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 1680px) {
  .a26 {
    --a26-wrap: 90%;
  }
}

@media screen and (max-width: 980px) {
  .a26-hero {
    min-height: min(88vh, 44rem);
    padding-top: 6rem;
  }

  .a26-cta p br {
    display: none;
  }

  /* iOS / narrow: fixed bg is unreliable */
  .a26-about,
  .a26-cta {
    background-attachment: scroll, scroll;
  }

  .a26-pathgrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .a26-path {
    min-height: 12rem;
    padding: 1.1rem;
  }

  .a26-path__title {
    font-size: var(--fs-heading);
  }

  .a26-about__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .a26-about__sticky {
    position: static;
  }
}

@media screen and (max-width: 736px) {
  .a26 {
    --a26-wrap: 100%;
  }

  .a26-hero__title br,
  .a26-hero__lead br {
    display: unset;
  }

  .a26-wrap,
  .a26-hero__content {
    padding-inline: 1rem;
  }

  .a26-hero__content {
    padding-bottom: 3rem;
  }

  .a26-paths,
  .a26-about,
  .a26-stream,
  .a26-cta {
    padding-block: 3rem;
  }

  .a26-pathgrid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .a26-path {
    min-height: 8rem;
    padding: 1rem 1.1rem;
    gap: 0.5rem;
    justify-content: flex-end;
  }

  .a26-path__body {
    margin-top: 0;
    gap: 0.25rem;
    padding-bottom: 0;
  }

  .a26-path__title {
    font-size: var(--fs-heading);
  }

  .a26-path__text {
    font-size: var(--fs-lead);
  }

  .a26-hero__actions,
  .a26-about__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 0.9rem;
  }

  .a26-hero__actions .a26-btn,
  .a26-about__links .a26-btn,
  .a26-cta .a26-btn {
    flex: none;
    width: 100%;
    min-width: 0;
    min-height: 2.75rem;
    /* JP glyphs sit high in the box — nudge text down */
    padding: 0.78rem 1.1rem 0.58rem;
    font-size: var(--fs-ui);
    line-height: 1;
  }

  .a26-cta .a26-btn {
    min-height: 2.35rem;
    padding: 0.5rem 1rem;
  }

  .a26-path__no {
    display: none;
  }

  .a26-cta__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .a26-list > li > a,
  .a26-list--news > li > a {
    grid-template-columns: 5.8em minmax(0, 1fr);
    gap: 0.4em 0.75em;
    padding: 0.9em 0.1em;
  }

  .a26-list__arrow {
    display: none;
  }

  .a26-chip {
    width: 100%;
    font-size: var(--fs-label);
    padding: 0.44em 0.55em 0.3em;
    line-height: 1;
  }

  .a26-list__title {
    font-size: var(--fs-title);
  }

  .a26-list--news > li > a {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .a26-list--news time {
    font-size: var(--fs-meta);
  }
}
