:root {
  --sky: #d9f2fc;
  --sky-soft: #edf9fd;
  --green: #86aa00;
  --green-dark: #536f12;
  --green-light: #c7e57c;
  --orange: #d9784d;
  --orange-dark: #b85f39;
  --cream: #faf7f2;
  --greige: #f1ede8;
  --ink: #493f3a;
  --muted: #746b66;
  --white: #fff;
  --line: rgba(73, 63, 58, 0.13);
  --shadow: 0 22px 55px rgba(83, 66, 49, 0.13);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", sans-serif;
  --content: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
}

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

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section {
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--ink);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 32px rgba(50, 42, 37, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 40px), 1320px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--green-light);
  border-radius: 46% 54% 56% 44% / 48% 46% 54% 52%;
  color: var(--green-dark);
  font-size: 1.42rem;
  font-weight: 700;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  letter-spacing: 0.1em;
}

.brand-copy span {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
}

.brand-copy strong {
  margin-top: 0.15rem;
  font-size: 1.18rem;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 600;
}

.global-nav a {
  position: relative;
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  position: absolute;
  top: 100%;
  right: -1rem;
  left: -1rem;
  height: 0.85rem;
  content: "";
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-parent::before {
  width: 0;
  height: 0;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  order: 2;
}

.nav-parent::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-parent::after,
.nav-dropdown:focus-within .nav-parent::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  z-index: 3;
  display: grid;
  min-width: 230px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 38px rgba(50, 42, 37, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-submenu a {
  padding: 0.65rem 0.8rem;
  color: #544541;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: #eef5d8;
}

.nav-meta {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

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

.global-nav > a:hover::after,
.global-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--sky);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(239, 251, 255, 0.04) 0%,
    rgba(239, 251, 255, 0.12) 54%,
    rgba(55, 88, 43, 0.2) 100%
  );
  content: "";
  pointer-events: none;
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  position: relative;
  width: min(calc(100% - 48px), var(--content));
  min-height: 100svh;
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding: 82px 0;
}

.hero-copy {
  width: min(100%, 860px);
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-kicker,
.experience-en {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin: 0;
  color: #232323;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.38;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  color: #232323;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.38;
  white-space: nowrap;
}

.hero-lead {
  margin: 3.75rem 0 0;
  color: #232323;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.38;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--orange);
  box-shadow: 0 12px 26px rgba(217, 120, 77, 0.24);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-quiet {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(73, 63, 58, 0.25);
}

.intro {
  padding: 0;
  background: var(--white);
  border-top: 24px solid #88a201;
}

.access-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.intro-grid {
  display: grid;
  width: min(100%, 1366px);
  min-height: clamp(640px, 56.25vw, 768px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
}

.intro-visual {
  position: relative;
}

.visual-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: var(--sky);
}

.visual-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}

.intro-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(5rem, 9.4vw, 8rem) 48px 4rem;
  background: var(--white);
  color: #544541;
}

.intro .section-title {
  display: flex;
  padding: 0;
  margin: 0;
  color: #c7744d;
  flex-direction: column;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.38;
  text-align: center;
}

.intro .section-title::before {
  display: none;
}

.intro-catch {
  margin: 3.75rem 0 0;
  color: #c7744d;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.38;
  text-align: center;
}

.intro-body {
  width: 100%;
  max-width: 575px;
  margin: 5rem auto 0;
  color: #544541;
  font-size: 1.225rem;
  font-weight: 400;
  line-height: 1.38;
  text-align: left;
}

.intro-body p {
  margin: 0;
}

.intro-body p + p {
  margin-top: 1.35em;
}

.vertical-note {
  position: absolute;
  right: -2.5rem;
  bottom: -1.5rem;
  margin: 0;
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}

.section-title {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.section-title::before {
  content: "";
  position: absolute;
  top: 0.2em;
  bottom: 0.2em;
  left: 0;
  width: 4px;
  background: var(--orange);
  border-radius: 999px;
}

.lead-copy {
  margin-top: 2.3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.features {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
  background: var(--white);
}

.section-heading {
  max-width: none;
  margin: 0;
}

.features .section-title {
  padding-left: 1.8rem;
  font-size: clamp(2rem, 3.125vw, 2.666rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

.features .section-title::before {
  top: 0;
  bottom: 0;
  width: 8px;
  border-radius: 0;
}

.feature-grid {
  position: relative;
  display: grid;
  max-width: 950px;
  margin: 4rem auto 0;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.feature-card {
  display: grid;
  padding: 0;
  background: transparent;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 1.5rem;
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: 1 / span 2;
  place-items: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: #79a968;
  stroke: #79a968;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.feature-icon circle {
  stroke: none;
}

.feature-icon circle + path {
  fill: none;
  stroke: var(--white);
  stroke-width: 3.5;
}

.feature-number {
  margin: 1.6rem 0 0.25rem;
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.feature-card h3 {
  margin: 0;
  color: #544541;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.38;
}

.feature-card > p:last-child {
  margin: 0.75rem 0 0;
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.38;
}

.news {
  min-height: clamp(640px, 59.6vw, 814px);
  padding: 7.5rem 0 5rem;
  background: var(--white);
}

.news-inner {
  display: block;
}

.news .section-title {
  padding-left: 1.8rem;
  font-size: clamp(2rem, 3.125vw, 2.666rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.news .section-title::before {
  top: 0;
  bottom: 0;
  width: 8px;
  background: #ffad66;
  border-radius: 0;
}

.news-card {
  display: flex;
  align-items: center;
  max-width: 950px;
  gap: 1.4rem;
  padding: 1.25rem 0;
  margin: 4rem auto 0;
  background: transparent;
  border-top: 1px solid rgba(84, 69, 65, 0.16);
  border-bottom: 1px solid rgba(84, 69, 65, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.news-card p {
  margin: 0;
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.38;
}

.news-status {
  flex: 0 0 auto;
  padding: 0.38rem 0.72rem;
  background: var(--greige);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
}

.experiences {
  position: relative;
  min-height: 768px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.experiences::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 450px;
  background: var(--sky) url("/assets/landscape.jpg") center center / cover no-repeat;
  content: "";
}

.experiences > .container {
  position: relative;
  width: min(100%, 1366px);
  min-height: 768px;
  margin-inline: auto;
}

.experience-text {
  position: absolute;
  top: 360px;
  right: 0;
  width: 72%;
  min-height: 408px;
  padding: 2rem 28px 3rem;
  background: var(--white);
  color: #544541;
}

.experiences .section-title {
  padding: 0;
  font-size: 2.666rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.experiences .section-title::before {
  display: none;
}

.experience-text .lead-copy {
  max-width: none;
  margin: 2rem 0 0;
  color: #544541;
  font-size: 1.225rem;
  font-weight: 400;
  line-height: 1.38;
}

.experience-text > p:last-child {
  max-width: none;
  margin: 1.5rem 0 0;
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.38;
}

.experience-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: 4rem;
}

.experience-heading > p {
  max-width: 28rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.experience-card {
  grid-column: span 6;
  overflow: hidden;
  background: var(--greige);
  border-radius: 22px;
}

.experience-card-coming {
  grid-column: 4 / span 6;
}

.experience-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.experience-card:hover .experience-image img {
  transform: scale(1.035);
}

.experience-image span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.landscape-card img {
  background: var(--sky);
}

.experience-copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.experience-copy h3 {
  margin: 0;
  color: var(--orange-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
}

.experience-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-action {
  margin-top: 3rem;
  text-align: center;
}

.learn {
  position: relative;
  min-height: 768px;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  color: #544541;
}

.learn::before {
  display: none;
}

.learn-landscape {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 450px;
  background: var(--sky) url("/assets/landscape.jpg") center center / cover no-repeat;
}

.learn-inner {
  position: relative;
  display: block;
  width: min(100%, 1366px);
  min-height: 768px;
  margin-inline: auto;
}

.learn-copy {
  position: absolute;
  top: 360px;
  left: 0;
  width: 72%;
  max-width: none;
  min-height: 408px;
  padding: 2rem 28px 3rem;
  background: var(--white);
  color: #544541;
}

.learn h2 {
  margin: 0;
  color: #544541;
  font-size: 2.666rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.learn-lead {
  max-width: none;
  margin: 2rem 0 0;
  color: #544541;
  font-size: 1.225rem;
  font-weight: 400;
  line-height: 1.38;
}

.learn-copy > p:last-child {
  max-width: none;
  margin: 1.5rem 0 0;
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.38;
}

.learn-kanji {
  margin: 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(12rem, 28vw, 25rem);
  line-height: 0.7;
  text-align: right;
}

.access {
  padding: 5rem 0 7rem;
  background: var(--white);
}

.access-simple {
  max-width: var(--content);
}

.access .section-title {
  padding-left: 1.8rem;
  font-size: clamp(2rem, 3.125vw, 2.666rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.access .section-title::before {
  top: 0;
  bottom: 0;
  width: 8px;
  background: #ffad66;
  border-radius: 0;
}

.access-layout {
  display: grid;
  margin-top: 2.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 5rem);
}

.access-details {
  display: grid;
  gap: 1.4rem;
}

.access-group {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}

.access-icon {
  width: 32px;
  height: 32px;
  color: #ffad66;
}

.access-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.access-icon circle {
  fill: var(--white);
}

.access-group h3,
.access-group h4,
.access-group p,
.access-group ul {
  margin: 0;
}

.access-group h3 {
  color: #544541;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.38;
}

.access-group p,
.access-group li,
.access-group a,
.route-block h4 {
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.38;
}

.access-group h3 + p,
.access-group h3 + .route-block {
  margin-top: 0.35rem;
}

.access-group a {
  color: #4d9fe8;
  text-underline-offset: 0.25em;
}

.route-block + .route-block {
  margin-top: 0.85rem;
}

.route-block h4 {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.route-block ul {
  padding-left: 1.4em;
}

.access-hours {
  margin-top: 0.25rem;
}

.access-map {
  padding-top: 0.25rem;
}

.access-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
}

.access-grid {
  align-items: start;
}

.access-lead {
  margin: 2rem 0;
  font-size: 1.08rem;
}

address {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-style: normal;
  line-height: 1.75;
}

address strong {
  margin-bottom: 0.5rem;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.text-link {
  color: var(--orange-dark);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-underline-offset: 0.3em;
}

.route-list {
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.route-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.route-item:last-child {
  border-bottom: 0;
}

.route-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--sky-soft);
  border: 1px solid rgba(83, 111, 18, 0.2);
  border-radius: 50%;
  color: var(--green-dark);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
}

.route-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.route-item p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact-strip {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--orange);
  color: var(--white);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.contact-inner p {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-inner h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.55;
}

.button-light {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--orange-dark);
}

.experience-page-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  overflow: hidden;
  background: var(--sky) url("/assets/landscape.jpg") center center / cover no-repeat;
}

.experience-page-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(232, 248, 253, 0.14);
  content: "";
}

.experience-page-hero-copy {
  position: relative;
  z-index: 1;
  padding: 6rem 24px 3rem;
  color: #232323;
  text-align: center;
}

.experience-page-hero-copy p {
  margin: 0;
  font-size: 1.225rem;
  line-height: 1.5;
}

.experience-page-hero-copy h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.experience-menu-section {
  padding: 8rem 0;
  background: var(--white);
}

.experience-menu-heading {
  display: block;
}

.experience-menu-heading .section-title {
  margin: 0;
  color: #544541;
  font-size: clamp(2rem, 3.125vw, 2.666rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.experience-menu-heading .section-title::before {
  top: 0;
  bottom: 0;
  width: 8px;
  background: #ffad66;
  border-radius: 0;
}

.experience-menu-grid {
  display: grid;
  max-width: 1070px;
  margin: 4rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.5rem 7rem;
}

.experience-menu-card {
  min-height: 510px;
  scroll-margin-top: 110px;
  overflow: hidden;
  background: #f1ede8;
  border: 0;
  border-radius: 12px;
  box-shadow: none;
}

.experience-menu-card > img,
.experience-menu-placeholder {
  width: calc(100% - 48px);
  aspect-ratio: 1.88;
  margin: 24px 24px 0;
  border-radius: 12px;
}

.experience-menu-card > img {
  height: auto;
  object-fit: cover;
}

.experience-menu-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #d5f2fd 0 68%, #c5e083 68% 79%, #88a201 79%);
}

.experience-menu-placeholder::before {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 28%;
  aspect-ratio: 1.8;
  background: var(--white);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.experience-menu-placeholder-light {
  background: linear-gradient(180deg, #f5f0e8 0 68%, #d5eaa5 68% 79%, #a4bd45 79%);
}

.experience-menu-placeholder span {
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.86);
  color: #544541;
  font-size: 1rem;
}

.experience-menu-card-body {
  padding: 1.5rem 48px 3rem;
}

.experience-menu-status {
  display: inline-flex;
  margin: 0;
  padding: 0.25rem 0.75rem;
  background: #eef5d8;
  color: #536f12;
  font-size: 0.8rem;
  line-height: 1.5;
}

.experience-menu-card h3 {
  margin: 0;
  color: #c7744d;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.38;
  text-align: center;
}

.experience-menu-card h3 a {
  color: inherit;
  text-underline-offset: 0.22em;
}

.experience-menu-card dl {
  display: block;
  margin: 1.75rem 0 0;
  border: 0;
}

.experience-menu-card dl > div {
  display: flex;
  padding: 0;
}

.experience-menu-card dt,
.experience-menu-card dd {
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.38;
}

.experience-menu-card dd {
  margin: 0;
}

.reservation-section {
  min-height: 768px;
  padding: 4.5rem 0 5rem;
  background: var(--white);
}

.reservation-inner {
  text-align: left;
}

.reservation-inner .section-title {
  display: block;
  padding-left: 1.8rem;
  font-size: clamp(2rem, 3.125vw, 2.666rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
}

.reservation-inner .section-title::before {
  top: 0;
  bottom: 0;
  width: 8px;
  background: #ffad66;
  border-radius: 0;
}

.craft-detail-page {
  background: var(--white);
}

.about-page {
  background: var(--white);
}

.about-detail {
  padding-top: 8rem;
}

.about-hero {
  margin-top: 2.5rem;
}

.about-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 2.2;
  object-fit: cover;
}

.about-philosophy {
  padding-top: 4.5rem;
  padding-bottom: 9rem;
}

.about-philosophy h2 {
  margin: 0;
  color: #c7744d;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.about-philosophy-copy {
  max-width: 650px;
  margin: 3.5rem auto 0;
}

.about-philosophy-copy p {
  margin: 0;
  color: #544541;
  font-size: 1rem;
  line-height: 2;
}

.about-philosophy-copy p + p {
  margin-top: 2rem;
}

.craft-detail {
  padding-top: 8rem;
}

.craft-detail-header .section-title,
.craft-ideas .section-title,
.craft-legacy .section-title,
.craft-flow .section-title {
  padding-left: 1.8rem;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
}

.craft-ideas .section-title,
.craft-legacy .section-title,
.craft-flow .section-title {
  font-size: 2.666rem;
}

.craft-detail-header .section-title::before,
.craft-ideas .section-title::before,
.craft-legacy .section-title::before,
.craft-flow .section-title::before {
  top: 0;
  bottom: 0;
  width: 8px;
  background: #ffad66;
  border-radius: 0;
}

.craft-detail-hero {
  margin-top: 2.5rem;
}

.craft-detail-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
}

.craft-detail-hero--landscape img {
  aspect-ratio: 1438 / 560;
}

.craft-story {
  display: grid;
  padding-top: 5rem;
  padding-bottom: 6rem;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 7rem);
}

.craft-story-image {
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 15px 32px rgba(50, 42, 37, 0.2);
}

.craft-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.craft-story-copy h2 {
  margin: 0;
  color: #c7744d;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.craft-story-copy p {
  margin: 2rem 0 0;
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.55;
}

.craft-ideas {
  padding-top: 3rem;
  padding-bottom: 8rem;
}

.craft-ideas-grid {
  display: grid;
  max-width: 920px;
  margin: 4rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.5rem 5rem;
}

.craft-idea-card {
  overflow: hidden;
  background: #f1ede8;
  border-radius: 8px;
}

.craft-idea-card > img {
  width: calc(100% - 32px);
  height: auto;
  aspect-ratio: 1.82;
  margin: 16px 16px 0;
  border-radius: 8px;
  object-fit: cover;
}

.craft-idea-card > div {
  padding: 1.4rem 2rem 2.25rem;
}

.craft-idea-card h3 {
  margin: 0;
  color: #c7744d;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.craft-idea-card p {
  margin: 1.25rem 0 0;
  color: #544541;
  font-size: 0.9rem;
  line-height: 1.7;
}

.craft-legacy {
  padding-top: 3rem;
  padding-bottom: 9rem;
}

.craft-legacy-list {
  display: grid;
  max-width: 1060px;
  margin: 4.5rem auto 0;
  gap: 7rem;
}

.craft-legacy-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 5rem;
}

.craft-legacy-row > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1438 / 560;
  object-fit: cover;
  border: 1px solid rgba(84, 69, 65, 0.32);
  border-radius: 9px;
  box-shadow: 0 14px 18px rgba(50, 42, 37, 0.2);
}

.craft-legacy-copy h3 {
  margin: 0;
  color: #c7744d;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
}

.craft-legacy-copy p {
  margin: 1.75rem 0 0;
  color: #544541;
  font-size: 0.95rem;
  line-height: 1.75;
}

.craft-flow {
  padding: 4.5rem 0 8rem;
  background: var(--white);
}

.craft-flow-list {
  position: relative;
  display: grid;
  height: 360px;
  margin: 3.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  list-style: none;
}

.craft-flow-list::before {
  position: absolute;
  top: 50%;
  right: 5%;
  left: 5%;
  height: 2px;
  background: #e5d8ca;
  content: "";
}

.craft-flow-list li {
  position: relative;
  padding: 0;
  color: #544541;
}

.craft-flow-list li > span {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  z-index: 1;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  background: var(--white);
  border: 3px solid #c7744d;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  transform: translateX(-50%);
}

.craft-flow-list h3 {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0;
  color: #c7744d;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.craft-flow-list p {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.craft-flow-list li:nth-child(odd) h3 {
  top: calc(50% + 3.25rem);
}

.craft-flow-list li:nth-child(odd) p {
  top: calc(50% + 6.5rem);
}

.craft-flow-list li:nth-child(even) h3 {
  top: 0;
}

.craft-flow-list li:nth-child(even) p {
  top: 3.5rem;
}

.site-footer {
  min-height: 700px;
  padding: 5rem 0;
  background: #fff5e7;
  color: #544541;
  font-family: var(--serif);
}

.footer-grid {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer-logo {
  display: flex;
  width: min(100%, 624px);
  min-height: 108px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #d5eaa5;
  color: #232323;
  text-decoration: none;
}

.footer-logo span {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.footer-logo strong {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.footer-info {
  margin-top: 2.75rem;
  font-size: 1.225rem;
  line-height: 1.38;
}

.footer-info p {
  margin: 0;
}

.footer-info p + p {
  margin-top: 2rem;
}

.footer-contact-bar {
  display: flex;
  width: min(100%, 624px);
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-top: 4.5rem;
  background: #d5eaa5;
  color: #232323;
  font-size: 1.5rem;
}

.footer-contact-bar a {
  color: inherit;
  text-underline-offset: 0.22em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 4rem;
  color: #544541;
  font-size: 1.225rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 980px) {
  .menu-button {
    z-index: 2;
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 7rem 10vw 3rem;
    overflow-y: auto;
    background: rgba(250, 247, 242, 0.98);
    font-family: var(--serif);
    font-size: clamp(1.4rem, 5vw, 2rem);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0.4rem 0 0 1.25rem;
    background: transparent;
    box-shadow: none;
    gap: 0.15rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    transform: none;
  }

  .nav-submenu a {
    padding: 0.35rem 0;
    font-family: var(--sans);
    font-size: 0.9rem;
    white-space: normal;
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible {
    background: transparent;
    color: var(--orange-dark);
  }

  .nav-contact {
    margin-top: 0.6rem;
    font-family: var(--sans);
    font-size: 0.9rem;
  }

}

@media (max-width: 760px) {
  .container,
  .hero-inner {
    width: min(calc(100% - 36px), var(--content));
  }

  .section {
    padding: 5.5rem 0;
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    width: 100%;
    max-width: 100%;
    min-height: 100svh;
    overflow: clip;
  }

  .hero-background {
    inset: 0 1px;
    width: calc(100% - 2px);
    max-width: calc(100% - 2px);
  }

  .hero-inner {
    min-height: 100svh;
    padding: 70px 0;
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  .hero .eyebrow,
  .hero h1,
  .hero-lead {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .hero-lead {
    margin-top: 3rem;
  }

  .intro-grid,
  .access-grid,
  .news-inner,
  .experience-heading,
  .learn-inner {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .intro-visual {
    width: 100%;
    aspect-ratio: 304 / 345;
    margin: 0;
  }

  .intro-copy {
    padding: 4rem 24px 5rem;
  }

  .intro .section-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .intro-catch {
    margin-top: 3rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .intro-body {
    margin-top: 4rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .vertical-note {
    right: -1.5rem;
  }

  .feature-grid {
    margin-top: 3.5rem;
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .feature-card {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 1rem;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-card h3 {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .feature-card > p:last-child {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .news-inner {
    gap: 2rem;
  }

  .news {
    min-height: 520px;
    padding: 5rem 0;
  }

  .news-card {
    margin-top: 3.5rem;
  }

  .news-card p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .news-card {
    align-items: flex-start;
  }

  .experiences {
    min-height: 0;
    padding: 0;
  }

  .experiences::before {
    height: 300px;
  }

  .experiences > .container {
    width: 100%;
    min-height: 0;
    padding-top: 250px;
  }

  .experience-text {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 0;
    padding: 3rem 24px 5rem;
  }

  .experiences .section-title {
    font-size: 2rem;
  }

  .experience-text .lead-copy,
  .experience-text > p:last-child {
    font-size: 1rem;
    line-height: 1.7;
  }

  .experience-text .lead-copy {
    margin-top: 2rem;
  }

  .experience-text > p:last-child {
    margin-top: 1.25rem;
  }

  .experience-heading {
    gap: 1.5rem;
  }

  .experience-grid {
    display: block;
  }

  .experience-card {
    margin-bottom: 1.5rem;
  }

  .learn-kanji {
    position: absolute;
    right: 0;
    bottom: -3rem;
  }

  .learn {
    min-height: 0;
    padding: 0;
  }

  .learn-landscape {
    height: 300px;
  }

  .learn-inner {
    width: 100%;
    min-height: 0;
    padding-top: 250px;
  }

  .learn-copy {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    width: 100%;
    min-height: 0;
    padding: 3rem 24px 5rem;
  }

  .learn h2 {
    font-size: 2rem;
  }

  .learn-lead,
  .learn-copy > p:last-child {
    font-size: 1rem;
    line-height: 1.7;
  }

  .learn-lead {
    margin-top: 2rem;
  }

  .learn-copy > p:last-child {
    margin-top: 1.25rem;
  }

  .access {
    padding: 5rem 0;
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .access-details {
    gap: 1.75rem;
  }

  .access-group {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .access-icon {
    width: 28px;
    height: 28px;
  }

  .access-group h3 {
    font-size: 1.2rem;
  }

  .access-group p,
  .access-group li,
  .access-group a,
  .route-block h4 {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .access-map {
    padding-top: 0;
  }

  .experience-page-hero {
    min-height: 480px;
  }

  .experience-page-hero-copy p {
    font-size: 1rem;
  }

  .experience-page-hero-copy h1 {
    font-size: 2.5rem;
  }

  .experience-menu-section {
    padding: 5.5rem 0;
  }

  .experience-menu-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-menu-heading > p {
    font-size: 1rem;
  }

  .experience-menu-grid {
    margin-top: 3.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experience-menu-card {
    min-height: 0;
  }

  .experience-menu-card > img,
  .experience-menu-placeholder {
    width: calc(100% - 32px);
    margin: 16px 16px 0;
  }

  .experience-menu-card-body {
    padding: 1.25rem 24px 2rem;
  }

  .experience-menu-card h3 {
    font-size: 1.25rem;
  }

  .experience-menu-card dt,
  .experience-menu-card dd {
    font-size: 1rem;
    line-height: 1.6;
  }

  .reservation-section {
    min-height: 520px;
    padding: 5rem 0;
  }

  .craft-detail {
    padding-top: 6rem;
  }

  .about-detail {
    padding-top: 6rem;
  }

  .about-hero {
    margin-top: 2rem;
  }

  .about-hero img {
    aspect-ratio: 1.8;
  }

  .about-philosophy {
    padding-top: 3.5rem;
    padding-bottom: 6rem;
  }

  .about-philosophy h2 {
    font-size: 1.2rem;
  }

  .about-philosophy-copy {
    margin-top: 2.5rem;
  }

  .about-philosophy-copy p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  .craft-detail-header .section-title,
  .craft-ideas .section-title,
  .craft-legacy .section-title,
  .craft-flow .section-title {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .craft-detail-hero {
    margin-top: 2rem;
  }

  .craft-story {
    padding-top: 4rem;
    padding-bottom: 4.5rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .craft-story-image {
    width: min(78%, 260px);
  }

  .craft-story-copy h2 {
    font-size: 1.25rem;
  }

  .craft-story-copy p {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .craft-ideas {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }

  .craft-ideas-grid {
    margin-top: 3rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .craft-idea-card > div {
    padding: 1.25rem 1.5rem 2rem;
  }

  .craft-idea-card h3 {
    font-size: 1.1rem;
  }

  .craft-legacy {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }

  .craft-legacy-list {
    margin-top: 3rem;
    gap: 4rem;
  }

  .craft-legacy-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .craft-legacy-row:not(.craft-legacy-row--image-first) > img {
    order: -1;
  }

  .craft-legacy-copy h3 {
    font-size: 1.15rem;
  }

  .craft-legacy-copy p {
    margin-top: 1.25rem;
    font-size: 0.9rem;
  }

  .craft-flow {
    padding: 4rem 0 6rem;
  }

  .craft-flow-list {
    height: auto;
    margin-top: 3.5rem;
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .craft-flow-list::before {
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 2px;
    height: auto;
  }

  .craft-flow-list li {
    padding-top: 0;
    padding-left: 3rem;
  }

  .craft-flow-list li > span {
    top: 0;
    left: 0;
    transform: none;
  }

  .craft-flow-list h3 {
    position: static;
    font-size: 1rem;
    text-align: left;
  }

  .craft-flow-list p {
    position: static;
    margin-top: 0.65rem;
    font-size: 0.9rem;
  }

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

  .site-footer {
    min-height: 0;
    padding: 4rem 0;
  }

  .footer-logo {
    min-height: 90px;
  }

  .footer-logo span {
    font-size: 0.85rem;
  }

  .footer-logo strong {
    font-size: 1.65rem;
  }

  .footer-info {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .footer-contact-bar {
    min-height: 64px;
    margin-top: 3.5rem;
    font-size: 1.1rem;
  }

  .footer-nav {
    margin-top: 3rem;
    font-size: 0.9rem;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 480px) {
  .hero-actions,
  .access-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .news-card {
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
