:root {
  --green-950: #0c2c24;
  --green-900: #12382d;
  --green-800: #194a3b;
  --green-700: #2d6552;
  --green-500: #6a987b;
  --green-200: #c9dacb;
  --paper: #f4f0e6;
  --paper-deep: #e9e2d3;
  --ink: #17362d;
  --ink-soft: #50625a;
  --gold: #d2a85f;
  --gold-light: #ead7ad;
  --rose: #c18176;
  --white: #fffef9;
  --line: rgba(23, 54, 45, 0.18);
  --shadow: 0 24px 80px rgba(12, 44, 36, 0.12);
  --radius-large: 2.25rem;
  --radius-medium: 1.5rem;
  --max-width: 1240px;
  --side-padding: clamp(1.25rem, 4vw, 4rem);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid #f1c36f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--green-950);
  background: var(--white);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  min-width: 320px;
  overflow: clip;
}

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) var(--side-padding);
}

.section-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
}

.eyebrow-dark {
  color: var(--green-700);
}

.eyebrow-gold {
  color: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition:
    color 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(244, 240, 230, 0.92);
  box-shadow: 0 1px 0 rgba(23, 54, 45, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1440px);
  min-height: 5.75rem;
  margin-inline: auto;
  padding: 0 var(--side-padding);
}

.brand {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  z-index: 2;
}

.brand-mark {
  position: relative;
  display: block;
  width: 2.7rem;
  height: 2.7rem;
}

.brand-mark span {
  position: absolute;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.85;
}

.brand-mark span:nth-child(1) {
  top: 0;
  left: 0.55rem;
}

.brand-mark span:nth-child(2) {
  bottom: 0.15rem;
  left: 0;
}

.brand-mark span:nth-child(3) {
  right: 0;
  bottom: 0.15rem;
}

.brand-copy {
  display: grid;
  line-height: 1.25;
}

.brand-copy small {
  margin-bottom: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.global-nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2.25rem);
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.global-nav > a:not(.nav-contact) {
  position: relative;
  padding: 0.8rem 0;
}

.global-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.global-nav > a:not(.nav-contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 0.7rem 1.15rem;
  color: var(--green-950);
  background: var(--white);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-contact,
.site-header.is-menu-open .nav-contact {
  color: var(--white);
  background: var(--green-900);
}

.menu-button {
  display: none;
  width: 3.3rem;
  height: 3.3rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-button-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  color: var(--white);
  background:
    radial-gradient(circle at 74% 48%, rgba(102, 153, 124, 0.28), transparent 27%),
    linear-gradient(128deg, var(--green-950) 0%, #143b30 48%, #235543 100%);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -21vw;
  z-index: -1;
  width: 62vw;
  height: 42vw;
  background: rgba(209, 173, 105, 0.1);
  border-radius: 50% 50% 0 0;
  content: "";
  transform: rotate(-12deg);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orb-one {
  top: 12%;
  right: 3%;
  width: clamp(24rem, 46vw, 49rem);
  aspect-ratio: 1;
}

.orb-two {
  top: 27%;
  right: 11%;
  width: clamp(16rem, 31vw, 33rem);
  aspect-ratio: 1;
}

.orb-three {
  top: -12rem;
  left: -8rem;
  width: 25rem;
  height: 25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 0;
}

.light-line {
  position: absolute;
  width: 1px;
  height: 55%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(24deg);
}

.line-one {
  top: -10%;
  left: 42%;
}

.line-two {
  right: 22%;
  bottom: -7%;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: 4rem;
  align-items: center;
  width: min(100%, var(--max-width));
  min-height: 100%;
  margin-inline: auto;
  padding: 9.5rem var(--side-padding) 6rem;
}

.hero-copy {
  max-width: 47rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-lead {
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  letter-spacing: 0.05em;
  line-height: 2.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 3rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.button-light:hover {
  background: var(--gold-light);
}

.button-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.button-outline-light:hover {
  color: var(--green-950);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.9);
}

.hero-symbol {
  display: grid;
  place-items: center;
}

.symbol-rings {
  position: relative;
  width: min(39vw, 31rem);
  min-width: 22rem;
  aspect-ratio: 1;
}

.ring {
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  backdrop-filter: blur(2px);
}

.ring span {
  position: absolute;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.ring-a {
  top: 3%;
  left: 23%;
  background: rgba(141, 171, 144, 0.16);
}

.ring-a span {
  top: 16%;
  left: 45%;
}

.ring-b {
  bottom: 8%;
  left: 2%;
  background: rgba(224, 196, 143, 0.12);
}

.ring-b span {
  bottom: 18%;
  left: 18%;
}

.ring-c {
  right: 2%;
  bottom: 8%;
  background: rgba(186, 121, 113, 0.12);
}

.ring-c span {
  right: 18%;
  bottom: 18%;
}

.symbol-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 26%;
  aspect-ratio: 1;
  place-items: center;
  color: var(--green-950);
  background: var(--gold-light);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
}

.hero-foot {
  position: absolute;
  bottom: 2.25rem;
  left: var(--side-padding);
  display: flex;
  gap: 1rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.hero-foot i {
  display: block;
  width: 4.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-foot i::after {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-120%); }
  65%, 100% { transform: translateX(300%); }
}

.section-intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(20rem, 1.2fr);
  gap: clamp(3rem, 10vw, 9rem);
}

.section-heading h2,
.life-heading h2,
.guide-heading h2,
.documents-copy h2,
.access-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.intro-copy {
  max-width: 43rem;
  padding-top: 2.3rem;
}

.intro-copy p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

.intro-copy .intro-emphasis {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.9;
}

.intro-copy .text-link {
  margin-top: 1.25rem;
}

.landscape-panel {
  position: relative;
  width: min(calc(100% - (2 * var(--side-padding))), var(--max-width));
  min-height: clamp(23rem, 48vw, 38rem);
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  overflow: hidden;
  background: linear-gradient(160deg, #dce0cf, #b7c8b0 55%, #d4c39e);
  border-radius: var(--radius-large);
  isolation: isolate;
}

.landscape-panel::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.landscape-copy {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  left: clamp(2rem, 5vw, 4rem);
  z-index: 5;
  display: grid;
  color: var(--green-950);
}

.landscape-copy span {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.landscape-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 500;
}

.hill {
  position: absolute;
  right: -8%;
  bottom: -28%;
  left: -8%;
  border-radius: 50% 50% 0 0;
}

.hill-one {
  z-index: 3;
  height: 56%;
  background: #305e4d;
  transform: rotate(-4deg);
}

.hill-two {
  right: 22%;
  bottom: -18%;
  left: -18%;
  z-index: 2;
  height: 73%;
  background: #63856b;
  transform: rotate(9deg);
}

.hill-three {
  right: -20%;
  bottom: -9%;
  left: 44%;
  z-index: 1;
  height: 72%;
  background: #8fa483;
  transform: rotate(-13deg);
}

.sun {
  position: absolute;
  top: 16%;
  right: 19%;
  width: clamp(5rem, 10vw, 9rem);
  aspect-ratio: 1;
  background: rgba(240, 215, 160, 0.76);
  border-radius: 50%;
  box-shadow: 0 0 5rem rgba(240, 215, 160, 0.9);
}

.philosophy-section {
  color: var(--white);
  background: var(--green-950);
}

.philosophy-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(255, 255, 255, 0.04) 50%, transparent 50.1%);
  background-size: 7rem 7rem;
  content: "";
  pointer-events: none;
}

.philosophy-head {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.philosophy-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.philosophy-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1.2;
}

.philosophy-head > p:last-child {
  max-width: 28rem;
  margin: 0 0 0.6rem auto;
  color: rgba(255, 255, 255, 0.65);
}

.philosophy-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.value-card {
  position: relative;
  min-height: 30rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
}

.value-card + .value-card {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.value-number {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.value-kanji {
  position: absolute;
  top: 4rem;
  right: -0.06em;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(10rem, 18vw, 18rem);
  line-height: 1;
}

.value-card h3 {
  position: absolute;
  bottom: 8.5rem;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  margin: 0;
}

.value-card h3 span {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 500;
}

.value-card h3 small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.value-card > p:last-child {
  position: absolute;
  right: clamp(2rem, 4vw, 3.5rem);
  bottom: 3rem;
  left: clamp(2rem, 4vw, 3.5rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.88rem;
}

.life-section {
  background: #f8f5ed;
}

.life-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.life-heading > p {
  max-width: 30rem;
  margin: 0 0 0.7rem auto;
  color: var(--ink-soft);
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.life-card {
  position: relative;
  display: grid;
  min-height: 29rem;
  overflow: hidden;
  border-radius: var(--radius-medium);
}

.life-card-large {
  grid-row: span 2;
  min-height: 59.25rem;
}

.tone-green {
  color: var(--white);
  background: #285a49;
}

.tone-sand {
  color: var(--green-950);
  background: #e8d6b3;
}

.tone-rose {
  color: var(--green-950);
  background: #d8ada3;
}

.abstract-visual {
  position: relative;
  overflow: hidden;
}

.life-card-large .abstract-visual {
  min-height: 70%;
}

.life-card:not(.life-card-large) .abstract-visual {
  position: absolute;
  inset: 0 0 0 48%;
}

.abstract-visual::after {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.08'/%3E%3C/svg%3E");
  content: "";
  mix-blend-mode: soft-light;
}

.shape {
  position: absolute;
  display: block;
}

.leaf-a,
.leaf-b {
  width: 44%;
  height: 58%;
  background: #91aa88;
  border-radius: 100% 0 100% 0;
}

.leaf-a {
  top: 5%;
  left: 14%;
  transform: rotate(14deg);
}

.leaf-b {
  right: 4%;
  bottom: 5%;
  background: #d1b272;
  transform: rotate(194deg);
}

.circle-a {
  top: 28%;
  left: 33%;
  width: 42%;
  aspect-ratio: 1;
  background: rgba(255, 254, 249, 0.82);
  border-radius: 50%;
  mix-blend-mode: screen;
}

.plate {
  top: 18%;
  right: 9%;
  width: 71%;
  aspect-ratio: 1;
  background: rgba(255, 254, 249, 0.62);
  border: 1rem solid rgba(255, 254, 249, 0.48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(23, 54, 45, 0.16);
}

.seed {
  z-index: 2;
  width: 18%;
  height: 32%;
  background: var(--green-700);
  border-radius: 100% 0 100% 0;
}

.seed-a {
  top: 39%;
  right: 38%;
  transform: rotate(35deg);
}

.seed-b {
  top: 46%;
  right: 25%;
  background: var(--rose);
  transform: rotate(195deg);
}

.people {
  bottom: 20%;
  width: 24%;
  height: 42%;
  background: var(--green-700);
  border-radius: 50% 50% 42% 42%;
}

.people::before {
  position: absolute;
  top: -32%;
  left: 17%;
  width: 66%;
  aspect-ratio: 1;
  background: inherit;
  border-radius: 50%;
  content: "";
}

.people-a {
  left: 12%;
  transform: rotate(-8deg);
}

.people-b {
  bottom: 13%;
  left: 40%;
  background: #f2d9b7;
  transform: scale(1.18);
}

.people-c {
  right: 8%;
  background: #9b625b;
  transform: rotate(8deg);
}

.life-card-copy {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: clamp(1.7rem, 3vw, 2.7rem);
}

.life-card:not(.life-card-large) .life-card-copy {
  width: 58%;
}

.life-card-copy > span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 0.65;
}

.life-card-copy h3 {
  margin: 0.5rem 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 500;
}

.life-card-copy p {
  max-width: 28rem;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.8;
  opacity: 0.75;
}

.guide-section {
  overflow: hidden;
  color: var(--white);
  background: #1a4336;
}

.guide-orbit {
  position: absolute;
  top: -16rem;
  right: -15rem;
  width: 50rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.guide-orbit i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.guide-orbit i:nth-child(1) { inset: 14%; }
.guide-orbit i:nth-child(2) { inset: 28%; }
.guide-orbit i:nth-child(3) { inset: 42%; background: rgba(210, 168, 95, 0.2); }

.guide-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(22rem, 1.15fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.guide-heading > p:last-child {
  margin: 2.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-steps > li > span {
  color: var(--gold-light);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.guide-steps div {
  display: grid;
}

.guide-steps strong {
  margin-bottom: 0.25rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.guide-steps small {
  color: rgba(255, 255, 255, 0.55);
}

.documents-section {
  background: var(--paper-deep);
}

.documents-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(2rem, 6vw, 6rem);
  background: var(--white);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.documents-panel::before {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 5rem;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.documents-copy > p:not(.eyebrow):not(.documents-note) {
  margin: 2rem 0 0;
  color: var(--ink-soft);
}

.documents-copy .documents-note {
  margin: 1.5rem 0 0;
  color: #6f766f;
  font-size: 0.76rem;
}

.drive-card {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 14rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.16), transparent 30%),
    var(--green-900);
  border-radius: var(--radius-medium);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease;
}

.drive-card:hover {
  box-shadow: 0 1.5rem 3rem rgba(12, 44, 36, 0.25);
  transform: translateY(-6px);
}

.drive-icon {
  position: relative;
  display: block;
  width: 4rem;
  height: 3.5rem;
}

.drive-icon i {
  position: absolute;
  width: 2.3rem;
  height: 0.7rem;
  border-radius: 999px;
  transform-origin: center;
}

.drive-icon i:nth-child(1) {
  top: 0.55rem;
  left: 0.15rem;
  background: #8eb495;
  transform: rotate(-60deg);
}

.drive-icon i:nth-child(2) {
  top: 0.55rem;
  right: 0.15rem;
  background: #ddb46a;
  transform: rotate(60deg);
}

.drive-icon i:nth-child(3) {
  right: 0.85rem;
  bottom: 0.4rem;
  background: #d39285;
}

.drive-card-copy {
  display: grid;
}

.drive-card-copy small {
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}

.drive-card-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
}

.drive-card-copy em {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  font-style: normal;
}

.drive-arrow {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.access-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(8, 30, 25, 0.95), rgba(17, 58, 47, 0.94)),
    var(--green-950);
}

.access-section::after {
  position: absolute;
  top: 12%;
  left: -10rem;
  width: 27rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(255, 255, 255, 0.02),
    0 0 0 8rem rgba(255, 255, 255, 0.015);
  content: "";
}

.access-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(25rem, 1.15fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.access-heading > p:last-child {
  max-width: 31rem;
  margin: 2.2rem 0 0;
  color: rgba(255, 255, 255, 0.63);
}

.phone-link {
  display: grid;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-link small {
  margin-bottom: 0.5rem;
  color: var(--gold-light);
  letter-spacing: 0.06em;
}

.phone-link strong {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.phone-link span {
  justify-self: end;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

.facility-data {
  margin: 2.25rem 0 0;
}

.facility-data > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
}

.facility-data dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

.facility-data dd {
  margin: 0;
  font-size: 0.9rem;
}

.access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.site-footer {
  padding: 4rem var(--side-padding);
  color: var(--ink);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  justify-content: space-between;
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.footer-brand {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-brand p {
  display: grid;
  margin: 0;
  line-height: 1.5;
}

.footer-brand small {
  font-size: 0.65rem;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-meta {
  text-align: right;
}

.footer-meta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  justify-content: flex-end;
  font-size: 0.72rem;
}

.footer-meta p {
  margin: 1.5rem 0 0;
  color: #7b867f;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
}

.prototype-toast {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
  max-width: min(24rem, calc(100vw - 2.5rem));
  padding: 1rem 1.2rem;
  color: var(--white);
  background: var(--green-950);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
}

.prototype-toast[hidden] {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
  }

  .menu-icon {
    position: relative;
    display: block;
    width: 1.6rem;
    height: 1.2rem;
  }

  .menu-icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-icon i:first-child { top: 0.35rem; }
  .menu-icon i:last-child { bottom: 0.35rem; }

  .menu-button[aria-expanded="true"] .menu-icon i:first-child {
    top: 0.58rem;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-icon i:last-child {
    bottom: 0.55rem;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 0;
    padding: 7rem var(--side-padding) 3rem;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a,
  .global-nav .nav-contact {
    padding: 1rem 0;
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    font-weight: 500;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 10rem;
    padding-bottom: 7rem;
  }

  .hero-symbol {
    position: absolute;
    right: -7rem;
    bottom: 2rem;
    opacity: 0.45;
  }

  .intro-grid,
  .guide-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .philosophy-head,
  .life-heading {
    grid-template-columns: 1fr;
  }

  .philosophy-head > p:last-child,
  .life-heading > p {
    margin-left: 0;
  }

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

  .value-card {
    min-height: 18rem;
  }

  .value-card + .value-card {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .value-kanji {
    top: 1rem;
    font-size: 13rem;
  }

  .documents-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --radius-large: 1.45rem;
    --radius-medium: 1.1rem;
  }

  body {
    font-size: 0.95rem;
  }

  .header-inner {
    min-height: 4.8rem;
  }

  .brand-mark {
    width: 2.2rem;
    height: 2.2rem;
  }

  .brand-mark span {
    width: 1.25rem;
    height: 1.25rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-symbol {
    right: -8rem;
    bottom: 3.5rem;
  }

  .symbol-rings {
    min-width: 19rem;
  }

  .hero-foot {
    display: none;
  }

  .landscape-panel {
    min-height: 27rem;
  }

  .landscape-copy {
    right: 2rem;
  }

  .sun {
    top: 32%;
  }

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

  .life-card,
  .life-card-large {
    grid-row: auto;
    min-height: 31rem;
  }

  .life-card-large .abstract-visual,
  .life-card:not(.life-card-large) .abstract-visual {
    position: relative;
    inset: auto;
    min-height: 18rem;
  }

  .life-card:not(.life-card-large) .life-card-copy {
    width: auto;
  }

  .documents-panel::before {
    display: none;
  }

  .drive-card {
    grid-template-columns: 3.5rem 1fr;
    min-height: 12rem;
  }

  .drive-icon {
    width: 3.2rem;
    transform: scale(0.84);
    transform-origin: left center;
  }

  .drive-arrow {
    display: none;
  }

  .phone-link strong {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .facility-data > div {
    grid-template-columns: 5rem 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-meta nav {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
