:root {
  --charcoal: #0a0908;
  --burnt-wood: #2b1b13;
  --ivory: #f2ebdd;
  --burgundy: #671d18;
  --gold: #b79a5b;
  --muted: #9a9288;
  --ink: #17120f;
  --cream: #fffaf0;
  --line-dark: rgba(242, 235, 221, 0.2);
  --line-light: rgba(43, 27, 19, 0.2);
  --font-ja: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-latin: "Josefin Sans", Arial, sans-serif;
  --shell: min(100% - 64px, 1360px);
  --narrow: min(100% - 64px, 1040px);
  --header-height: 92px;
  --section-space: clamp(96px, 10vw, 168px);
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--charcoal);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ivory);
  background: var(--charcoal);
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.045em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

main {
  display: block;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f3ce7b;
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.55em;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p,
li,
dd,
summary {
  overflow-wrap: anywhere;
}

ul {
  padding-left: 1.25em;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--charcoal);
  background: var(--ivory);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.media-cover,
.media-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-cover img {
  object-fit: cover;
}

.paper-grain {
  color: var(--ink);
  background-color: var(--ivory);
  background:
    radial-gradient(circle at 15% 20%, rgba(103, 29, 24, 0.035), transparent 22%),
    radial-gradient(circle at 82% 75%, rgba(43, 27, 19, 0.045), transparent 28%),
    var(--ivory);
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--dark {
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(103, 29, 24, 0.14), transparent 35%),
    var(--charcoal);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-latin);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 88px);
}

.section-head h2 {
  margin-bottom: 0;
  text-wrap: balance;
}

.section-head__lead {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: 1.06rem;
  line-height: 2.1;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 220px;
  min-height: 56px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  background: var(--burgundy);
  font-family: var(--font-ja);
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  color: var(--charcoal);
  background: var(--gold);
}

.button__arrow {
  font-family: var(--font-latin);
  font-size: 1.1rem;
}

.button--light,
.button--ghost,
.button--line {
  background: rgba(10, 9, 8, 0.22);
}

.button--ghost {
  border-color: rgba(242, 235, 221, 0.55);
}

.button--line {
  min-width: 0;
  border-width: 0 0 1px;
  border-color: var(--gold);
  padding: 8px 0;
}

.button--line:hover {
  color: var(--gold);
  background: transparent;
}

.button--dark {
  color: var(--ivory);
  background: var(--charcoal);
}

.button--text {
  min-width: 0;
  min-height: 0;
  margin-top: 26px;
  padding: 7px 0;
  border-width: 0 0 1px;
  background: transparent;
}

.button--text:hover {
  color: var(--gold);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  text-decoration: none;
}

.section-action {
  margin-top: 52px;
  text-align: center;
}

.section-action--start {
  text-align: left;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(242, 235, 221, 0.35);
  color: var(--ivory);
  background: rgba(10, 9, 8, 0.55);
  font-size: 0.75rem;
  line-height: 1.2;
  white-space: nowrap;
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
}

.status--preparing .status__dot,
.status--aging .status__dot,
.status--opening .status__dot,
.status--active .status__dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 154, 91, 0.18);
}

.status--concept .status__dot {
  background: var(--muted);
}

.status__en {
  color: rgba(242, 235, 221, 0.72);
  font-family: var(--font-latin);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px max(32px, calc((100vw - 1440px) / 2 + 40px));
  border-bottom: 1px solid transparent;
  color: var(--ivory);
  background: rgba(10, 9, 8, 0.97);
  transition: min-height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.site-header--overlay:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgba(10, 9, 8, 0.8), rgba(10, 9, 8, 0));
}

.site-header.is-scrolled {
  min-height: 74px;
  border-color: var(--line-dark);
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.24rem;
  letter-spacing: 0.16em;
}

.brand__byline {
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--font-latin);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.site-nav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.78rem;
  line-height: 1.35;
  text-decoration: none;
}

.site-nav__link::after {
  position: absolute;
  right: 50%;
  bottom: -11px;
  left: 50%;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: right 0.25s ease, left 0.25s ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-current::after {
  right: 0;
  left: 0;
}

.site-nav__en {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.button--header {
  min-width: 126px;
  min-height: 42px;
  padding: 8px 16px;
  font-size: 0.76rem;
}

.button--header .button__arrow {
  display: none;
}

.nav-toggle {
  display: none;
}

/* Footer */
.footer {
  padding-top: 82px;
  color: var(--ivory);
  background:
    linear-gradient(110deg, rgba(103, 29, 24, 0.12), transparent 42%),
    #11100e;
  border-top: 1px solid var(--line-dark);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.brand--footer .brand__name {
  font-size: 1.45rem;
}

.footer__brand p {
  margin: 20px 0 0;
  font-size: 0.88rem;
}

.footer__brand .footer__tagline-en {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__navigation {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 30px 40px;
}

.footer__navigation a {
  white-space: nowrap;
}

.footer__navigation li,
.footer__social li {
  margin-bottom: 10px;
}

.footer__navigation a,
.footer__social a {
  color: rgba(242, 235, 221, 0.9);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer__navigation a:hover,
.footer__social a:hover {
  color: var(--gold);
}

.footer__social a {
  display: flex;
  flex-direction: column;
}

.footer__handle {
  color: var(--muted);
  font-family: var(--font-latin);
  font-size: 0.65rem;
}

.footer__line {
  max-width: 13em;
  padding-left: 26px;
  border-left: 1px solid var(--gold);
  font-size: 1.02rem;
  line-height: 2.15;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-top: 68px;
  padding-block: 26px;
  border-top: 1px solid var(--line-dark);
}

.footer__image-note,
.footer__copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
}

.footer__image-note {
  max-width: 720px;
}

.footer__copyright {
  font-family: var(--font-latin);
  white-space: nowrap;
}

/* Reveal */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Generic page hero */
.page-hero {
  padding: clamp(170px, 17vw, 240px) 0 clamp(88px, 9vw, 136px);
  border-bottom: 1px solid var(--line-light);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  column-gap: 9vw;
  align-items: end;
}

.page-hero .eyebrow,
.page-hero h1 {
  grid-column: 1;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 1.18;
}

.page-hero__lead {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--gold);
  font-size: 1.05rem;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--burnt-wood);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.86) 0%, rgba(10, 9, 8, 0.52) 43%, rgba(10, 9, 8, 0.15) 74%),
    linear-gradient(to top, rgba(10, 9, 8, 0.72), transparent 50%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr auto;
  align-items: end;
  min-height: 100svh;
  padding-block: clamp(150px, 18vh, 220px) clamp(72px, 9vh, 110px);
}

.home-hero__copy {
  max-width: 760px;
}

.home-hero h1 {
  max-width: 8.5em;
  margin-bottom: 30px;
  font-size: clamp(3.7rem, 7vw, 7.5rem);
  line-height: 1.23;
  letter-spacing: 0.12em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.home-hero__lead {
  max-width: 620px;
  margin: 0;
  font-size: 1.08rem;
}

.vertical-copy {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.9;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.home-hero .vertical-copy {
  align-self: center;
  justify-self: end;
  max-height: 19em;
}

.scroll-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: end;
  gap: 12px;
  font-family: var(--font-latin);
  font-size: 0.56rem;
  line-height: 1;
  letter-spacing: 0.22em;
}

.scroll-mark i {
  display: block;
  width: 1px;
  height: 54px;
  background: var(--ivory);
}

/* Concept */
.concept__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  column-gap: 9vw;
}

.concept .section-head {
  margin-bottom: 78px;
}

.concept__body {
  padding-top: 52px;
  border-top: 1px solid var(--gold);
}

.concept__body p {
  margin-bottom: 1.5em;
}

.concept__points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.concept__points article,
.meaning-grid article {
  position: relative;
  min-height: 300px;
  padding: 48px 38px;
  border-right: 1px solid var(--line-light);
}

.concept__points article:last-child,
.meaning-grid article:last-child {
  border-right: 0;
}

.point-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(103, 29, 24, 0.28);
  font-family: var(--font-display);
  font-size: 3.2rem;
}

.concept__points h3,
.meaning-grid h3 {
  max-width: 12em;
  margin-bottom: 20px;
}

.concept__points p:last-child,
.meaning-grid p:last-child {
  margin-bottom: 0;
}

/* Base cards */
.bases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.base-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--burnt-wood);
}

.base-card--featured {
  grid-row: span 2;
  min-height: 760px;
}

.base-card__image {
  object-fit: cover;
  transition: transform 1.1s ease;
}

.base-card:hover .base-card__image {
  transform: scale(1.025);
}

.base-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 9, 8, 0.96) 0%, rgba(10, 9, 8, 0.45) 58%, rgba(10, 9, 8, 0.16) 100%),
    linear-gradient(90deg, rgba(103, 29, 24, 0.25), transparent 60%);
}

.base-card.no-image .base-card__shade {
  background:
    linear-gradient(140deg, rgba(183, 154, 91, 0.14), transparent 46%),
    linear-gradient(to top, rgba(10, 9, 8, 0.75), rgba(43, 27, 19, 0.45));
}

.base-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
  padding: 32px;
}

.base-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.base-card__number,
.base-card__themes {
  font-family: var(--font-latin);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
}

.base-card__themes {
  margin-bottom: 14px;
  color: var(--gold);
}

.base-card h3 {
  max-width: 12em;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.06em;
}

.base-card__location {
  color: var(--gold);
}

.base-card__summary {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(242, 235, 221, 0.88);
}

.base-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.base-card__meta dt {
  color: var(--muted);
  font-size: 0.7rem;
}

.base-card__meta dd {
  margin: 0;
  font-size: 0.8rem;
}

/* Aging */
.growing-feature,
.aging-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--burgundy);
}

.growing-feature {
  min-height: 730px;
}

.growing-feature__veil,
.aging-section__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.9) 0%, rgba(10, 9, 8, 0.68) 52%, rgba(10, 9, 8, 0.45) 100%),
    linear-gradient(to top, rgba(43, 27, 19, 0.72), transparent 45%);
}

.growing-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9vw;
  align-items: center;
  min-height: 730px;
  padding-block: 100px;
}

.growing-feature .section-head {
  margin-bottom: 48px;
}

.growing-feature__list,
.growing-list,
.works-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.growing-feature__list li,
.growing-list li,
.works-list li {
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.growing-feature__list li > div,
.growing-list li > div,
.works-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.growing-feature__list strong,
.growing-list strong,
.works-list strong {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 400;
}

.growing-feature__list p,
.growing-list p {
  margin: 10px 0 0;
  color: rgba(242, 235, 221, 0.78);
  font-size: 0.88rem;
}

.aging-counter {
  max-width: 720px;
}

.aging-counter__state {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1rem;
}

.aging-counter__day,
.aging-counter__pending {
  margin-bottom: 25px;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.07em;
}

.aging-counter__day {
  font-family: var(--font-display);
}

.aging-counter__prefix {
  font-size: 0.65em;
}

.aging-counter__slash {
  color: var(--gold);
}

.aging-counter__track {
  height: 12px;
  padding: 3px;
  border: 1px solid rgba(242, 235, 221, 0.6);
}

.aging-counter__track span {
  display: block;
  width: var(--pct);
  height: 100%;
  background: var(--ivory);
  transition: width 0.6s ease;
}

.aging-counter--not-started .aging-counter__track span,
.aging-counter--scheduled .aging-counter__track span {
  width: 0;
}

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.journal-card {
  min-width: 0;
}

.journal-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.journal-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--burnt-wood);
}

.journal-card__picture,
.journal-card__image {
  width: 100%;
  height: 100%;
}

.journal-card__image {
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 0.45s ease, transform 0.8s ease;
}

.journal-card__link:hover .journal-card__image {
  filter: saturate(1);
  transform: scale(1.025);
}

.journal-card__index {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  color: var(--ivory);
  background: rgba(10, 9, 8, 0.8);
  font-family: var(--font-latin);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.journal-card__body {
  padding-top: 24px;
}

.journal-card__meta {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: 0.72rem;
}

.section--dark .journal-card__meta {
  color: var(--gold);
}

.journal-card__meta time {
  font-family: var(--font-latin);
  letter-spacing: 0.12em;
}

.journal-card h3 {
  margin-bottom: 16px;
}

.journal-card__body > p:not(.journal-card__meta) {
  margin-bottom: 24px;
  color: #4c4039;
}

.section--dark .journal-card__body > p:not(.journal-card__meta) {
  color: rgba(242, 235, 221, 0.78);
}

/* Membership preview */
.membership-preview {
  background:
    linear-gradient(120deg, rgba(103, 29, 24, 0.22), transparent 38%),
    var(--burnt-wood);
}

.membership-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.1fr);
  gap: 8vw;
  align-items: start;
}

.plan-teasers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}

.plan-teaser {
  min-height: 410px;
  padding: 44px 34px;
}

.plan-teaser + .plan-teaser {
  border-left: 1px solid var(--line-dark);
}

.plan-teaser__name {
  color: var(--gold);
  font-family: var(--font-latin);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.plan-teaser__price {
  margin: 46px 0 0;
  font-size: 2rem;
}

.plan-teaser__note {
  color: var(--muted);
  font-size: 0.78rem;
}

/* Events and coming */
.event-preview,
.event-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--burgundy);
}

.event-preview {
  min-height: 590px;
}

.event-preview__veil,
.event-section__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.52) 58%, rgba(10, 9, 8, 0.34)),
    linear-gradient(to top, rgba(103, 29, 24, 0.45), transparent);
}

.event-preview__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.65fr auto;
  gap: 6vw;
  align-items: center;
  min-height: 590px;
  padding-block: 90px;
}

.event-preview h2 {
  margin: 0;
}

.event-preview__facts {
  padding-left: 30px;
  border-left: 1px solid var(--gold);
}

.event-preview__facts p {
  margin-bottom: 8px;
}

.event-date {
  color: var(--gold);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.coming__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  column-gap: 8vw;
}

.coming .section-head {
  margin-bottom: 0;
}

.theme-ideas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.theme-ideas li {
  display: flex;
  flex-direction: column;
  min-height: 140px;
  padding: 26px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.theme-ideas li:nth-child(even) {
  border-right: 0;
}

.theme-ideas span,
.theme-ideas strong {
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.theme-ideas small {
  margin-top: auto;
  font-size: 0.82rem;
}

.coming__property {
  grid-column: 2;
  margin-top: 44px;
  padding: 36px;
  border-left: 3px solid var(--burgundy);
  background: rgba(183, 154, 91, 0.1);
}

.coming__property p {
  margin-bottom: 24px;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    linear-gradient(110deg, rgba(103, 29, 24, 0.88), rgba(43, 27, 19, 0.92)),
    var(--burnt-wood);
}

.cta-band__glow {
  position: absolute;
  top: -180px;
  left: 58%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(183, 154, 91, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(183, 154, 91, 0.09) inset;
}

.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  min-height: 360px;
  padding-block: 70px;
}

.cta-band h2 {
  margin-bottom: 18px;
}

.cta-band p:last-child {
  max-width: 780px;
  margin-bottom: 0;
}

/* Bases listing */
.region-block + .region-block {
  margin-top: 110px;
}

.region-block > header {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-bottom: 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.region-block > header p,
.region-block > header h2 {
  margin: 0;
}

.bases-grid--listing .base-card--featured {
  grid-row: auto;
  grid-column: span 2;
  min-height: 660px;
}

.info-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9vw;
}

.status-guide {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.status-guide li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.status-guide .status {
  color: var(--ink);
  background: rgba(43, 27, 19, 0.08);
  border-color: var(--line-light);
}

.status-guide .status__en {
  color: #5f554f;
}

.status-guide p {
  margin: 0;
}

.theme-ideas--compact {
  border-color: var(--line-light);
}

/* Base page */
.base-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--burnt-wood);
}

.base-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.86) 0%, rgba(10, 9, 8, 0.52) 48%, rgba(10, 9, 8, 0.13) 75%),
    linear-gradient(to top, rgba(10, 9, 8, 0.82), transparent 54%);
}

.base-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 820px) 1fr auto;
  min-height: 100svh;
  padding-block: clamp(150px, 18vh, 210px) clamp(64px, 8vh, 90px);
}

.base-hero__title {
  align-self: end;
}

.base-hero h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 8vw, 8.5rem);
  font-weight: 400;
  line-height: 0.75;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.base-hero__theme {
  margin-bottom: 24px;
  font-family: var(--font-latin);
  font-size: 0.82rem;
  letter-spacing: 0.35em;
}

.base-hero__sub,
.base-hero__place {
  margin-bottom: 6px;
}

.base-hero__en {
  max-width: 34em;
  margin: 24px 0;
  color: rgba(242, 235, 221, 0.8);
  font-family: var(--font-latin);
  font-size: 0.65rem;
  line-height: 1.8;
  letter-spacing: 0.24em;
}

.base-hero__vertical {
  align-self: center;
  justify-self: end;
}

.base-hero .scroll-mark {
  align-self: end;
}

.anchor-nav {
  position: sticky;
  z-index: 30;
  top: 74px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(10, 9, 8, 0.96);
  scrollbar-width: none;
}

.anchor-nav::-webkit-scrollbar {
  display: none;
}

.anchor-nav .shell {
  display: flex;
  width: max-content;
  min-width: var(--shell);
  justify-content: center;
  gap: 38px;
}

.anchor-nav a {
  display: block;
  padding: 15px 0;
  color: rgba(242, 235, 221, 0.8);
  font-size: 0.72rem;
  white-space: nowrap;
  text-decoration: none;
}

.anchor-nav a:hover {
  color: var(--gold);
}

.aging-section__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 7vw;
  padding-block: clamp(90px, 10vw, 150px);
}

.aging-story {
  align-self: start;
  padding: 32px 0 0 36px;
  border-left: 1px solid var(--gold);
}

.aging-story p {
  margin-bottom: 1.25em;
}

.aging-story__lead {
  font-size: 1.35rem;
}

.facts-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.facts-grid > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.facts-grid dt {
  color: var(--gold);
  font-size: 0.76rem;
}

.facts-grid dt span {
  display: block;
  font-family: var(--font-latin);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.facts-grid dd {
  margin: 0;
}

.aging-facts {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 54px;
}

.aging-facts > div {
  grid-template-columns: 150px 1fr;
  padding-right: 34px;
}

.aging-facts > div:nth-child(even) {
  padding-left: 34px;
  padding-right: 0;
  border-left: 1px solid var(--line-dark);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pillar-card {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--burnt-wood);
}

.pillar-card__media,
.pillar-card__veil {
  position: absolute;
  inset: 0;
}

.pillar-card__veil {
  background: linear-gradient(to top, rgba(10, 9, 8, 0.98) 0%, rgba(10, 9, 8, 0.62) 52%, rgba(10, 9, 8, 0.08) 100%);
}

.pillar-card__body {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 40px 32px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.3vw, 3.7rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.pillar-card__sub {
  color: var(--gold);
}

.pillar-card__body > p:not(.pillar-card__sub) {
  color: rgba(242, 235, 221, 0.86);
}

.table-scene {
  position: relative;
  min-height: min(84vw, 920px);
  overflow: hidden;
  color: var(--ivory);
  background: var(--burnt-wood);
}

.table-scene__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.86), rgba(10, 9, 8, 0.38) 55%, rgba(10, 9, 8, 0.18));
}

.table-scene__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 70px;
  align-items: center;
  min-height: min(84vw, 920px);
  padding-block: 90px;
}

.table-scene__content > div {
  max-width: 660px;
}

.table-scene h2 {
  margin-bottom: 28px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.table-scene__lead {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.garin-frame {
  align-self: end;
  width: 170px;
  margin: 0 0 20px;
  padding: 9px 9px 13px;
  border: 1px solid rgba(242, 235, 221, 0.4);
  background: rgba(10, 9, 8, 0.62);
}

.garin-frame__image {
  width: 100%;
}

.garin-frame figcaption {
  margin-top: 8px;
  color: rgba(242, 235, 221, 0.75);
  font-size: 0.72rem;
  text-align: center;
}

.works {
  background:
    linear-gradient(120deg, rgba(103, 29, 24, 0.18), transparent 44%),
    var(--burnt-wood);
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9vw;
}

.event-section__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 620px;
  padding-block: 100px;
}

.event-section__head > div {
  align-self: end;
}

.event-section__head .vertical-copy {
  align-self: center;
}

.event-section__details {
  position: relative;
  z-index: 1;
  padding-block: 78px;
  border-top: 1px solid var(--line-dark);
  background: rgba(10, 9, 8, 0.88);
}

.event-section__details .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 7vw;
}

.event-facts dd ul {
  margin-bottom: 0;
}

.event-notes {
  padding: 30px;
  border: 1px solid var(--line-dark);
  background: rgba(103, 29, 24, 0.2);
}

.lined-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lined-list li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(154, 146, 136, 0.28);
}

.lined-list li::before {
  position: absolute;
  top: 1.75em;
  left: 1px;
  width: 7px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.event-notes .button {
  width: 100%;
  margin-top: 36px;
}

.section-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.section-head-row .status {
  color: var(--ink);
  border-color: var(--line-light);
  background: rgba(43, 27, 19, 0.08);
}

.section-head-row .status__en {
  color: #5f554f;
}

.info-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-color: var(--line-light);
}

.info-facts > div {
  border-color: var(--line-light);
}

.info-facts > div:nth-child(odd) {
  padding-right: 34px;
}

.info-facts > div:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line-light);
}

.notices {
  max-width: 920px;
  margin-top: 70px;
  padding: 34px;
  border-left: 3px solid var(--burgundy);
  background: rgba(103, 29, 24, 0.06);
}

/* Membership */
.notice-strip {
  padding-block: 30px;
  border-block: 1px solid rgba(183, 154, 91, 0.4);
  color: var(--ivory);
  background: var(--burgundy);
}

.notice-strip p {
  margin: 0;
  text-align: center;
}

.meaning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line-light);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.plan-card {
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid var(--line-dark);
  background: rgba(43, 27, 19, 0.5);
}

.plan-card--founding {
  border-color: rgba(183, 154, 91, 0.65);
  background: linear-gradient(145deg, rgba(103, 29, 24, 0.5), rgba(43, 27, 19, 0.65));
}

.plan-card header {
  min-height: 360px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.plan-card__price {
  margin: 46px 0 0;
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.25;
}

.plan-card__price-note,
.plan-card__limit {
  color: var(--muted);
  font-size: 0.8rem;
}

.plan-card section {
  margin-top: 46px;
}

.plan-card section h3 {
  font-size: 1.15rem;
}

.plan-card__caution {
  padding: 25px;
  border: 1px solid rgba(183, 154, 91, 0.25);
}

.plan-card > .button {
  width: 100%;
  margin-top: 44px;
}

.later__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 9vw;
}

.later .section-head {
  margin: 0;
}

.member-notes {
  background: var(--burnt-wood);
}

/* Categories / articles */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.category-grid li {
  position: relative;
  min-height: 240px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.category-grid li:nth-child(3n) {
  border-right: 0;
}

.category-grid h2 {
  max-width: 8em;
  font-size: 1.4rem;
}

.category-count {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(103, 29, 24, 0.35);
  font-family: var(--font-display);
  font-size: 2.8rem;
}

.category-grid li > p:last-child:not(.eyebrow) {
  margin: 36px 0 0;
  color: #5c4d44;
  font-size: 0.86rem;
}

.article-head {
  padding: clamp(170px, 18vw, 250px) 0 110px;
}

.article-head__inner {
  width: var(--narrow);
}

.article-head__meta {
  display: flex;
  gap: 22px;
  color: var(--burgundy);
  font-size: 0.78rem;
}

.article-head__meta time {
  font-family: var(--font-latin);
  letter-spacing: 0.13em;
}

.article-head h1 {
  max-width: 12em;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
}

.article-head__inner > p:last-child {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: 1.08rem;
}

.article-hero {
  position: relative;
  z-index: 1;
  width: var(--narrow);
  margin-top: -54px;
}

.article-hero__picture,
.article-hero__image {
  width: 100%;
}

.article-hero__picture {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--burnt-wood);
}

.article-hero__image {
  height: 100%;
  object-fit: cover;
}

.article-body {
  width: min(100% - 64px, 760px);
  margin: 0 auto;
  padding-block: 100px 140px;
}

.article-body > p,
.article-body > ul {
  margin-bottom: 2em;
}

.article-body h2 {
  margin: 2.3em 0 1em;
  padding-bottom: 0.45em;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.article-body figure {
  margin: 60px -80px;
}

.article-body__picture,
.article-body__image {
  width: 100%;
}

.article-body figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-back {
  margin-top: 80px;
}

/* About */
.about-visual {
  position: relative;
  min-height: 780px;
  background: var(--burnt-wood);
}

.about-visual__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.42) 72%, rgba(10, 9, 8, 0.16));
}

.about-visual__copy {
  position: relative;
  z-index: 1;
  width: min(var(--shell), 720px);
  margin-left: max(32px, calc((100vw - min(100vw - 64px, 1360px)) / 2));
  padding-block: 130px;
}

.about-visual__copy p {
  margin-bottom: 1.7em;
  font-size: 1.08rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.78fr;
  gap: 10vw;
}

.editorial-grid .section-head {
  margin: 0;
}

.editorial-grid p {
  margin-bottom: 1.5em;
}

.operator-table {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-color: var(--line-light);
}

.operator-table > div {
  border-color: var(--line-light);
}

.operator-table > div:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line-light);
}

.operator-table a {
  overflow-wrap: anywhere;
}

/* FAQ */
.faq-groups {
  width: var(--narrow);
}

.faq-group {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 6vw;
  padding-block: 66px;
  border-top: 1px solid var(--line-light);
}

.faq-group:last-child {
  border-bottom: 1px solid var(--line-light);
}

.faq-group h2 {
  font-size: 1.5rem;
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 22px 50px 22px 0;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--burgundy);
  font-family: var(--font-latin);
  font-size: 1.5rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 50px 26px 24px;
  border-left: 1px solid var(--gold);
}

.faq-list--compact details {
  border-color: var(--line-dark);
}

.faq-list--compact summary::after {
  color: var(--gold);
}

/* Form */
.form-shell {
  width: min(100% - 64px, 860px);
}

.register-form {
  padding: clamp(30px, 6vw, 70px);
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 240, 0.52);
}

.field-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  margin: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
}

.field-row label,
.field-row legend {
  padding: 0;
  font-weight: 500;
}

.field-row small {
  margin-left: 8px;
  color: var(--burgundy);
  font-size: 0.68rem;
}

.field-row input,
.field-row textarea {
  width: 100%;
  border: 1px solid rgba(43, 27, 19, 0.34);
  border-radius: 0;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
}

.field-row textarea {
  resize: vertical;
}

.choices {
  display: grid;
  gap: 12px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  cursor: pointer;
}

.choice input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 6px;
  accent-color: var(--burgundy);
}

.choice--agree {
  margin-top: 32px;
}

.field-error,
.form-result--error {
  color: #8b1712;
}

.field-error {
  grid-column: 2;
  margin: 10px 0 0;
}

.form-note {
  margin: 24px 0;
  color: #594c44;
  font-size: 0.82rem;
}

.button--submit {
  min-width: 280px;
  margin-top: 18px;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.55;
}

.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-result {
  padding: 54px;
  border: 1px solid var(--gold);
  background: rgba(183, 154, 91, 0.08);
}

/* Messages / legal */
.message-page {
  display: grid;
  place-items: center;
  min-height: 80svh;
  padding: 150px 32px 100px;
}

.message-page__inner {
  width: min(100%, 800px);
  text-align: center;
}

.message-page__inner h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.message-page__inner .button {
  margin-top: 30px;
}

.legal-copy {
  width: min(100% - 64px, 820px);
  margin-inline: auto;
}

.legal-copy section {
  padding: 42px 0;
  border-top: 1px solid var(--line-light);
}

.legal-copy section:last-child {
  border-bottom: 1px solid var(--line-light);
}

.legal-copy h2 {
  font-size: 1.4rem;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav__links {
    gap: 18px;
  }

  .event-preview__inner {
    grid-template-columns: 1fr 0.7fr;
  }

  .event-preview__inner .button {
    grid-column: 2;
  }

  .pillar-card {
    min-height: 630px;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-height: 76px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 76px;
    padding: 12px 24px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 26px auto;
    gap: 2px 10px;
    align-items: center;
    border: 0;
    padding: 8px;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle__line {
    grid-column: 1;
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .nav-toggle__text {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 0.7rem;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
    transform: translateY(2px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    transform: translateY(-1px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 32px 48px;
    visibility: hidden;
    opacity: 0;
    background:
      linear-gradient(140deg, rgba(103, 29, 24, 0.45), transparent 45%),
      rgba(10, 9, 8, 0.985);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav__links {
    flex-direction: column;
    gap: 16px;
  }

  .site-nav__link {
    font-size: 1.15rem;
  }

  .site-nav__en {
    font-size: 0.62rem;
  }

  .button--header {
    margin-top: 18px;
  }

  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero__inner,
  .concept__grid,
  .membership-preview__grid,
  .coming__grid,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__lead {
    grid-column: 1;
    grid-row: auto;
    max-width: 720px;
    margin-top: 42px;
  }

  .concept__body {
    padding-top: 0;
    border-top: 0;
  }

  .concept__points {
    margin-top: 70px;
  }

  .membership-preview__grid,
  .coming__grid {
    gap: 70px;
  }

  .coming__property {
    grid-column: 1;
    margin-top: 0;
  }

  .growing-feature__inner,
  .aging-section__content {
    gap: 6vw;
  }

  .event-preview__inner {
    grid-template-columns: 1fr 1fr;
  }

  .event-preview__inner .button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .pillar-card__body {
    padding: 30px 24px;
  }

  .pillar-card__body > p:not(.pillar-card__sub) {
    font-size: 0.9rem;
  }

  .event-section__details .shell {
    grid-template-columns: 1fr;
  }

  .article-body figure {
    margin-inline: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 40px);
    --narrow: calc(100% - 40px);
    --section-space: 88px;
  }

  body {
    font-size: 16px;
    line-height: 1.9;
  }

  h1,
  h2,
  h3 {
    letter-spacing: 0.07em;
  }

  .brand__name {
    font-size: 1rem;
  }

  .brand__byline {
    margin-top: 6px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .button-row {
    flex-direction: column;
  }

  .button--line,
  .button--text {
    width: fit-content;
  }

  .section-head {
    margin-bottom: 48px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .vertical-copy {
    font-size: 1.15rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    writing-mode: horizontal-tb;
  }

  .footer {
    padding-top: 64px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer__line {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    margin-top: 52px;
  }

  .footer__copyright {
    white-space: normal;
  }

  .footer__brand .footer__tagline-en,
  .footer__image-note,
  .footer__copyright,
  .base-hero__en {
    font-size: 16px;
  }

  .page-hero {
    padding: 138px 0 74px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }

  .page-hero__lead {
    margin-top: 28px;
    padding-top: 20px;
  }

  .home-hero__overlay,
  .base-hero__shade {
    background:
      linear-gradient(to top, rgba(10, 9, 8, 0.95) 0%, rgba(10, 9, 8, 0.42) 67%, rgba(10, 9, 8, 0.5) 100%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.36), transparent);
  }

  .home-hero__content,
  .base-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: 120px 0 44px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .home-hero__lead {
    font-size: 1rem;
  }

  .home-hero .vertical-copy,
  .base-hero__vertical {
    align-self: stretch;
    order: -1;
    max-height: none;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(242, 235, 221, 0.35);
  }

  .scroll-mark {
    display: none;
  }

  .concept .section-head {
    margin-bottom: 38px;
  }

  .concept__points,
  .meaning-grid {
    grid-template-columns: 1fr;
  }

  .concept__points article,
  .meaning-grid article {
    min-height: 0;
    padding: 42px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .bases-grid,
  .bases-grid--listing,
  .journal-grid,
  .plans-grid,
  .plan-teasers,
  .pillar-grid,
  .works__grid,
  .info-pair,
  .category-grid,
  .operator-table,
  .info-facts {
    grid-template-columns: 1fr;
  }

  .base-card,
  .base-card--featured,
  .bases-grid--listing .base-card--featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 600px;
  }

  .base-card__content {
    padding: 24px 20px;
  }

  .base-card h3 {
    font-size: 2.8rem;
  }

  .base-card__meta {
    grid-template-columns: 1fr;
  }

  .growing-feature {
    min-height: 0;
  }

  .growing-feature__inner,
  .aging-section__content {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 64px;
    padding-block: 86px;
  }

  .growing-feature__veil,
  .aging-section__veil {
    background: rgba(10, 9, 8, 0.76);
  }

  .aging-counter__day,
  .aging-counter__pending {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .journal-card__body > p:not(.journal-card__meta),
  .pillar-card__body > p:not(.pillar-card__sub),
  .growing-feature__list p,
  .growing-list p {
    font-size: 16px;
  }

  .plan-teaser {
    min-height: 0;
  }

  .plan-teaser + .plan-teaser {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .event-preview__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    min-height: 650px;
    gap: 34px;
  }

  .event-preview__facts {
    padding: 20px 0 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .event-preview__inner .button {
    width: 100%;
  }

  .theme-ideas {
    grid-template-columns: 1fr;
  }

  .theme-ideas li,
  .theme-ideas li:nth-child(even) {
    min-height: 120px;
    border-right: 0;
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 430px;
  }

  .region-block + .region-block {
    margin-top: 78px;
  }

  .status-guide li {
    grid-template-columns: 1fr;
  }

  .base-hero h1 {
    font-size: clamp(2.6rem, 14vw, 5.4rem);
    line-height: 0.82;
  }

  .base-hero__title {
    width: 100%;
  }

  .base-hero__theme {
    letter-spacing: 0.18em;
  }

  .anchor-nav {
    position: relative;
    top: auto;
    overflow: visible;
  }

  .anchor-nav .shell {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: var(--shell);
    min-width: 0;
    margin-inline: auto;
    gap: 0;
  }

  .anchor-nav a {
    padding: 11px 6px;
    border-right: 1px solid var(--line-dark);
    text-align: center;
    white-space: normal;
  }

  .anchor-nav a:nth-child(3n) {
    border-right: 0;
  }

  .aging-story {
    padding: 24px 0 0;
    border-top: 1px solid var(--gold);
    border-left: 0;
  }

  .aging-facts {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .aging-facts > div,
  .aging-facts > div:nth-child(even),
  .facts-grid > div,
  .info-facts > div:nth-child(odd),
  .info-facts > div:nth-child(even),
  .operator-table > div:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
    border-left: 0;
  }

  .pillar-card {
    min-height: 650px;
  }

  .table-scene,
  .table-scene__content {
    min-height: 780px;
  }

  .table-scene__veil {
    background: linear-gradient(to top, rgba(10, 9, 8, 0.96), rgba(10, 9, 8, 0.34) 78%);
  }

  .table-scene__content {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 38px;
    padding-block: 64px;
  }

  .garin-frame {
    justify-self: end;
    width: 120px;
    margin: 0;
  }

  .event-section__head {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 680px;
    padding-block: 72px;
  }

  .event-section__head .vertical-copy {
    order: -1;
    margin-bottom: 40px;
  }

  .event-notes,
  .notices {
    padding: 24px 20px;
  }

  .section-head-row {
    flex-direction: column;
  }

  .plan-card {
    padding: 34px 22px;
  }

  .plan-card header {
    min-height: 0;
  }

  .later__grid,
  .faq-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .category-grid li,
  .category-grid li:nth-child(3n) {
    border-right: 0;
  }

  .article-head {
    padding: 140px 0 88px;
  }

  .article-hero {
    margin-top: -36px;
  }

  .article-hero__picture {
    aspect-ratio: 4 / 3;
  }

  .article-body {
    width: calc(100% - 40px);
    padding-block: 72px 100px;
  }

  .about-visual {
    min-height: 0;
  }

  .about-visual__copy {
    width: calc(100% - 40px);
    margin-inline: auto;
    padding-block: 88px;
  }

  .about-visual__veil {
    background: rgba(10, 9, 8, 0.76);
  }

  .faq-groups {
    width: var(--shell);
  }

  .faq-group {
    padding-block: 48px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .faq-list details p {
    padding-right: 0;
    padding-left: 18px;
  }

  .form-shell,
  .legal-copy {
    width: calc(100% - 40px);
  }

  .register-form {
    padding: 30px 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .field-error {
    grid-column: 1;
  }

  .button--submit {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* 見出しの折り返しを読点・句点の位置にそろえる(tools/lib.mjs の nb) */
.nb {
  display: inline-block;
}

/* 日本語の見出しは文節で折り返す(対応ブラウザのみ。非対応でも .nb で読点ごとには折り返る) */
h1,
h2,
h3,
.footer__line,
.button {
  word-break: auto-phrase;
  overflow-wrap: anywhere;
}
