@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@500;600;700&display=swap");

:root {
  --ink: #141312;
  --ink-soft: #252321;
  --paper: #f7f3ec;
  --paper-deep: #ebe5db;
  --white: #fffdf9;
  --red: #bd382e;
  --red-dark: #97291f;
  --muted: #6d6963;
  --line: rgba(20, 19, 18, 0.14);
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --serif: "Noto Serif JP", Georgia, serif;
  --sans: "DM Sans", "Noto Sans JP", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

html[data-lang="en"] [lang="ja"],
html[data-lang="ja"] [lang="en"] { display: none !important; }

.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 10vw, 9rem); }
.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: 1000;
  left: 1rem;
  top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  color: #fff;
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}
.announcement__mark { width: 6px; height: 6px; border-radius: 50%; background: #fff; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 34px;
  left: 0;
  right: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
}
.brand__text { display: grid; line-height: 1.1; }
.brand__text strong { font-size: 0.95rem; letter-spacing: 0.14em; }
.brand__text small { margin-top: 0.35rem; font-size: 0.58rem; letter-spacing: 0.14em; opacity: 0.7; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.5rem); margin-left: auto; }
.desktop-nav a {
  position: relative;
  padding-block: 0.8rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.35rem;
  height: 2px;
  background: var(--red);
  transition: right 0.25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.desktop-nav a.is-current::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.language-switcher {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}
.lang-button {
  min-height: 34px;
  padding: 0.25rem 0.75rem;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}
.lang-button.is-active { background: var(--white); color: var(--ink); }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }
.menu-button[aria-expanded="true"] > span:nth-last-child(3) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] > span:nth-last-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] > span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { background: var(--ink); padding: 0.5rem var(--gutter) 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a { display: flex; min-height: 50px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); font-weight: 600; }
.mobile-nav a.is-current { color: #f06a5c; }

.hero {
  position: relative;
  min-height: min(880px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0c0c0c;
}
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,0.95) 0%, rgba(6,6,6,0.66) 45%, rgba(6,6,6,0.08) 78%),
    linear-gradient(0deg, rgba(6,6,6,0.65) 0%, transparent 42%);
}
.hero__content { position: relative; z-index: 2; padding-top: 8.5rem; padding-bottom: 5rem; }
.eyebrow, .section-label { margin: 0 0 1.4rem; color: var(--red); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.72); }
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
.hero h1 em, .philosophy blockquote em { color: #e65042; font-style: normal; }
html[data-lang="ja"] .hero h1 { letter-spacing: -0.07em; line-height: 1.16; }
.hero__lead { max-width: 660px; margin: 1.75rem 0 0; color: rgba(255,255,255,0.76); font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid #f1aa42; outline-offset: 3px; }
.button--primary { background: var(--red); color: #fff; }
.button--primary:hover { background: var(--red-dark); }
.button--ghost { border-color: rgba(255,255,255,0.42); color: #fff; background: rgba(0,0,0,0.1); }
.button--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.hero__facts { display: flex; flex-wrap: wrap; gap: 0; margin: clamp(2.8rem, 6vw, 5rem) 0 0; padding: 0; list-style: none; }
.hero__facts li { min-width: 145px; display: grid; gap: 0.15rem; padding: 0.2rem 2rem; border-left: 1px solid rgba(255,255,255,0.22); }
.hero__facts li:first-child { padding-left: 0; border-left: 0; }
.hero__facts strong { font-size: 1.08rem; letter-spacing: 0.08em; }
.hero__facts span { color: rgba(255,255,255,0.55); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hero__scroll { position: absolute; z-index: 2; right: var(--gutter); bottom: 0; display: flex; align-items: center; gap: 1rem; writing-mode: vertical-rl; color: rgba(255,255,255,0.58); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 62px; background: linear-gradient(to bottom, rgba(255,255,255,0.75), transparent); }

.reveal { animation: rise-in 0.8s ease both; }
.reveal--delay-1 { animation-delay: 0.08s; }
.reveal--delay-2 { animation-delay: 0.16s; }
.reveal--delay-3 { animation-delay: 0.24s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.intro { background: var(--paper); }
.intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.section-label { display: flex; align-items: center; gap: 0.8rem; }
.section-label > span:first-child { color: var(--muted); }
.section-label > span:first-child::after { content: "/"; margin-left: 0.8rem; color: var(--line); }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.2; }
html[data-lang="ja"] h2 { line-height: 1.45; }
.intro__copy { padding-top: 3.3rem; }
.intro__copy p { margin: 0 0 1.25rem; color: var(--muted); }
.intro__copy p:first-of-type { color: var(--ink-soft); font-size: 1.12rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(4rem, 8vw, 7rem); }
.value-card { min-height: 365px; position: relative; display: flex; align-items: end; overflow: hidden; padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--white); border: 1px solid var(--line); }
.value-card + .value-card { border-left: 0; }
.value-card--dark { background: var(--ink-soft); color: #fff; }
.value-card--red { background: var(--red); color: #fff; }
.value-card__kanji { position: absolute; top: -1.5rem; right: 0.8rem; color: rgba(20,19,18,0.055); font-family: var(--serif); font-size: clamp(9rem, 18vw, 15rem); font-weight: 700; line-height: 1; }
.value-card--dark .value-card__kanji, .value-card--red .value-card__kanji { color: rgba(255,255,255,0.08); }
.value-card__number { margin: 0 0 1.5rem; font-size: 0.72rem; letter-spacing: 0.12em; opacity: 0.55; }
.value-card h3 { margin: 0 0 0.7rem; font-family: var(--serif); font-size: 1.8rem; }
.value-card p:last-child { max-width: 260px; margin: 0; color: var(--muted); font-size: 0.9rem; }
.value-card--dark p:last-child, .value-card--red p:last-child { color: rgba(255,255,255,0.7); }

.difference { color: #fff; background: var(--ink); }
.difference__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr); gap: clamp(3rem, 9vw, 9rem); }
.section-label--light { color: #e65042; }
.section-label--light > span:first-child { color: rgba(255,255,255,0.45); }
.difference__heading { position: sticky; top: 2rem; align-self: start; }
.difference__heading > p:last-child { max-width: 450px; margin: 1.5rem 0 0; color: rgba(255,255,255,0.6); }
.difference__list article { display: grid; grid-template-columns: 64px 1fr; gap: 1.4rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.13); }
.difference__list article:last-child { border-bottom: 1px solid rgba(255,255,255,0.13); }
.feature-icon { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; color: #e65042; font-family: var(--serif); font-size: 1.2rem; }
.difference__list h3 { margin: 0 0 0.5rem; font-family: var(--serif); font-size: 1.35rem; }
.difference__list p { margin: 0; color: rgba(255,255,255,0.57); font-size: 0.94rem; }

.lessons { background: var(--paper-deep); }
.section-heading--center { max-width: 770px; margin-inline: auto; text-align: center; }
.section-heading--center .section-label { justify-content: center; }
.section-heading--center > p:last-child { max-width: 620px; margin: 1.3rem auto 0; color: var(--muted); }
.steps { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: clamp(3rem, 7vw, 5.5rem) 0 0; padding: 0; list-style: none; background: var(--line); border: 1px solid var(--line); }
.steps::before { content: ""; position: absolute; top: 6.55rem; left: 25%; right: 25%; border-top: 1px dashed rgba(20,19,18,0.18); }
.steps li { position: relative; min-height: 330px; padding: 2rem; background: var(--paper); text-align: center; }
.steps__number { position: absolute; top: 1.25rem; left: 1.35rem; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.1em; }
.steps__icon { width: 74px; height: 74px; display: grid; place-items: center; margin: 2rem auto 1.5rem; border: 1px solid var(--red); border-radius: 50%; background: var(--paper); color: var(--red); }
.steps__icon svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.steps h3 { margin: 0 0 0.7rem; font-family: var(--serif); font-size: 1.35rem; }
.steps p { max-width: 260px; margin: 0 auto; color: var(--muted); font-size: 0.9rem; }
.lesson-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.4rem 1.7rem; border: 1px solid var(--line); border-top: 0; background: rgba(255,255,255,0.35); }
.lesson-note > div { display: flex; align-items: center; gap: 0.7rem; }
.lesson-note__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.lesson-note p { margin: 0; color: var(--muted); font-size: 0.86rem; text-align: right; }

.philosophy { position: relative; overflow: hidden; padding-block: clamp(6rem, 13vw, 11rem); color: #fff; background: var(--red); }
.philosophy::before { content: ""; position: absolute; inset: 0; opacity: 0.13; background-image: radial-gradient(rgba(255,255,255,0.65) 0.5px, transparent 0.5px); background-size: 7px 7px; }
.philosophy__inner { position: relative; z-index: 1; max-width: 1000px; text-align: center; }
.philosophy .section-label { justify-content: center; color: rgba(255,255,255,0.75); }
.philosophy blockquote { margin: 1.5rem 0 0; font-family: var(--serif); font-size: clamp(2rem, 5.2vw, 4.5rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.35; }
.philosophy blockquote em { color: #fff2d8; }
.philosophy__inner > p:last-child { max-width: 660px; margin: 1.7rem auto 0; color: rgba(255,255,255,0.72); }
.philosophy__stamp { position: absolute; right: -0.05em; bottom: -0.25em; color: rgba(255,255,255,0.07); font-family: var(--serif); font-size: min(46vw, 36rem); font-weight: 700; line-height: 1; }

.contact-cta { background: var(--white); }
.contact-cta__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.7fr); gap: clamp(3rem, 9vw, 9rem); align-items: end; }
.contact-cta h2 { font-size: clamp(2.1rem, 4.5vw, 4rem); }
.contact-cta__action > p { margin: 0 0 1.6rem; color: var(--muted); }
.button--dark { width: 100%; border: 0; background: var(--ink); color: #fff; }
.button--dark:disabled { cursor: not-allowed; opacity: 0.82; }
.button--dark:disabled:hover { transform: none; }
.contact-cta__action small { display: block; margin-top: 0.75rem; color: var(--muted); font-size: 0.75rem; }

.site-footer { padding: 4rem 0 1.25rem; color: #fff; background: #0d0d0c; }
.footer__main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; padding-bottom: 3.5rem; }
.brand--footer .brand__mark { width: 42px; height: 42px; }
.footer__main > p { margin: 0; color: rgba(255,255,255,0.5); font-size: 0.9rem; text-align: center; }
.footer__main > a { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.78rem; letter-spacing: 0.06em; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.38); }
.footer__bottom small { font-size: 0.7rem; }

/* About page */
.page-hero {
  position: relative;
  min-height: min(760px, 92svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.page-hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.73) 46%, rgba(10,9,8,0.25) 100%), linear-gradient(0deg, rgba(10,9,8,0.78), transparent 45%); }
.page-hero__content { position: relative; z-index: 2; padding-top: 9rem; padding-bottom: 7rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.65rem; margin: 0 0 3rem; color: rgba(255,255,255,0.55); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; }
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 7.2vw, 6.8rem); font-weight: 600; letter-spacing: -0.055em; line-height: 1.05; }
.page-hero h1 em { color: #e65042; font-style: normal; }
html[data-lang="ja"] .page-hero h1 { line-height: 1.2; }
.page-hero__lead { max-width: 660px; margin: 1.8rem 0 0; color: rgba(255,255,255,0.74); font-size: 1.05rem; line-height: 1.85; }
.page-hero__meta { position: absolute; z-index: 3; right: 0; bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(145px, 1fr)); background: rgba(15,14,13,0.86); border-top: 1px solid rgba(255,255,255,0.13); border-left: 1px solid rgba(255,255,255,0.13); backdrop-filter: blur(16px); }
.page-hero__meta > div { display: grid; gap: 0.2rem; padding: 1.35rem 1.8rem; border-right: 1px solid rgba(255,255,255,0.13); }
.page-hero__meta strong { font-family: var(--serif); font-size: 1.55rem; }
.page-hero__meta span { color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; }

.origin { background: var(--paper); }
.origin__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.origin__visual { position: relative; }
.origin__visual::before { content: ""; position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem; border: 1px solid rgba(189,56,46,0.3); }
.origin__visual img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; filter: saturate(0.85) contrast(1.03); }
.origin__caption { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 0.75rem; margin: -0.8rem 1.5rem 0; padding: 1rem 1.15rem; color: #fff; background: var(--red); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.origin__caption > span:first-child::after { content: "/"; margin-left: 0.75rem; opacity: 0.5; }
.origin__content h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
.origin__content > p:not(.section-label) { margin: 1.5rem 0 0; color: var(--muted); }
.origin__content > p:nth-of-type(2) { color: var(--ink-soft); font-size: 1.08rem; }

.journey { color: #fff; background: var(--ink); }
.journey__heading { max-width: 850px; }
.journey__timeline { margin-top: clamp(3.5rem, 7vw, 6rem); }
.journey__timeline article { display: grid; grid-template-columns: 170px 1fr; gap: 2rem; padding: 2.2rem 0; border-top: 1px solid rgba(255,255,255,0.13); }
.journey__timeline article:last-child { border-bottom: 1px solid rgba(255,255,255,0.13); }
.journey__year { margin: 0; color: #e65042; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; }
.journey__timeline h3 { margin: 0 0 0.65rem; font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2rem); }
.journey__timeline article div p { max-width: 760px; margin: 0; color: rgba(255,255,255,0.58); }
.journey__countries { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3rem; }
.journey__countries > p { margin: 0; color: rgba(255,255,255,0.42); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.journey__countries ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.journey__countries li { padding: 0.55rem 0.85rem; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.73); font-size: 0.68rem; letter-spacing: 0.08em; }

.instructor { background: var(--paper-deep); }
.instructor__grid { display: grid; grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.instructor__intro { display: flex; flex-direction: column; }
.instructor__intro h2 { font-size: clamp(2.1rem, 4.6vw, 3.9rem); }
.instructor__name { margin-top: auto; padding-top: 4rem; }
.instructor__name > p { margin: 0 0 0.3rem; color: var(--red); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.instructor__name h3 { margin: 0; font-family: var(--serif); font-size: 2rem; }
.instructor__name small { display: block; margin-top: 0.45rem; color: var(--muted); font-size: 0.76rem; }
.instructor__message { position: relative; padding: clamp(2rem, 4vw, 4rem); background: var(--white); border: 1px solid var(--line); }
.instructor__quote { position: absolute; right: 1.5rem; top: -0.2rem; color: rgba(189,56,46,0.13); font-family: Georgia, serif; font-size: 10rem; line-height: 1; }
.instructor__message blockquote { position: relative; z-index: 1; margin: 0; }
.instructor__message blockquote p { margin: 0 0 1.5rem; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 2; }
.instructor__facts { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 2.2rem; border-top: 1px solid var(--line); }
.instructor__facts > div { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1rem 0; }
.instructor__facts > div:first-child { padding-left: 0; border-right: 1px solid var(--line); }
.instructor__facts strong { color: var(--red); font-family: var(--serif); font-size: 2.5rem; line-height: 1; }
.instructor__facts span { color: var(--muted); font-size: 0.76rem; line-height: 1.45; }

.roots { color: #fff; background: var(--red); }
.roots__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.roots__content > p:not(.section-label) { margin: 1.5rem 0 2rem; color: rgba(255,255,255,0.72); }
.button--outline-light { border-color: rgba(255,255,255,0.5); color: #fff; }
.button--outline-light:hover { background: #fff; color: var(--red); }
.roots__visual { margin: 0; }
.roots__visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid rgba(255,255,255,0.3); box-shadow: 1.2rem 1.2rem 0 rgba(25,20,18,0.18); }
.roots__visual figcaption { margin-top: 1rem; color: rgba(255,255,255,0.6); font-size: 0.73rem; letter-spacing: 0.06em; text-align: right; }

.about-cta { background: var(--white); }
.about-cta__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.about-cta__inner > div:last-child > p { margin: 0 0 1.5rem; color: var(--muted); }
.about-cta__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button--outline-dark { border-color: var(--line); color: var(--ink); }
.button--outline-dark:hover { border-color: var(--ink); }

/* Courses & pricing page */
.plans-hero { position: relative; min-height: 650px; display: flex; align-items: center; overflow: hidden; color: #fff; background: var(--ink); }
.plans-hero::before { content: ""; position: absolute; inset: 0; opacity: 0.13; background-image: linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px); background-size: 64px 64px; }
.plans-hero__circle { position: absolute; width: min(55vw, 650px); aspect-ratio: 1; right: -8vw; top: -18%; border-radius: 50%; background: var(--red); opacity: 0.92; }
.plans-hero__number { position: absolute; right: clamp(1rem, 10vw, 8rem); bottom: -0.24em; color: rgba(255,255,255,0.08); font-family: var(--serif); font-size: min(45vw, 31rem); font-weight: 700; line-height: 1; }
.plans-hero__content { position: relative; z-index: 2; padding-top: 10rem; padding-bottom: 5.5rem; }
.plans-hero h1 { max-width: 930px; margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6.8vw, 6.4rem); font-weight: 600; letter-spacing: -0.055em; line-height: 1.05; }
.plans-hero h1 em { color: #ef5a4b; font-style: normal; }
html[data-lang="ja"] .plans-hero h1 { line-height: 1.22; }
.plans-hero__lead { max-width: 680px; margin: 1.6rem 0 0; color: rgba(255,255,255,0.7); font-size: 1.04rem; }
.plans-hero__facts { display: flex; flex-wrap: wrap; margin: 2.8rem 0 0; padding: 0; list-style: none; }
.plans-hero__facts li { min-width: 155px; display: grid; gap: 0.1rem; padding: 0.2rem 2rem; border-left: 1px solid rgba(255,255,255,0.2); }
.plans-hero__facts li:first-child { padding-left: 0; border-left: 0; }
.plans-hero__facts strong { font-size: 1.05rem; letter-spacing: 0.08em; }
.plans-hero__facts span { color: rgba(255,255,255,0.5); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }

.pricing { background: var(--paper); }
.pricing__heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr); gap: 3rem; align-items: end; }
.pricing__heading h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); }
.pricing__intro { padding-bottom: 0.4rem; }
.trial-pill { display: inline-flex; padding: 0.55rem 0.8rem; color: #fff; background: var(--red); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; }
.pricing__intro p { margin: 1rem 0 0; color: var(--muted); font-size: 0.9rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: clamp(3rem, 7vw, 5.5rem); padding: 1px; background: var(--line); }
.price-card { min-height: 570px; display: flex; flex-direction: column; padding: clamp(1.5rem, 3.2vw, 2.8rem); background: var(--white); }
.price-card--red { color: #fff; background: var(--red); }
.price-card--dark { color: #fff; background: var(--ink-soft); }
.price-card--paper { background: var(--paper-deep); }
.price-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price-card__top > p { margin: 0; color: var(--red); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; }
.price-card--red .price-card__top > p, .price-card--dark .price-card__top > p { color: rgba(255,255,255,0.72); }
.price-card__badge { padding: 0.4rem 0.6rem; border: 1px solid var(--line); color: var(--muted); font-size: 0.65rem; }
.price-card--red .price-card__badge, .price-card--dark .price-card__badge { border-color: rgba(255,255,255,0.24); color: rgba(255,255,255,0.72); }
.price-card h3 { margin: 1.6rem 0 0; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.35rem); line-height: 1.35; }
.price { display: flex; align-items: baseline; gap: 0.2rem; margin-top: 1.2rem; }
.price sup { align-self: flex-start; padding-top: 0.75rem; font-size: 1.1rem; }
.price strong { font-family: var(--serif); font-size: clamp(3.8rem, 7vw, 6rem); font-weight: 600; line-height: 1; letter-spacing: -0.06em; }
.price > span { color: var(--muted); font-size: 0.78rem; }
.price-card--red .price > span, .price-card--dark .price > span { color: rgba(255,255,255,0.6); }
.price-card__description { min-height: 3.6em; margin: 1.1rem 0 0; color: var(--muted); font-size: 0.9rem; }
.price-card--red .price-card__description, .price-card--dark .price-card__description { color: rgba(255,255,255,0.68); }
.price-card__details { margin: 1.6rem 0 2rem; border-top: 1px solid var(--line); }
.price-card--red .price-card__details, .price-card--dark .price-card__details { border-color: rgba(255,255,255,0.2); }
.price-card__details > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.72rem 0; border-bottom: 1px solid var(--line); }
.price-card--red .price-card__details > div, .price-card--dark .price-card__details > div { border-color: rgba(255,255,255,0.16); }
.price-card__details dt { color: var(--muted); font-size: 0.75rem; }
.price-card--red .price-card__details dt, .price-card--dark .price-card__details dt { color: rgba(255,255,255,0.55); }
.price-card__details dd { margin: 0; font-size: 0.82rem; font-weight: 700; text-align: right; }
.price-card .button { width: 100%; margin-top: auto; }
.button--light { background: #fff; color: var(--red); }
.button--light:hover { background: var(--paper); }
.pricing__note { margin-top: 1.25rem; color: var(--muted); font-size: 0.78rem; text-align: right; }
.pricing__note a, .lesson-note a { font-weight: 700; text-decoration: underline; text-underline-offset: 0.2em; }

.schedule-band { padding-block: clamp(5rem, 10vw, 8rem); color: #fff; background: var(--ink); }
.schedule-band__grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(400px, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.schedule-band__grid > div > p:last-child { max-width: 500px; margin: 1.4rem 0 0; color: rgba(255,255,255,0.55); }
.time-slots { margin: 0; padding: 0; list-style: none; }
.time-slots li { display: grid; grid-template-columns: 58px 1fr; align-items: center; padding: 1.15rem 0; border-top: 1px solid rgba(255,255,255,0.15); }
.time-slots li:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.time-slots span { color: #e65042; font-size: 0.68rem; letter-spacing: 0.1em; }
.time-slots strong { font-family: var(--serif); font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 500; letter-spacing: 0.02em; }

.trial { background: var(--paper-deep); }
.trial__panel { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); gap: clamp(3rem, 8vw, 7rem); align-items: end; overflow: hidden; padding: clamp(2rem, 5vw, 5rem); border: 1px solid var(--line); background: var(--white); }
.trial__number { position: absolute; right: -0.03em; bottom: -0.35em; color: rgba(189,56,46,0.07); font-family: var(--serif); font-size: min(40vw, 24rem); font-weight: 700; line-height: 1; }
.trial__panel > div:not(.trial__number) { position: relative; z-index: 1; }
.trial__copy p { margin: 0 0 1.6rem; color: var(--muted); }

.preparation { background: var(--white); }
.preparation__heading { max-width: 850px; }
.preparation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: clamp(3rem, 6vw, 5rem); background: var(--line); border: 1px solid var(--line); }
.preparation-grid article { min-height: 310px; padding: 1.8rem; background: var(--paper); }
.preparation-card__number { color: var(--red); font-size: 0.7rem; letter-spacing: 0.1em; }
.preparation-grid h3 { margin: 3rem 0 0.7rem; font-family: var(--serif); font-size: 1.25rem; }
.preparation-grid p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.language-notice { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; margin-top: 1px; padding: 1.5rem 1.8rem; color: #fff; background: var(--red); }
.language-notice strong { font-size: 0.78rem; letter-spacing: 0.06em; }
.language-notice p { margin: 0; color: rgba(255,255,255,0.78); font-size: 0.86rem; }

.grading { color: #fff; background: var(--red); }
.grading__grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr); gap: clamp(3rem, 8vw, 8rem); }
.grading__grid > div > p:last-child { margin: 1.4rem 0 0; color: rgba(255,255,255,0.72); }
.grading__details { margin: 0; }
.grading__details > div { display: grid; grid-template-columns: 130px 1fr; gap: 2rem; padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,0.25); }
.grading__details > div:last-child { border-bottom: 1px solid rgba(255,255,255,0.25); }
.grading__details dt { color: rgba(255,255,255,0.6); font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; }
.grading__details dd { margin: 0; font-family: var(--serif); font-size: 1.05rem; }
.grading__note { margin-top: 2.2rem; color: rgba(255,255,255,0.6); font-size: 0.76rem; text-align: right; }

.enrollment { background: var(--paper-deep); }
.enrollment__heading { max-width: 800px; }
.enrollment-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(3rem, 6vw, 5rem); padding: 0; list-style: none; }
.enrollment-steps li { position: relative; min-height: 260px; padding: 1.8rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); background: rgba(255,255,255,0.34); }
.enrollment-steps li:last-child { border-right: 1px solid var(--line); }
.enrollment-steps li::after { content: "→"; position: absolute; z-index: 2; right: -0.75rem; top: 50%; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: 0.72rem; }
.enrollment-steps li:last-child::after { display: none; }
.enrollment-steps li > span { color: var(--red); font-size: 0.7rem; letter-spacing: 0.1em; }
.enrollment-steps h3 { margin: 3rem 0 0.7rem; font-family: var(--serif); font-size: 1.2rem; }
.enrollment-steps p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.policies { background: var(--white); }
.policies__grid { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.policies__list article { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.policies__list article:last-child { border-bottom: 1px solid var(--line); }
.policies__list h3 { margin: 0 0 0.5rem; font-family: var(--serif); font-size: 1.2rem; }
.policies__list p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.faq { color: #fff; background: var(--ink); }
.faq__grid { display: grid; grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.1fr); gap: clamp(3rem, 8vw, 8rem); }
.faq__heading { position: sticky; top: 2rem; align-self: start; }
.faq__list details { border-top: 1px solid rgba(255,255,255,0.15); }
.faq__list details:last-child { border-bottom: 1px solid rgba(255,255,255,0.15); }
.faq__list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; font-family: var(--serif); font-size: 1rem; list-style: none; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary > span:last-child { color: #e65042; font-family: var(--sans); font-size: 1.3rem; transition: transform 0.2s ease; }
.faq__list details[open] summary > span:last-child { transform: rotate(45deg); }
.faq__list details p { max-width: 680px; margin: -0.4rem 2.5rem 1.5rem 0; color: rgba(255,255,255,0.58); font-size: 0.9rem; }

.course-cta { background: var(--paper); }
.course-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.course-cta__inner > div:last-child > p { margin: 0 0 1.5rem; color: var(--muted); }

/* Activities page */
.activity-hero .page-hero__image { object-position: center 48%; filter: saturate(0.78) contrast(1.05); }
.activity-hero .page-hero__scrim { background: linear-gradient(90deg, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.76) 48%, rgba(10,9,8,0.24) 100%), linear-gradient(0deg, rgba(10,9,8,0.82), transparent 48%); }
.activity-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.activity-heading > p { margin: 0 0 0.35rem; color: var(--muted); }
.activity-heading--wide { align-items: start; }
.activity-heading--wide > p { padding-top: 3.4rem; }
.activity-lead { margin: 1.5rem 0 0; color: var(--muted); }

.training-flow { background: var(--paper); }
.flow-list { display: grid; grid-template-columns: repeat(6, 1fr); margin: clamp(3rem, 6vw, 5rem) 0 0; padding: 0; border: 1px solid var(--line); list-style: none; }
.flow-list li { position: relative; min-height: 145px; display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; padding: 1.2rem; background: rgba(255,255,255,0.4); border-right: 1px solid var(--line); }
.flow-list li:last-child { border-right: 0; }
.flow-list li::after { content: "→"; position: absolute; z-index: 2; top: 50%; right: -0.65rem; width: 1.3rem; height: 1.3rem; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: 0.62rem; }
.flow-list li:last-child::after { display: none; }
.flow-list li > span { color: var(--red); font-size: 0.68rem; letter-spacing: 0.1em; }
.flow-list strong { font-family: var(--serif); font-size: 0.96rem; line-height: 1.45; }
.technique-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.65fr) minmax(260px, 0.8fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; overflow: hidden; margin-top: 1px; padding: clamp(2rem, 5vw, 4.5rem); color: #fff; background: var(--ink); }
.technique-panel__mark { position: absolute; right: -0.05em; bottom: -0.45em; margin: 0; color: rgba(255,255,255,0.045); font-family: var(--serif); font-size: min(34vw, 23rem); font-weight: 700; line-height: 1; }
.technique-panel > *:not(.technique-panel__mark) { position: relative; z-index: 1; }
.technique-panel h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.4vw, 3.1rem); line-height: 1.35; }
.technique-panel ul { margin: 0; padding: 0; list-style: none; }
.technique-panel li { padding: 0.65rem 0; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.78); font-size: 0.84rem; }
.technique-panel li:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.technique-panel > p:last-child { margin: 0; color: rgba(255,255,255,0.58); font-size: 0.9rem; }

.personal-training { background: var(--white); }
.personal-training__grid { display: grid; grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.05fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.activity-photo { margin: 0; }
.activity-photo img { width: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.activity-photo--portrait { position: relative; }
.activity-photo--portrait::before { content: ""; position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem; border: 1px solid rgba(189,56,46,0.32); }
.activity-photo--portrait img { position: relative; z-index: 1; aspect-ratio: 4 / 5.2; object-position: center; }
.activity-photo figcaption { position: relative; z-index: 2; margin: -0.8rem 1.3rem 0; padding: 0.9rem 1rem; color: #fff; background: var(--red); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.personal-training__content h2 { font-size: clamp(2.2rem, 4.7vw, 4rem); }
.lesson-style-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 2.5rem; border: 1px solid var(--line); background: var(--line); }
.lesson-style-grid article { min-height: 280px; padding: 1.6rem; background: var(--paper); }
.lesson-style-grid__number { color: var(--red); font-size: 0.68rem; letter-spacing: 0.1em; }
.lesson-style-grid h3 { margin: 3rem 0 0.7rem; font-family: var(--serif); font-size: 1.2rem; }
.lesson-style-grid p { margin: 0; color: var(--muted); font-size: 0.86rem; }
.followup-note { margin-top: 1px; padding: 1.4rem 1.6rem; color: #fff; background: var(--red); }
.followup-note strong { font-family: var(--serif); }
.followup-note p { margin: 0.4rem 0 0; color: rgba(255,255,255,0.76); font-size: 0.84rem; }

.culture-section { color: #fff; background: var(--ink); }
.culture-section__grid { display: grid; grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.08fr); gap: clamp(3rem, 8vw, 8rem); }
.culture-section__grid > div:first-child { position: sticky; top: 2rem; align-self: start; }
.culture-section__grid > div:first-child > p:last-child { margin: 1.5rem 0 0; color: rgba(255,255,255,0.6); }
.growth-list article { display: grid; grid-template-columns: 58px 1fr; gap: 1.3rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.14); }
.growth-list article:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.growth-list article > span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; color: #e65042; font-size: 0.7rem; }
.growth-list h3 { margin: 0 0 0.55rem; font-family: var(--serif); font-size: 1.28rem; }
.growth-list p { margin: 0; color: rgba(255,255,255,0.57); font-size: 0.9rem; }

.community-section { background: var(--paper-deep); }
.community-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: clamp(3rem, 6vw, 5rem); }
.activity-photo--wide img { aspect-ratio: 16 / 10; object-position: center; }
.connection-cards { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1rem; border: 1px solid var(--line); }
.connection-cards article { position: relative; min-height: 330px; overflow: hidden; padding: 2rem; background: rgba(255,255,255,0.38); border-right: 1px solid var(--line); }
.connection-cards article:last-child { border-right: 0; }
.connection-cards__kanji { position: absolute; right: -0.08em; top: -0.18em; color: rgba(189,56,46,0.07); font-family: var(--serif); font-size: 10rem; font-weight: 700; line-height: 1; }
.connection-cards h3 { position: relative; margin: 5rem 0 0.8rem; font-family: var(--serif); font-size: 1.35rem; }
.connection-cards p { position: relative; margin: 0; color: var(--muted); font-size: 0.88rem; }

.inperson-band { color: #fff; background: var(--red); }
.inperson-band__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.inperson-band__grid > div:first-child > p:last-child { max-width: 760px; margin: 1.5rem 0 0; color: rgba(255,255,255,0.72); }
.visit-note { padding: 2rem; border: 1px solid rgba(255,255,255,0.32); background: rgba(90,10,6,0.12); }
.visit-note strong { font-family: var(--serif); font-size: 1.15rem; }
.visit-note p { margin: 0.8rem 0 0; color: rgba(255,255,255,0.72); font-size: 0.88rem; }

.instagram-section { background: var(--white); }
.instagram-section__grid { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.instagram-section__grid > div:first-child > p:last-child { margin: 1.4rem 0 0; color: var(--muted); }
.instagram-card { display: grid; grid-template-columns: minmax(190px, 0.72fr) minmax(260px, 1fr); border: 1px solid var(--line); background: var(--paper); }
.instagram-card__visual { position: relative; min-height: 390px; overflow: hidden; padding: 1rem; background: linear-gradient(145deg, #1688ef, #693cff); }
.instagram-card__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 2px; }
.instagram-card__visual > span { position: absolute; left: 1.75rem; right: 1.75rem; bottom: 1.7rem; padding: 0.65rem 0.9rem; color: #fff; background: rgba(12,11,28,0.72); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; backdrop-filter: blur(8px); }
.instagram-card__content { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(1.8rem, 4vw, 3.5rem); }
.instagram-card__label { margin: 0; color: var(--red); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; }
.instagram-card h3 { max-width: 100%; margin: 1rem 0 0; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.3; }
.instagram-card__content > p:not(.instagram-card__label) { margin: 1rem 0 1.6rem; color: var(--muted); font-size: 0.88rem; }

.activity-cta { color: #fff; background: var(--ink); }
.activity-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.activity-cta__inner > div:last-child > p { margin: 0 0 1.6rem; color: rgba(255,255,255,0.62); }

/* Results page */
.results-hero .page-hero__image { object-position: center 48%; filter: saturate(0.74) contrast(1.08); }
.results-hero .page-hero__scrim { background: linear-gradient(90deg, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.78) 48%, rgba(10,9,8,0.22) 100%), linear-gradient(0deg, rgba(10,9,8,0.86), transparent 50%); }
.results-intro { background: var(--paper); }
.results-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.results-intro__grid > p { margin: 0 0 0.35rem; color: var(--muted); }
.result-year { margin: 0 0 1rem; color: var(--red); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; }

.featured-results { background: var(--paper-deep); }
.results-event-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.65fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.results-event-heading h2 { font-size: clamp(2.2rem, 4.8vw, 4.2rem); }
.event-meta { margin: 0; }
.event-meta > div { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; padding: 0.85rem 0; border-top: 1px solid var(--line); }
.event-meta > div:last-child { border-bottom: 1px solid var(--line); }
.event-meta dt { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.event-meta dd { margin: 0; font-size: 0.84rem; font-weight: 600; text-align: right; }
.featured-medals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: clamp(3.5rem, 7vw, 6rem); border: 1px solid var(--line); background: var(--line); }
.medal-card { display: grid; grid-template-columns: minmax(220px, 0.9fr) minmax(250px, 1fr); min-height: 560px; background: var(--white); }
.medal-card figure { margin: 0; overflow: hidden; }
.medal-card figure img { width: 100%; height: 100%; object-fit: cover; }
.medal-card--gold figure img { object-position: center 58%; }
.medal-card--silver figure img { object-position: 55% center; }
.medal-card__body { position: relative; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: clamp(1.5rem, 3vw, 2.5rem); }
.medal-card__place { position: absolute; right: -0.03em; top: -0.12em; display: flex; align-items: start; color: rgba(189,56,46,0.09); font-family: var(--serif); line-height: 1; }
.medal-card__place strong { font-size: clamp(8rem, 13vw, 12rem); }
.medal-card__place small { padding-top: 1.5rem; font-size: 1rem; }
.medal-card__result { position: relative; margin: 0 0 0.75rem; color: var(--red); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.medal-card h3 { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2.1rem); line-height: 1.45; }
.medal-card dl, .oiko-2025__result dl { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); margin: 2rem 0 0; border-top: 1px solid var(--line); }
.medal-card dl > div, .oiko-2025__result dl > div { padding: 1rem 0 0; }
.medal-card dl > div + div, .oiko-2025__result dl > div + div { padding-left: 1rem; border-left: 1px solid var(--line); }
.medal-card dt, .oiko-2025__result dt { color: var(--muted); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; }
.medal-card dd, .oiko-2025__result dd { margin: 0.35rem 0 0; font-size: 0.82rem; font-weight: 700; }

.domestic-result { background: var(--white); }
.domestic-result--reverse { background: var(--paper); }
.domestic-result__grid { display: grid; grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.domestic-result--reverse .result-photo { grid-column: 2; grid-row: 1; }
.domestic-result--reverse .domestic-result__content { grid-column: 1; grid-row: 1; }
.result-photo { position: relative; margin: 0; }
.result-photo::before { content: ""; position: absolute; inset: 1rem -1rem -1rem 1rem; border: 1px solid rgba(189,56,46,0.3); }
.result-photo img { position: relative; z-index: 1; width: 100%; object-fit: cover; filter: saturate(0.86) contrast(1.02); }
.result-photo--portrait img { aspect-ratio: 4 / 5; object-position: center; }
.result-photo--landscape img { aspect-ratio: 4 / 3.2; object-position: center; }
.domestic-result__content h2 { font-size: clamp(2rem, 4.4vw, 3.8rem); }
.result-facts { margin: 2.4rem 0 0; }
.result-facts > div { display: grid; grid-template-columns: 100px 1fr; gap: 1.5rem; padding: 0.9rem 0; border-top: 1px solid var(--line); }
.result-facts > div:last-child { border-bottom: 1px solid var(--line); }
.result-facts dt { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.result-facts dd { margin: 0; font-size: 0.88rem; font-weight: 600; }
.result-badge { position: relative; min-height: 110px; display: flex; align-items: center; justify-content: space-between; overflow: hidden; margin-top: 1.5rem; padding: 1.5rem 1.8rem; color: #fff; background: var(--red); }
.result-badge strong { position: relative; z-index: 1; font-family: var(--serif); font-size: 1.3rem; letter-spacing: 0.08em; }
.result-badge > span { position: absolute; right: -0.05em; bottom: -0.45em; color: rgba(255,255,255,0.15); font-family: var(--serif); font-size: 8rem; line-height: 1; }

.oiko-2025 { color: #fff; background: var(--ink); }
.results-event-heading--light .result-year { color: #e65042; }
.event-meta--light > div { border-color: rgba(255,255,255,0.15); }
.event-meta--light dt { color: rgba(255,255,255,0.45); }
.event-meta--light dd { color: rgba(255,255,255,0.82); }
.oiko-2025__gallery { display: grid; grid-template-columns: minmax(260px, 1.1fr) minmax(220px, 0.75fr) minmax(250px, 0.8fr); gap: 1px; margin-top: clamp(3.5rem, 7vw, 6rem); background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.16); }
.oiko-2025__gallery figure { margin: 0; overflow: hidden; }
.oiko-2025__gallery figure img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.oiko-2025__gallery figure:first-child img { object-position: 45% center; }
.oiko-2025__gallery figure:nth-child(2) img { object-position: center; }
.oiko-2025__result { position: relative; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: clamp(1.7rem, 3vw, 2.6rem); background: #201e1c; }
.oiko-2025__place { position: absolute; right: -0.04em; top: -0.25em; margin: 0; color: rgba(255,255,255,0.07); font-family: var(--serif); font-size: 12rem; font-weight: 700; line-height: 1; }
.oiko-2025__result h3 { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.45; }
.oiko-2025__result dl { border-color: rgba(255,255,255,0.17); }
.oiko-2025__result dl > div + div { border-color: rgba(255,255,255,0.17); }
.oiko-2025__result dt { color: rgba(255,255,255,0.45); }
.oiko-2025__result dd { color: rgba(255,255,255,0.8); }

.dual-results { margin-top: 1.5rem; border: 1px solid var(--line); }
.dual-results article { display: grid; grid-template-columns: 82px 1fr; align-items: center; min-height: 120px; border-bottom: 1px solid var(--line); }
.dual-results article:last-child { border-bottom: 0; }
.dual-results article > span { height: 100%; display: grid; place-items: center; color: #fff; background: var(--ink); font-family: var(--serif); font-size: 2rem; }
.dual-results article:first-child > span { background: #77736d; }
.dual-results article > div { padding: 1.2rem 1.4rem; }
.dual-results strong { font-family: var(--serif); font-size: 1.15rem; }
.dual-results p { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.82rem; }

.results-cta { color: #fff; background: var(--red); }
.results-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.results-cta__inner > div:last-child > p { margin: 0 0 1.5rem; color: rgba(255,255,255,0.72); }
.results-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; color: #fff; }
  .featured-medals { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .results-intro__grid, .results-event-heading, .domestic-result__grid, .results-cta__inner { grid-template-columns: 1fr; }
  .domestic-result--reverse .result-photo, .domestic-result--reverse .domestic-result__content { grid-column: auto; grid-row: auto; }
  .domestic-result--reverse .result-photo { order: -1; }
  .result-photo { width: min(100%, 680px); }
  .oiko-2025__gallery { grid-template-columns: repeat(2, 1fr); }
  .oiko-2025__result { grid-column: 1 / -1; min-height: 330px; }
}

@media (max-width: 600px) {
  .results-hero .page-hero__image { object-position: 56% center; }
  .medal-card { grid-template-columns: 1fr; min-height: 0; }
  .medal-card figure { height: 420px; }
  .medal-card__body { min-height: 350px; }
  .result-photo::before { display: none; }
  .result-facts > div { grid-template-columns: 78px 1fr; gap: 1rem; }
  .oiko-2025__gallery { grid-template-columns: 1fr; }
  .oiko-2025__gallery figure img { min-height: 0; height: auto; aspect-ratio: 4 / 4.6; }
  .oiko-2025__gallery figure:first-child img { object-position: center; }
  .oiko-2025__result { grid-column: auto; min-height: 360px; }
  .results-cta__actions { display: grid; grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .activity-heading, .personal-training__grid, .culture-section__grid, .inperson-band__grid, .instagram-section__grid, .activity-cta__inner { grid-template-columns: 1fr; }
  .activity-heading--wide > p { padding-top: 0; }
  .flow-list { grid-template-columns: repeat(3, 1fr); }
  .flow-list li:nth-child(3) { border-right: 0; }
  .flow-list li:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .flow-list li:nth-child(3)::after { display: none; }
  .technique-panel { grid-template-columns: 1fr 0.7fr; }
  .technique-panel > p:last-child { grid-column: 1 / -1; }
  .activity-photo--portrait { width: min(100%, 580px); }
  .culture-section__grid > div:first-child { position: static; }
  .connection-cards { grid-template-columns: 1fr; }
  .connection-cards article { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .connection-cards article:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  .activity-hero .page-hero__image { object-position: 56% center; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-list li:last-child { border-bottom: 0; }
  .flow-list li::after { display: none; }
  .technique-panel { grid-template-columns: 1fr; padding: 1.6rem; }
  .technique-panel > p:last-child { grid-column: auto; }
  .activity-photo--portrait::before { display: none; }
  .activity-photo figcaption { margin-inline: 0.7rem; }
  .lesson-style-grid { grid-template-columns: 1fr; }
  .lesson-style-grid article { min-height: 245px; }
  .community-gallery { grid-template-columns: 1fr; }
  .activity-photo--wide img { aspect-ratio: 4 / 3; }
  .connection-cards article { min-height: 245px; padding: 1.5rem; }
  .connection-cards h3 { margin-top: 4rem; }
  .instagram-card { grid-template-columns: 1fr; }
  .instagram-card__visual { min-height: 430px; }
  .instagram-card__content { align-items: stretch; }
  .instagram-card__content .button { width: 100%; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; color: #fff; }
  .hero { min-height: 850px; }
  .hero__image { object-position: 63% center; }
  .hero__scrim { background: linear-gradient(90deg, rgba(6,6,6,0.9) 0%, rgba(6,6,6,0.58) 65%, rgba(6,6,6,0.22)), linear-gradient(0deg, rgba(6,6,6,0.8), transparent 55%); }
  .hero__content { padding-top: 10rem; }
  .intro__grid, .difference__grid, .contact-cta__inner { grid-template-columns: 1fr; }
  .intro__copy { max-width: 680px; padding-top: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 280px; }
  .value-card + .value-card { border-left: 1px solid var(--line); border-top: 0; }
  .difference__heading { position: static; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .steps li { min-height: 280px; }
  .lesson-note { align-items: start; flex-direction: column; gap: 0.5rem; }
  .lesson-note p { text-align: left; }
  .page-hero { min-height: 760px; }
  .page-hero__image { object-position: 62% center; }
  .page-hero__scrim { background: linear-gradient(90deg, rgba(10,9,8,0.92), rgba(10,9,8,0.48)), linear-gradient(0deg, rgba(10,9,8,0.8), transparent 55%); }
  .page-hero__meta { left: var(--gutter); right: var(--gutter); }
  .origin__grid, .instructor__grid, .roots__grid, .about-cta__inner { grid-template-columns: 1fr; }
  .origin__visual { width: min(100%, 620px); }
  .instructor__name { padding-top: 2.5rem; }
  .pricing__heading, .schedule-band__grid, .trial__panel, .grading__grid, .policies__grid, .faq__grid, .course-cta__inner { grid-template-columns: 1fr; }
  .preparation-grid, .enrollment-steps { grid-template-columns: repeat(2, 1fr); }
  .enrollment-steps li:nth-child(2) { border-right: 1px solid var(--line); }
  .enrollment-steps li:nth-child(2)::after { display: none; }
  .faq__heading { position: static; }
}

@media (max-width: 600px) {
  :root { --gutter: 1.15rem; }
  .announcement { min-height: 40px; font-size: 0.7rem; }
  .site-header { top: 40px; }
  .header-inner { height: 74px; gap: 0.5rem; }
  .brand { gap: 0.55rem; }
  .brand__mark { width: 38px; height: 38px; font-size: 1.2rem; }
  .brand__text strong { font-size: 0.78rem; }
  .brand__text small { font-size: 0.48rem; }
  .header-actions { gap: 0.2rem; }
  .language-switcher { padding: 2px; }
  .lang-button { min-height: 34px; padding: 0.2rem 0.48rem; font-size: 0.64rem; }
  .hero { min-height: 790px; align-items: end; }
  .hero__image { object-position: 63% center; }
  .hero__scrim { background: linear-gradient(0deg, rgba(6,6,6,0.97) 3%, rgba(6,6,6,0.72) 48%, rgba(6,6,6,0.22) 100%); }
  .hero__content { padding-top: 10rem; padding-bottom: 3.2rem; }
  .eyebrow { font-size: 0.64rem; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); }
  html[data-lang="ja"] .hero h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero__lead { font-size: 0.94rem; line-height: 1.7; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__facts { margin-top: 2.4rem; }
  .hero__facts li { min-width: 33.33%; padding: 0.2rem 0.8rem; }
  .hero__facts strong { font-size: 0.85rem; }
  .hero__facts span { font-size: 0.58rem; }
  .hero__scroll { display: none; }
  .section { padding-block: 4.6rem; }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .value-card { min-height: 250px; }
  .difference__list article { grid-template-columns: 48px 1fr; gap: 1rem; }
  .feature-icon { width: 44px; height: 44px; }
  .steps li { min-height: 260px; padding: 1.5rem; }
  .philosophy blockquote { font-size: clamp(1.9rem, 9vw, 3rem); }
  .footer__main { grid-template-columns: 1fr auto; }
  .footer__main > p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
  .footer__bottom { flex-direction: column; gap: 0.3rem; }
  .page-hero { min-height: 780px; align-items: end; }
  .page-hero__image { object-position: 56% center; }
  .page-hero__scrim { background: linear-gradient(0deg, rgba(10,9,8,0.97) 4%, rgba(10,9,8,0.68) 58%, rgba(10,9,8,0.22)); }
  .page-hero__content { padding-top: 9rem; padding-bottom: 11.5rem; }
  .breadcrumb { margin-bottom: 2rem; }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  html[data-lang="ja"] .page-hero h1 { font-size: clamp(2.5rem, 11vw, 3.7rem); }
  .page-hero__lead { font-size: 0.93rem; line-height: 1.75; }
  .page-hero__meta { left: 0; right: 0; grid-template-columns: repeat(3, 1fr); }
  .page-hero__meta > div { padding: 1rem 0.7rem; }
  .page-hero__meta strong { font-size: 1.2rem; }
  .page-hero__meta span { font-size: 0.54rem; line-height: 1.45; }
  .origin__visual::before { display: none; }
  .origin__visual img { aspect-ratio: 4 / 4.7; }
  .origin__caption { margin: -0.8rem 0.8rem 0; }
  .journey__timeline article { grid-template-columns: 1fr; gap: 0.7rem; }
  .journey__countries { align-items: flex-start; flex-direction: column; }
  .journey__countries ul { justify-content: flex-start; }
  .instructor__message { padding: 1.5rem; }
  .instructor__message blockquote p { font-size: 1rem; line-height: 1.9; }
  .instructor__facts { grid-template-columns: 1fr; }
  .instructor__facts > div { padding: 1.2rem 0 0; }
  .instructor__facts > div:first-child { padding-bottom: 1.2rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .roots__visual img { box-shadow: 0.7rem 0.7rem 0 rgba(25,20,18,0.18); }
  .about-cta__actions { display: grid; grid-template-columns: 1fr; }
  .plans-hero { min-height: 720px; align-items: end; }
  .plans-hero__circle { width: 95vw; right: -48vw; top: 8%; }
  .plans-hero__number { right: -0.04em; font-size: 18rem; }
  .plans-hero__content { padding-top: 9rem; padding-bottom: 3.5rem; }
  .plans-hero h1 { font-size: clamp(2.7rem, 12.5vw, 4.2rem); }
  html[data-lang="ja"] .plans-hero h1 { font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .plans-hero__lead { font-size: 0.93rem; }
  .plans-hero__facts li { min-width: 33.33%; padding: 0.2rem 0.7rem; }
  .plans-hero__facts strong { font-size: 0.85rem; }
  .plans-hero__facts span { font-size: 0.55rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 530px; }
  .price-card__description { min-height: 0; }
  .time-slots li { grid-template-columns: 42px 1fr; }
  .trial__panel { padding: 1.5rem; }
  .trial__number { font-size: 14rem; }
  .preparation-grid, .enrollment-steps { grid-template-columns: 1fr; }
  .preparation-grid article { min-height: 250px; }
  .language-notice { grid-template-columns: 1fr; gap: 0.6rem; }
  .grading__details > div { grid-template-columns: 1fr; gap: 0.4rem; }
  .grading__note { text-align: left; }
  .enrollment-steps li { min-height: 220px; border-right: 1px solid var(--line); border-bottom: 0; }
  .enrollment-steps li:last-child { border-bottom: 1px solid var(--line); }
  .enrollment-steps li::after { display: none; }
}

/* Contact and privacy pages */
.contact-hero .page-hero__image { object-position: center 42%; }
.contact-intro { background: var(--paper); }
.contact-intro__grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-intro__copy > p:first-child { margin-top: 0; color: var(--muted); }
.language-caution { margin: 2rem 0 0; padding: 1.4rem 1.5rem; border-left: 3px solid var(--red); background: var(--white); color: var(--muted); font-size: 0.86rem; }
.language-caution strong { display: block; margin-bottom: 0.35rem; color: var(--ink); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

.contact-channels { color: #fff; background: var(--ink); }
.contact-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.contact-section-heading > p { margin: 0 0 0.4rem; color: rgba(255,255,255,0.58); }
.contact-channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: clamp(3.5rem, 7vw, 6rem); border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.16); }
.contact-channel { position: relative; min-height: 260px; display: flex; flex-direction: column; justify-content: end; overflow: hidden; padding: clamp(1.5rem, 4vw, 3rem); background: #0d0d0c; transition: background 0.2s ease; }
.contact-channel:hover { background: #221f1d; }
.contact-channel__number { position: absolute; right: 1.5rem; top: -0.25em; color: rgba(255,255,255,0.05); font-family: var(--serif); font-size: 9rem; line-height: 1; }
.contact-channel__label { color: #e65042; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; }
.contact-channel strong { position: relative; margin-top: 0.8rem; padding-right: 3rem; font-family: var(--serif); font-size: clamp(1.35rem, 2.7vw, 2.2rem); }
.contact-channel__arrow { position: absolute; right: clamp(1.5rem, 4vw, 3rem); bottom: clamp(1.5rem, 4vw, 3rem); color: #e65042; font-size: 1.4rem; }

.inquiry-form-section { background: var(--white); }
.inquiry-form-layout { display: grid; grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.inquiry-form-heading { position: sticky; top: 2rem; }
.inquiry-form-heading > p:not(.section-label) { color: var(--muted); }
.form-availability { margin-top: 2rem; padding: 1.35rem 1.5rem; border: 1px solid rgba(189,56,46,0.28); background: #fff8f4; }
.form-availability strong { color: var(--red); font-family: var(--serif); }
.form-availability p { margin: 0.45rem 0 0; color: var(--muted); font-size: 0.82rem; }
.contact-form { padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--line); background: var(--paper); }
.form-required-note { margin: 0 0 2rem; color: var(--muted); font-size: 0.76rem; text-align: right; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-required-note b { color: var(--red); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem 1rem; }
.form-field { display: grid; align-content: start; gap: 0.55rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field > span { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; font-size: 0.78rem; font-weight: 600; }
.form-field b, .form-field i { flex-shrink: 0; font-size: 0.6rem; font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; }
.form-field b { color: var(--red); }
.form-field i { color: var(--muted); }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 52px; border: 1px solid rgba(20,19,18,0.2); border-radius: 0; padding: 0.75rem 0.9rem; color: var(--ink); background: var(--white); font: inherit; font-size: 0.9rem; }
.form-field textarea { min-height: 125px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(241,170,66,0.38); border-color: var(--red); }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1.3rem; color: var(--muted); font-size: 0.8rem; cursor: pointer; }
.form-check input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 0.25rem; accent-color: var(--red); }
.form-check a { color: var(--red); text-decoration: underline; text-underline-offset: 0.2em; }
.form-privacy { margin: 1.6rem 0; padding-top: 1.4rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.75rem; }
.form-submit { width: 100%; border: 0; }
.form-submit:disabled { cursor: not-allowed; opacity: 0.55; }
.form-submit:disabled:hover { transform: none; background: var(--red); }
#form-delivery-note { display: block; margin-top: 0.7rem; color: var(--muted); font-size: 0.7rem; }

.contact-process { color: #fff; background: var(--red); }
.contact-section-heading--dark > p { color: rgba(255,255,255,0.75); }
.contact-process .section-label { color: rgba(255,255,255,0.72); }
.contact-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: clamp(3.5rem, 7vw, 6rem) 0 0; padding: 0; list-style: none; border: 1px solid rgba(255,255,255,0.28); }
.contact-steps li { min-height: 190px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.28); }
.contact-steps li:last-child { border-right: 0; }
.contact-steps li > span { color: rgba(255,255,255,0.55); font-family: var(--serif); font-size: 1.5rem; }
.contact-steps strong { max-width: 170px; font-family: var(--serif); font-size: 1.05rem; }
.contact-faq { color: #fff; background: var(--ink); }

.site-header--solid { background: var(--ink); }
.legal-page { background: var(--paper); }
.legal-hero { padding: clamp(13rem, 20vw, 17rem) 0 clamp(5rem, 9vw, 8rem); color: #fff; background: var(--ink); }
.legal-hero .breadcrumb { margin-bottom: 3rem; }
.legal-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 8vw, 6.8rem); line-height: 1.05; }
.legal-hero h1 + p { max-width: 690px; margin: 2rem 0 0; color: rgba(255,255,255,0.65); }
.legal-content { background: var(--paper); }
.legal-content__inner { max-width: 900px; }
.legal-date { margin: 0 0 2rem; color: var(--muted); font-size: 0.78rem; text-align: right; }
.legal-content article { display: grid; grid-template-columns: 70px 1fr; gap: 1.5rem; padding: 2.3rem 0; border-top: 1px solid var(--line); }
.legal-content article > span { color: var(--red); font-family: var(--serif); font-size: 1.25rem; }
.legal-content article h2 { margin: 0 0 0.85rem; font-size: clamp(1.35rem, 2.8vw, 1.8rem); }
.legal-content article p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.legal-contact { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2.5rem; padding: 2rem; color: #fff; background: var(--ink); }
.legal-contact p { margin: 0; font-family: var(--serif); font-size: 1.1rem; }
.footer__bottom a:hover { color: #fff; }

.thanks-page { color: #fff; background: var(--ink); }
.thanks-panel { position: relative; min-height: min(780px, 100svh); display: grid; align-items: center; overflow: hidden; padding: clamp(12rem, 20vw, 16rem) 0 clamp(6rem, 10vw, 9rem); background: linear-gradient(135deg, #0c0b0a 0%, #171412 62%, #35120f 100%); }
.thanks-panel::after { content: ""; position: absolute; width: min(62vw, 760px); aspect-ratio: 1; right: -18vw; top: 8%; border: 1px solid rgba(255,255,255,0.08); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,0.018), 0 0 0 180px rgba(255,255,255,0.012); }
.thanks-panel__inner { position: relative; z-index: 1; }
.thanks-panel__number { position: absolute; z-index: -1; right: 0; top: 50%; margin: 0; color: rgba(255,255,255,0.035); font-family: var(--serif); font-size: clamp(16rem, 34vw, 32rem); line-height: 0.7; transform: translateY(-50%); }
.thanks-panel h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 7rem); line-height: 1.12; }
.thanks-panel h1 + p { max-width: 640px; margin: 2rem 0 0; color: rgba(255,255,255,0.62); }
.thanks-panel__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.2rem; }

@media (max-width: 900px) {
  .contact-intro__grid, .contact-section-heading, .inquiry-form-layout { grid-template-columns: 1fr; }
  .inquiry-form-heading { position: static; }
  .contact-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-steps li:nth-child(2) { border-right: 0; }
  .contact-steps li:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.28); }
}

@media (max-width: 600px) {
  .contact-hero .page-hero__image { object-position: 58% center; }
  .contact-channel-grid, .form-grid, .contact-steps { grid-template-columns: 1fr; }
  .contact-channel { min-height: 220px; }
  .contact-channel-grid { border: 0; }
  .contact-channel + .contact-channel { border-top: 1px solid rgba(255,255,255,0.16); }
  .form-field--full { grid-column: auto; }
  .contact-form { padding: 1.3rem; }
  .contact-steps li { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.28); }
  .contact-steps li:last-child { border-bottom: 0; }
  .legal-hero { padding-top: 11rem; }
  .legal-hero h1 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .legal-content article { grid-template-columns: 42px 1fr; gap: 0.8rem; }
  .legal-contact { align-items: stretch; flex-direction: column; }
  .thanks-panel { min-height: 760px; padding-top: 11rem; }
  .thanks-panel h1 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .thanks-panel__actions { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
