:root {
  --background: #f7f4ed;
  --foreground: #202827;
  --card: #ffffff;
  --card-foreground: #202827;
  --popover: #ffffff;
  --popover-foreground: #202827;
  --primary: #e0d48b;
  --primary-foreground: #343735;
  --secondary: #a4d2b7;
  --secondary-foreground: #343735;
  --muted: #ece7dd;
  --muted-foreground: #66706e;
  --accent: #eaaf9f;
  --accent-foreground: #343735;
  --destructive: #b42318;
  --border: #d9d2c4;
  --input: #d9d2c4;
  --ring: #cdbc6b;
  --chart-1: #e0d48b;
  --chart-2: #eaaf9f;
  --chart-3: #a4d2b7;
  --chart-4: #cdbc6b;
  --chart-5: #253936;
  --radius: 0.375rem;
  --ruska-ink: #202827;
  --ruska-green: #435850;
  --ruska-ember: #b86f5e;
  --ruska-pink: #eaaf9f;
  --ruska-gold: #e0d48b;
  --ruska-leaf: #8fbc9f;
  --ruska-mint: #a4d2b7;
  --ruska-cream: #f7f4ed;
  --ruska-paper: #fffdf8;
  --ruska-line: #d9d2c4;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --radius-sm: calc(var(--radius) - 2px);
  --radius-md: var(--radius);
  --radius-lg: calc(var(--radius) + 3px);
  --radius-xl: calc(var(--radius) + 8px);
  --font-sans: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ruska-cream);
  color: var(--ruska-ink);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgb(32 40 39 / 0.035) 0.7px, transparent 0.7px);
  background-size: 6px 6px;
  content: "";
  pointer-events: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: color-mix(in srgb, var(--ruska-ember) 24%, white);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  background: white;
  border: 2px solid var(--ruska-ember);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 9vw, 9rem);
}

.section-compact {
  padding-block: clamp(4rem, 7vw, 6.5rem);
}

.section-label,
.eyebrow {
  margin: 0;
  color: var(--ruska-ember);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #d9c473;
}

.display-title,
.page-intro h1,
.section-heading,
.trial-cta h2 {
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.section-heading {
  max-width: 780px;
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.35;
}

.section-copy {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: #52605d;
  font-size: 1.03rem;
  line-height: 2;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--ruska-gold);
  color: var(--ruska-ink);
}

.button-primary:hover {
  background: #cdbc6b;
}

.button-outline {
  border-color: #a9a294;
  background: transparent;
}

.button-outline:hover {
  border-color: var(--ruska-green);
  background: rgb(255 255 255 / 0.55);
}

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

.button-ember {
  background: var(--ruska-gold);
  color: var(--ruska-ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  line-height: 2;
}

.text-link-light {
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgb(37 57 54 / 0.12);
  background: rgb(255 253 248 / 0.94);
  backdrop-filter: blur(14px);
}

.topline {
  background: var(--ruska-green);
  color: #f2f1e9;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.topline-inner {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
}

.topline-note {
  color: #e6cb79;
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 2rem;
}

.brand {
  width: 210px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.45vw, 1.5rem);
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.5rem;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ruska-ember);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--ruska-gold);
  color: var(--ruska-ink);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  display: flex;
  min-width: 48px;
  min-height: 48px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 1px solid var(--ruska-line);
  border-radius: 999px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.mobile-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  padding: 1.2rem 1.5rem 1.6rem;
  border-top: 1px solid var(--ruska-line);
  border-bottom: 1px solid var(--ruska-line);
  background: var(--ruska-paper);
  box-shadow: 0 18px 30px rgb(22 38 35 / 0.12);
}

.mobile-nav > a:not(.mobile-nav-contact) {
  display: flex;
  min-height: 49px;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--ruska-line);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.08rem;
}

.mobile-nav > a span {
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
}

.mobile-nav-contact {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: var(--ruska-green);
  color: white;
  font-weight: 700;
}

.site-footer {
  padding: 5.5rem 0 1.2rem;
  background: #1d2927;
  color: #e9ebe6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1.25fr 0.75fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.footer-brand img {
  width: 230px;
  padding: 0.35rem;
  background: white;
}

.footer-brand p {
  margin: 1.4rem 0;
  color: #b8c3bf;
  font-size: 0.86rem;
  line-height: 1.9;
}

.footer-heading {
  margin: 0 0 1.15rem;
  color: #d9c473;
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-location + .footer-location {
  margin-top: 1.25rem;
}

.footer-location {
  display: grid;
  gap: 0.18rem;
}

.footer-location strong {
  font-size: 0.91rem;
}

.footer-location span {
  color: #b8c3bf;
  font-size: 0.74rem;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  gap: 0.55rem;
  font-size: 0.82rem;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #e6cb79;
}

.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-contact a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.79rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.14);
  color: #8e9b97;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.mobile-trial-bar {
  display: none;
}

.page-intro {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  overflow: hidden;
  border-bottom: 1px solid var(--ruska-line);
  background:
    linear-gradient(90deg, transparent 0 66%, rgb(154 207 194 / 0.23) 66% 82%, transparent 82%),
    var(--ruska-paper);
}

.page-intro-grid {
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 2rem;
  align-items: start;
}

.page-intro h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 1.23;
}

.page-intro h1::after {
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 1.35rem;
  background: linear-gradient(90deg, var(--ruska-ember) 0 34%, var(--ruska-gold) 34% 68%, var(--ruska-mint) 68%);
  content: "";
}

.page-intro-grid > div > p {
  max-width: 670px;
  margin: 1.5rem 0 0;
  color: #52605d;
  font-size: 1.05rem;
  line-height: 2;
}

.trial-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--ruska-green);
  color: white;
}

.trial-cta::after {
  position: absolute;
  top: -8rem;
  right: -4rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(255 255 255 / 0.025), 0 0 0 140px rgb(255 255 255 / 0.018);
  content: "";
}

.trial-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 3rem;
  align-items: end;
}

.trial-cta h2 {
  max-width: 760px;
  margin: 0.8rem 0 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1.35;
}

.trial-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.3rem 0 0;
  color: #c7d1ce;
}

.trial-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}

.location-mini {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.location-mini article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
  background: var(--ruska-paper);
}

.location-mini article > svg {
  margin-top: 0.25rem;
  color: var(--ruska-ember);
}

.location-mini h3 {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.location-mini p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
}

.location-mini span,
.location-mini small {
  display: block;
  margin-top: 0.25rem;
  color: #65716e;
  font-size: 0.75rem;
  line-height: 1.65;
}

.location-mini article > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ruska-line);
  border-radius: 50%;
}

.location-mini article > a:hover {
  border-color: var(--ruska-ember);
  color: var(--ruska-ember);
}

/* Home */
.home-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--ruska-line);
  background: var(--ruska-paper);
}

.home-hero-grid {
  display: grid;
  min-height: min(760px, calc(100svh - 106px));
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3.5rem, 6vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 1rem 0 0;
  font-size: clamp(3.15rem, 6vw, 6.4rem);
  line-height: 1.18;
}

.hero-copy h1 span {
  position: relative;
  z-index: 1;
}

.hero-copy h1 span::after {
  position: absolute;
  right: -0.05em;
  bottom: 0.08em;
  left: -0.05em;
  z-index: -1;
  height: 0.22em;
  background: color-mix(in srgb, var(--ruska-gold) 62%, transparent);
  content: "";
}

.hero-lead {
  max-width: 590px;
  margin: 1.6rem 0 0;
  color: #4c5956;
  font-size: 1rem;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2rem;
  color: #64706d;
  font-size: 0.74rem;
}

.hero-trust span {
  padding-inline: 0.8rem;
  border-right: 1px solid var(--ruska-line);
}

.hero-trust span:first-child {
  padding-left: 0;
}

.hero-trust span:last-child {
  border-right: 0;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 2.2rem 0;
  overflow: hidden;
  background: #d8d6cf;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgb(15 28 26 / 0.2));
  content: "";
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.018);
}

.hero-color-blocks {
  position: absolute;
  right: -1.4rem;
  bottom: 0;
  display: flex;
  width: min(55%, 300px);
  height: 85px;
}

.hero-color-blocks span {
  flex: 1;
  opacity: 0.92;
}

.hero-color-blocks span:nth-child(1) {
  background: var(--ruska-ember);
}

.hero-color-blocks span:nth-child(2) {
  background: var(--ruska-gold);
}

.hero-color-blocks span:nth-child(3) {
  background: var(--ruska-mint);
}

.hero-caption {
  position: absolute;
  bottom: 1rem;
  left: -2.5rem;
  z-index: 2;
  margin: 0;
  padding: 0.4rem 0.7rem;
  background: var(--ruska-paper);
  font-family: ui-monospace, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-course-line {
  display: flex;
  min-height: 50px;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--ruska-line);
  color: #687470;
  font-family: ui-monospace, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-course-line div {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.hero-course-line span {
  margin-inline: 0.8rem;
  color: var(--ruska-ember);
}

.home-intro {
  background: var(--ruska-cream);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.home-intro-copy p {
  margin: 0 0 1.5rem;
  color: #52605d;
  line-height: 2.1;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.promise-grid article {
  min-height: 300px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: var(--ruska-paper);
}

.promise-grid article > span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ruska-line);
  border-radius: 50%;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
}

.promise-grid h3 {
  margin: 2.4rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.promise-grid p {
  margin: 1rem 0 0;
  color: #63706d;
  font-size: 0.9rem;
  line-height: 1.95;
}

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

.section-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.featured-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.featured-course {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ruska-line);
  background: white;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.featured-course:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgb(28 43 40 / 0.1);
}

.course-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d9d8d1;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.featured-course:hover .course-image img {
  transform: scale(1.035);
}

.course-image > span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--ruska-green);
  color: white;
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
}

.course-card-copy {
  padding: 1.65rem;
}

.course-card-copy > p:first-child {
  margin: 0;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.course-card-copy h3 {
  display: inline-block;
  margin: 0.35rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.course-age {
  margin-left: 0.65rem;
  color: #687470;
  font-size: 0.7rem;
}

.course-card-copy > p:not(:first-child) {
  min-height: 6.6em;
  margin: 1rem 0 0;
  color: #5e6966;
  font-size: 0.86rem;
  line-height: 1.9;
}

.course-card-copy small {
  display: block;
  padding-top: 1rem;
  border-top: 1px solid var(--ruska-line);
  color: #7a8581;
  font-size: 0.68rem;
}

.course-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.3rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.compact-courses {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 1.3rem;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.compact-courses a {
  display: grid;
  min-height: 150px;
  grid-template-rows: auto 1fr auto;
  padding: 1.15rem;
  background: var(--ruska-paper);
  transition: background 180ms ease;
}

.compact-courses a:hover {
  background: #f0ecdf;
}

.compact-courses a > span {
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
}

.compact-courses small,
.compact-courses strong {
  display: block;
}

.compact-courses small {
  color: #78837f;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
}

.compact-courses strong {
  margin-top: 0.25rem;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.05rem;
}

.compact-courses svg {
  justify-self: end;
}

.community-section {
  background: var(--ruska-cream);
}

.community-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.community-photo {
  position: relative;
}

.community-photo::before {
  position: absolute;
  top: -1rem;
  right: -1rem;
  z-index: -1;
  width: 43%;
  height: 54%;
  background: var(--ruska-gold);
  content: "";
}

.community-photo img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}

.community-photo span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.8rem;
  background: rgb(29 41 39 / 0.9);
  color: white;
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.community-copy > p:not(.section-label) {
  margin: 1.5rem 0;
  color: #56635f;
  line-height: 2.05;
}

.voices-section {
  border-block: 1px solid var(--ruska-line);
  background: #e9e2d5;
}

.voices-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.voices-heading > span {
  color: #68736f;
  font-size: 0.72rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid #d1c8b8;
  background: #d1c8b8;
}

.voice-grid blockquote {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  margin: 0;
  padding: 1.8rem;
  background: var(--ruska-paper);
}

.voice-grid blockquote > span {
  color: var(--ruska-ember);
  font-family: Georgia, serif;
  font-size: 3.7rem;
  line-height: 0.7;
}

.voice-grid blockquote p {
  margin: 1.4rem 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.15rem;
  line-height: 1.9;
}

.voice-grid blockquote small {
  margin-top: auto;
  color: #818986;
  font-family: ui-monospace, monospace;
  font-size: 0.63rem;
}

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

.guide-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.guide-copy {
  position: sticky;
  top: 150px;
}

.guide-copy .button {
  margin-top: 2rem;
}

.steps-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ruska-line);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 0.2fr 1fr;
  gap: 1.5rem;
  padding-block: 2.2rem;
  border-bottom: 1px solid var(--ruska-line);
}

.steps-list li > span {
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
}

.steps-list h3 {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.4rem;
}

.steps-list p {
  margin: 0.65rem 0 0;
  color: #63706d;
  font-size: 0.9rem;
  line-height: 1.9;
}

.home-access {
  background: var(--ruska-cream);
}

.home-access-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

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

.news-list {
  margin-top: 3rem;
  border-top: 1px solid var(--ruska-line);
}

.news-list a {
  display: grid;
  min-height: 88px;
  grid-template-columns: 110px 90px 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--ruska-line);
  transition: padding 180ms ease, background 180ms ease;
}

.news-list a:hover {
  padding-inline: 0.8rem;
  background: #f4efe6;
}

.news-list time,
.news-list > a > span {
  color: #77817e;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-list strong {
  font-size: 0.92rem;
}

.home-checklist {
  padding-block: 1.6rem;
  border-top: 1px solid var(--ruska-line);
  background: var(--ruska-gold);
}

.home-checklist-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-checklist-inner > p {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
}

.home-checklist ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.home-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
}

/* Lessons */
.lesson-catalog-section {
  background: var(--ruska-cream);
}

.lesson-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.lesson-catalog-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  min-height: 320px;
  padding: 2rem;
  background: var(--ruska-paper);
  transition: background 180ms ease;
}

a.lesson-catalog-card:hover {
  background: #efeade;
}

.lesson-catalog-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ruska-line);
  border-radius: 50%;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
}

.lesson-catalog-card > div:nth-child(2) > p {
  margin: 0;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lesson-catalog-card h2,
.lesson-catalog-card h3 {
  margin: 0.25rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.65rem;
  font-weight: 600;
}

.lesson-catalog-card > div:nth-child(2) > span {
  color: #78817f;
  font-size: 0.72rem;
}

.lesson-catalog-card > p {
  grid-column: 2;
  margin: 0;
  color: #5e6966;
  font-size: 0.88rem;
  line-height: 1.95;
}

.lesson-meta {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 0.45rem;
  align-self: end;
  padding-top: 1rem;
  border-top: 1px solid var(--ruska-line);
  color: #75807c;
  font-size: 0.72rem;
}

.lesson-catalog-arrow {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.fee-section {
  background: var(--ruska-green);
  color: white;
}

.fee-heading-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: end;
}

.fee-heading-grid > p {
  margin: 0;
  color: #c5d0cc;
  line-height: 2;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.price-card {
  position: relative;
  min-height: 325px;
  padding: 2rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.055);
}

.price-card.featured {
  border-color: #e1c45d;
  background: var(--ruska-paper);
  color: var(--ruska-ink);
}

.price-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.4rem 0.65rem;
  background: var(--ruska-gold);
  color: var(--ruska-ink);
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > p:first-of-type {
  margin: 0;
  color: #d9c473;
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
}

.price-card.featured > p:first-of-type {
  color: var(--ruska-ember);
}

.price-card h3 {
  margin: 2.2rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.price-card > strong {
  display: block;
  margin-top: 0.4rem;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.price-card > p:last-child {
  margin: 2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(255 255 255 / 0.18);
  color: #c3ceca;
  font-size: 0.82rem;
  line-height: 1.85;
}

.price-card.featured > p:last-child {
  border-color: var(--ruska-line);
  color: #65716d;
}

.fee-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1rem;
  background: rgb(255 255 255 / 0.15);
}

.fee-notes > div {
  display: flex;
  gap: 0.8rem;
  padding: 1.2rem;
  background: var(--ruska-green);
}

.fee-notes svg {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  color: #d9c473;
}

.fee-notes p {
  margin: 0;
}

.fee-notes strong,
.fee-notes span {
  display: block;
}

.fee-notes strong {
  font-size: 0.82rem;
}

.fee-notes span {
  margin-top: 0.2rem;
  color: #aebbb7;
  font-size: 0.69rem;
}

.fee-smallprint {
  margin-top: 1.7rem;
  color: #aebbb7;
  font-size: 0.72rem;
}

.fee-smallprint p {
  margin: 0.25rem 0;
}

.choose-section {
  background: #e9e2d5;
}

.choose-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
}

.choose-cards {
  display: grid;
  gap: 1px;
  border: 1px solid #d1c8b8;
  background: #d1c8b8;
}

.choose-cards article {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 0.6rem 1.5rem;
  padding: 1.7rem;
  background: var(--ruska-paper);
}

.choose-cards article > span {
  grid-row: 1 / 4;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.choose-cards h3 {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.25rem;
}

.choose-cards p {
  margin: 0;
  color: #63706d;
  font-size: 0.82rem;
}

.choose-cards a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-self: start;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
}

.faq-list {
  border-top: 1px solid var(--ruska-line);
}

.faq-list details {
  border-bottom: 1px solid var(--ruska-line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ruska-line);
  border-radius: 50%;
  color: var(--ruska-ember);
  font-family: sans-serif;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -0.3rem 3.5rem 1.8rem 0;
  color: #63706d;
  font-size: 0.88rem;
  line-height: 1.95;
}

/* Rhythmique */
.rhythm-hero {
  overflow: hidden;
  background: var(--ruska-paper);
}

.rhythm-hero-grid {
  display: grid;
  min-height: min(760px, calc(100svh - 106px));
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 6rem);
}

.rhythm-hero-copy h1 {
  margin: 1rem 0 0;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 1.22;
}

.rhythm-hero-copy > p:not(.eyebrow) {
  margin: 1.6rem 0;
  color: #52605d;
  line-height: 2;
}

.rhythm-hero-image {
  position: relative;
}

.rhythm-hero-image::before {
  position: absolute;
  top: -1.6rem;
  right: -1.6rem;
  z-index: 0;
  width: 46%;
  height: 40%;
  background: var(--ruska-mint);
  content: "";
}

.rhythm-hero-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 500px;
  object-fit: cover;
}

.rhythm-hero-image > span {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0.65rem 0.85rem;
  background: var(--ruska-green);
  color: white;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.rhythm-definition {
  border-top: 1px solid var(--ruska-line);
  background: var(--ruska-cream);
}

.rhythm-definition-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.rhythm-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.rhythm-flow > div {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ruska-line);
  border-radius: 50%;
  background: var(--ruska-paper);
}

.rhythm-flow > div:nth-child(2) { background: #eee2d9; }
.rhythm-flow > div:nth-child(3) { background: #eee7bf; }
.rhythm-flow > div:nth-child(4) { background: #d8ebe5; }

.rhythm-flow span {
  position: absolute;
  top: 20%;
  color: #76817d;
  font-family: ui-monospace, monospace;
  font-size: 0.6rem;
}

.rhythm-flow strong {
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.2rem;
}

.rhythm-flow svg {
  position: absolute;
  right: -0.9rem;
  z-index: 2;
  padding: 0.2rem;
  border-radius: 50%;
  background: var(--ruska-cream);
}

.rhythm-benefits {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ruska-line);
}

.rhythm-benefits > p {
  margin: 0;
  color: #596662;
  line-height: 2;
}

.rhythm-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rhythm-benefits li {
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--ruska-ember);
  background: var(--ruska-paper);
  font-size: 0.84rem;
}

.rhythm-activities {
  background: var(--ruska-paper);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.5rem;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.activity-grid article {
  min-height: 260px;
  padding: 1.8rem;
  background: var(--ruska-paper);
}

.activity-grid article > span {
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
}

.activity-grid h3 {
  margin: 2.2rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.25rem;
}

.activity-grid p {
  margin: 0.8rem 0 0;
  color: #65716d;
  font-size: 0.82rem;
  line-height: 1.9;
}

.rhythm-reasons {
  background: var(--ruska-green);
  color: white;
}

.rhythm-reasons-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
}

.rhythm-reasons-title {
  position: sticky;
  top: 150px;
  align-self: start;
}

.reason-list {
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.reason-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding-block: 2rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}

.reason-list article > svg {
  color: #d9c473;
}

.reason-list article span {
  color: #d9c473;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
}

.reason-list h3 {
  margin: 0.25rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.35rem;
}

.reason-list p {
  margin: 0.6rem 0 0;
  color: #bdc9c5;
  font-size: 0.86rem;
  line-height: 1.9;
}

.rhythm-schedule {
  background: var(--ruska-cream);
  scroll-margin-top: 110px;
}

.schedule-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: end;
}

.schedule-heading > p {
  margin: 0;
  color: #60706b;
  line-height: 2;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.schedule-grid article {
  padding: 1.8rem;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-paper);
}

.schedule-grid article > span {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: #e7ded0;
  color: var(--ruska-ember);
  font-size: 0.7rem;
  font-weight: 700;
}

.schedule-grid h3 {
  margin: 1.2rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.45rem;
}

.schedule-grid ul {
  margin: 1.2rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--ruska-line);
  list-style: none;
}

.schedule-grid li {
  padding-block: 0.4rem;
  color: #64716d;
  font-size: 0.8rem;
}

.rhythm-price-row {
  display: grid;
  grid-template-columns: repeat(3, 0.45fr) 1.65fr;
  gap: 1px;
  margin-top: 1rem;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.rhythm-price-row > div,
.rhythm-price-row > p {
  margin: 0;
  padding: 1.25rem;
  background: var(--ruska-paper);
}

.rhythm-price-row strong,
.rhythm-price-row span {
  display: block;
}

.rhythm-price-row strong {
  color: #75807c;
  font-size: 0.7rem;
}

.rhythm-price-row span {
  margin-top: 0.25rem;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.rhythm-price-row > p {
  color: #68746f;
  font-size: 0.72rem;
  line-height: 1.8;
}

.rhythm-future {
  background: var(--ruska-gold);
}

.rhythm-future-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: end;
}

.rhythm-future-grid svg {
  margin-bottom: 1.4rem;
}

.rhythm-future-grid > p {
  margin: 0;
  line-height: 2.1;
}

/* Teachers */
.teachers-section {
  background: var(--ruska-cream);
}

.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 4rem;
}

.teacher-card {
  overflow: hidden;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-paper);
}

.teacher-card.lead {
  border-color: var(--ruska-ember);
}

.teacher-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #ddd9d0;
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.teacher-card:hover .teacher-photo img {
  transform: scale(1.025);
}

.teacher-photo span {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgb(29 41 39 / 0.9);
  color: white;
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
}

.teacher-copy {
  padding: 1.5rem;
}

.teacher-copy > p:first-child {
  margin: 0;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.teacher-copy h3 {
  margin: 0.35rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.teacher-copy h3 span {
  margin-left: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.teacher-copy > strong {
  display: block;
  margin-top: 0.35rem;
  color: #6e7975;
  font-size: 0.7rem;
}

.teacher-copy > p:last-child {
  min-height: 6.8em;
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ruska-line);
  color: #63706d;
  font-size: 0.8rem;
  line-height: 1.9;
}

.teacher-note {
  background: #e9e2d5;
}

.teacher-note-grid {
  display: grid;
  grid-template-columns: 0.3fr 0.8fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.teacher-note h2 {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.55;
}

.teacher-note-grid > p:last-child {
  margin: 0;
  color: #5d6965;
  line-height: 2;
}

/* About */
.about-hero {
  padding-block: clamp(5rem, 9vw, 8rem) 0;
  background: var(--ruska-green);
  color: white;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 1.25;
}

.about-lead {
  color: #e2c96f !important;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.35rem !important;
}

.about-hero-copy p {
  margin: 0 0 1.4rem;
  color: #c0ccc8;
  line-height: 2.05;
}

.about-color-strip {
  display: grid;
  height: 18px;
  grid-template-columns: 1.1fr 0.75fr 1fr 0.55fr;
  margin-top: 5rem;
}

.about-color-strip span:nth-child(1) { background: var(--ruska-ember); }
.about-color-strip span:nth-child(2) { background: var(--ruska-gold); }
.about-color-strip span:nth-child(3) { background: var(--ruska-leaf); }
.about-color-strip span:nth-child(4) { background: var(--ruska-mint); }

.about-belief {
  background: var(--ruska-paper);
}

.about-belief-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5rem;
}

.belief-statements {
  border-top: 1px solid var(--ruska-line);
}

.belief-statements article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.6rem 1.2rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--ruska-line);
}

.belief-statements span {
  grid-row: 1 / 3;
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
}

.belief-statements h3 {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.4rem;
}

.belief-statements p {
  margin: 0;
  color: #64706d;
  font-size: 0.86rem;
  line-height: 1.9;
}

.about-community {
  background: var(--ruska-cream);
}

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

.about-community-photo {
  position: relative;
}

.about-community-photo::after {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
  width: 56%;
  height: 55%;
  background: var(--ruska-mint);
  content: "";
}

.about-community-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-community-grid > div:last-child > p:not(.section-label) {
  margin: 1.3rem 0;
  color: #596662;
  line-height: 2;
}

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

.representative-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.representative-photo {
  position: relative;
}

.representative-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.representative-photo span {
  position: absolute;
  right: -1.4rem;
  bottom: 1.2rem;
  padding: 0.5rem 0.8rem;
  background: var(--ruska-ember);
  color: white;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.representative-copy h2 {
  margin: 0.5rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 500;
}

.representative-role {
  margin: 0.2rem 0 1.8rem !important;
  color: var(--ruska-ember) !important;
  font-size: 0.78rem !important;
}

.representative-copy > p {
  color: #596662;
  line-height: 2;
}

.representative-copy blockquote {
  margin: 2rem 0;
  padding: 1.5rem 0 1.5rem 1.6rem;
  border-left: 4px solid var(--ruska-gold);
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.1rem;
  line-height: 2;
}

/* Access */
.access-section {
  background: var(--ruska-cream);
}

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

.access-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--ruska-line);
  background: var(--ruska-paper);
}

.access-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ruska-ember);
}

.access-card-top span {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
}

.access-card > p {
  margin: 2.4rem 0 0;
  color: #7a8581;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.access-card h2 {
  margin: 0.2rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
}

.access-card address {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  font-style: normal;
}

.access-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ruska-line);
}

.access-facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #64716d;
  font-size: 0.75rem;
}

.access-classes {
  min-height: 130px;
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: #eee8dc;
}

.access-classes p {
  margin: 0;
  color: var(--ruska-ember);
  font-size: 0.68rem;
  font-weight: 700;
}

.access-classes strong {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.9;
}

.access-card .button {
  margin-top: 1.5rem;
}

.access-note {
  background: #e9e2d5;
}

.access-note-grid {
  display: grid;
  grid-template-columns: 0.3fr 0.9fr 0.8fr;
  gap: 3rem;
}

.access-note h2 {
  margin: 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.55;
}

.access-note-grid > p:last-child {
  margin: 0;
  color: #5d6965;
  line-height: 2;
}

/* Contact */
.contact-section {
  background: var(--ruska-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
}

.contact-primary {
  position: relative;
  min-height: 420px;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--ruska-green);
  color: white;
}

.contact-primary::after {
  position: absolute;
  right: -7rem;
  bottom: -7rem;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgb(255 255 255 / 0.035), 0 0 0 100px rgb(255 255 255 / 0.02);
  content: "";
}

.contact-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 2.4rem;
  border: 1px solid rgb(255 255 255 / 0.28);
  border-radius: 50%;
}

.contact-primary h2 {
  margin: 0.6rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 500;
}

.contact-primary > p:not(.section-label) {
  max-width: 500px;
  margin: 1.2rem 0 2rem;
  color: #c3ceca;
}

.contact-primary .button {
  position: relative;
  z-index: 2;
}

.contact-options {
  display: grid;
  gap: 1px;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
}

.contact-options > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem;
  background: var(--ruska-paper);
  transition: background 180ms ease;
}

.contact-options > a:hover {
  background: #efeade;
}

.contact-options > a > svg:first-child {
  color: var(--ruska-ember);
}

.contact-options span,
.contact-options strong,
.contact-options p {
  display: block;
  margin: 0;
}

.contact-options span {
  color: #7a8581;
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-options strong {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.contact-options p {
  margin-top: 0.3rem;
  color: #77827e;
  font-size: 0.7rem;
}

.contact-guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--ruska-line);
}

.contact-guide h2 {
  margin: 0.7rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.55;
}

.contact-guide ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-line);
  list-style: none;
}

.contact-guide li {
  min-height: 120px;
  padding: 1.2rem;
  background: var(--ruska-paper);
}

.contact-guide li span {
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
}

.contact-guide li p {
  margin: 1.1rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.contact-note {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px solid var(--ruska-line);
  color: #64716d;
}

.contact-note svg {
  flex: 0 0 auto;
  color: var(--ruska-ember);
}

.contact-note p {
  margin: 0;
  font-size: 0.75rem;
}

/* Journal */
.journal-section {
  background: var(--ruska-cream);
}

.journal-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.journal-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.journal-feature > div:last-child > span,
.journal-feature > div:last-child > p:first-of-type {
  color: #75807c;
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.journal-feature > div:last-child > p:first-of-type {
  display: inline-block;
  margin-left: 1rem;
  color: var(--ruska-ember);
  text-transform: uppercase;
}

.journal-feature h2 {
  margin: 0.7rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  font-weight: 500;
  line-height: 1.5;
}

.journal-feature > div:last-child > p:last-of-type {
  color: #5f6c68;
  line-height: 2;
}

.journal-list {
  margin-top: 5rem;
  border-top: 1px solid var(--ruska-line);
}

.journal-list a {
  display: grid;
  grid-template-columns: 40px 105px 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 105px;
  border-bottom: 1px solid var(--ruska-line);
}

.journal-list a:hover h3 {
  color: var(--ruska-ember);
}

.journal-list a > svg:first-child {
  color: var(--ruska-ember);
}

.journal-list time,
.journal-list span {
  color: #75807c;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.07em;
}

.journal-list span {
  color: var(--ruska-ember);
  text-transform: uppercase;
}

.journal-list h3 {
  margin: 0;
  font-size: 0.96rem;
  transition: color 160ms ease;
}

.journal-archive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.8rem;
  border: 1px solid var(--ruska-line);
  background: var(--ruska-paper);
}

.journal-archive p {
  margin: 0;
  color: #64716d;
  font-size: 0.85rem;
}

/* Recruit */
.recruit-section {
  background: var(--ruska-cream);
}

.recruit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.recruit-message > p:not(.section-label) {
  color: #5e6b67;
  line-height: 2;
}

.recruit-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--ruska-green);
  color: white;
}

.recruit-card > p {
  margin: 0;
  color: #d9c473;
  font-family: ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.recruit-card h3 {
  margin: 0.8rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
}

.recruit-card dl {
  margin: 2.2rem 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.2);
}

.recruit-card dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.2);
}

.recruit-card dt {
  color: #aebbb7;
  font-size: 0.72rem;
}

.recruit-card dd {
  margin: 0;
  font-size: 0.82rem;
}

.recruit-card small {
  display: block;
  margin-top: 1.5rem;
  color: #9eaca8;
  font-size: 0.67rem;
}

.recruit-welcome {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem;
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--ruska-line);
}

.recruit-welcome h2 {
  margin: 0.7rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.5;
}

.recruit-welcome ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ruska-line);
  list-style: none;
}

.recruit-welcome li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--ruska-line);
  font-size: 0.86rem;
}

.recruit-welcome li svg {
  flex: 0 0 auto;
  color: var(--ruska-ember);
}

.recruit-contact {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.4rem;
  align-items: center;
  margin-top: 5rem;
  padding: 2.2rem;
  background: var(--ruska-ember);
  color: white;
}

.recruit-contact p {
  margin: 0;
  color: #f4d7ca;
  font-family: ui-monospace, monospace;
  font-size: 0.67rem;
}

.recruit-contact h2 {
  margin: 0.3rem 0 0;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.not-found {
  display: grid;
  min-height: 70svh;
  place-items: center;
  padding: 4rem 1rem;
  background: var(--ruska-paper);
  text-align: center;
}

.not-found p {
  color: var(--ruska-ember);
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.not-found h1 {
  margin: 1rem 0 2.4rem;
  font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, sans-serif;
  font-size: clamp(2.3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    margin-left: 0;
  }

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

  .footer-contact {
    grid-column: 2 / 4;
  }

  .home-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 6.4vw, 5.2rem);
  }

  .featured-courses {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-course:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .featured-course:last-child .course-image {
    aspect-ratio: auto;
  }

  .compact-courses {
    grid-template-columns: repeat(3, 1fr);
  }

  .community-grid,
  .home-access-grid {
    grid-template-columns: 1fr;
  }

  .community-copy {
    max-width: 760px;
  }

  .price-grid,
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card:last-child,
  .schedule-grid article:last-child {
    grid-column: 1 / -1;
  }

  .fee-notes {
    grid-template-columns: 1fr;
  }

  .activity-grid,
  .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rhythm-price-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .rhythm-price-row > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
    font-size: 16px;
  }

  .shell {
    width: min(100% - 2rem, 1180px);
  }

  .topline-inner {
    min-height: 25px;
  }

  .topline-note {
    display: none;
  }

  .header-inner {
    min-height: 64px;
    gap: 0.65rem;
  }

  .brand {
    width: min(48vw, 190px);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu {
    margin-left: auto;
  }

  .mobile-menu summary {
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-trial-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: block;
    padding: 0.55rem 1rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgb(255 253 248 / 0.96);
    box-shadow: 0 -8px 28px rgb(22 38 35 / 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-trial-bar a {
    display: flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: var(--ruska-gold);
    color: var(--ruska-ink);
    font-size: 0.9rem;
    font-weight: 700;
  }

  .page-intro {
    padding-block: 4rem 4.5rem;
    background:
      linear-gradient(90deg, transparent 0 72%, rgb(154 207 194 / 0.22) 72%),
      var(--ruska-paper);
  }

  .page-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .page-intro h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .page-intro-grid > div > p {
    font-size: 1rem;
  }

  .trial-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .trial-cta-actions,
  .trial-cta-actions .button {
    width: 100%;
    align-items: center;
  }

  .trial-cta-actions .text-link {
    align-self: center;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.3rem;
  }

  .location-mini article {
    grid-template-columns: auto 1fr;
  }

  .location-mini article > a {
    grid-column: 2;
  }

  .home-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.7rem;
    padding-block: 3.7rem 2.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 5rem);
    line-height: 1.22;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 1.4rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-image-wrap {
    inset: 0 0 2rem;
  }

  .hero-caption {
    bottom: 0.7rem;
    left: 0.8rem;
  }

  .hero-color-blocks {
    right: -1rem;
    width: 52%;
    height: 68px;
  }

  .hero-course-line div {
    width: auto;
    margin-left: 1rem;
  }

  .home-intro-grid,
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

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

  .promise-grid article {
    min-height: 0;
  }

  .promise-grid h3 {
    margin-top: 1.6rem;
  }

  .section-topline,
  .voices-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-courses {
    grid-template-columns: 1fr;
  }

  .featured-course:last-child {
    grid-column: auto;
    display: block;
  }

  .featured-course:last-child .course-image {
    aspect-ratio: 4 / 3;
  }

  .course-card-copy > p:not(:first-child) {
    min-height: 0;
  }

  .compact-courses {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-courses a {
    min-height: 135px;
  }

  .community-photo::before {
    top: -0.7rem;
    right: -0.7rem;
  }

  .community-photo img {
    aspect-ratio: 2 / 1;
  }

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

  .voice-grid blockquote {
    min-height: 200px;
  }

  .guide-copy {
    position: static;
  }

  .guide-copy .button {
    width: 100%;
  }

  .steps-list li {
    grid-template-columns: 46px 1fr;
  }

  .news-list a {
    grid-template-columns: 90px 1fr auto;
    gap: 0.55rem;
    padding-block: 1rem;
  }

  .news-list > a > span {
    display: none;
  }

  .news-list strong {
    line-height: 1.65;
  }

  .home-checklist-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .home-checklist ul {
    width: 100%;
    margin-left: 0;
  }

  .lesson-catalog {
    grid-template-columns: 1fr;
  }

  .lesson-catalog-card {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.4rem;
  }

  .lesson-catalog-number {
    width: 42px;
    height: 42px;
  }

  .lesson-catalog-arrow {
    top: 1.4rem;
    right: 1.4rem;
  }

  .fee-heading-grid,
  .choose-grid,
  .faq-grid,
  .rhythm-definition-grid,
  .rhythm-benefits,
  .rhythm-reasons-grid,
  .schedule-heading,
  .rhythm-future-grid,
  .teacher-note-grid,
  .about-hero-grid,
  .about-belief-grid,
  .about-community-grid,
  .representative-grid,
  .access-note-grid,
  .contact-grid,
  .contact-guide,
  .journal-feature,
  .recruit-grid,
  .recruit-welcome {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .price-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .price-card:last-child,
  .schedule-grid article:last-child {
    grid-column: auto;
  }

  .price-card {
    min-height: 290px;
  }

  .choose-cards article {
    grid-template-columns: 62px 1fr;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 1rem;
  }

  .rhythm-hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3.5rem 2.5rem;
  }

  .rhythm-hero-copy h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }

  .rhythm-hero-image::before {
    top: -0.8rem;
    right: -0.8rem;
  }

  .rhythm-hero-image img {
    min-height: 380px;
  }

  .rhythm-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .rhythm-flow svg {
    display: none;
  }

  .rhythm-benefits ul,
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-reasons-title {
    position: static;
  }

  .rhythm-price-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .rhythm-price-row > div,
  .rhythm-price-row > p {
    padding: 1rem 0.7rem;
  }

  .rhythm-price-row span {
    font-size: 0.95rem;
  }

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

  .teacher-copy > p:last-child {
    min-height: 0;
  }

  .teacher-note-grid,
  .access-note-grid {
    gap: 1.5rem;
  }

  .about-hero {
    padding-top: 4.5rem;
  }

  .about-hero h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .about-color-strip {
    margin-top: 3rem;
  }

  .belief-statements article {
    grid-template-columns: 42px 1fr;
  }

  .representative-photo {
    width: min(88%, 420px);
  }

  .representative-photo span {
    right: -1rem;
  }

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

  .access-classes {
    min-height: 0;
  }

  .contact-primary {
    min-height: 390px;
  }

  .contact-options > a {
    grid-template-columns: auto 1fr auto;
    padding: 1.4rem;
  }

  .contact-guide ol {
    grid-template-columns: 1fr;
  }

  .journal-list a {
    grid-template-columns: 32px 88px 1fr auto;
    gap: 0.6rem;
    padding-block: 1rem;
  }

  .journal-list span {
    display: none;
  }

  .journal-list h3 {
    font-size: 0.86rem;
    line-height: 1.7;
  }

  .journal-archive {
    align-items: stretch;
    flex-direction: column;
  }

  .recruit-card dl > div {
    grid-template-columns: 74px 1fr;
  }

  .recruit-contact {
    grid-template-columns: auto 1fr;
  }

  .recruit-contact .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

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

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