:root {
  --navy: #07162d;
  --navy-deep: #030b1d;
  --navy-water: #191e65;
  --cream: #f5eddf;
  --cream-soft: #f5eddf;
  --copper: #522e1e;
  --copper-light: #8a553b;
  --ink: #12151b;
  --muted: #6e6259;
  --line: rgba(82, 46, 30, 0.28);
  --line-soft: rgba(82, 46, 30, 0.16);
  --line-quiet: rgba(82, 46, 30, 0.1);
  --surface-hover: rgba(255, 255, 255, 0.38);
  --shadow-soft: 0 18px 44px rgba(18, 21, 27, 0.08);
  --shadow-lift: 0 24px 58px rgba(18, 21, 27, 0.12);
  --white: #ffffff;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--white);
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0;
}

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

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

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.045) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.095) translate3d(-1.2%, 0.2%, 0);
  }
}

@keyframes heroDriftMobile {
  from {
    transform: scale(1.02) translate3d(0, -0.4%, 0);
  }

  to {
    transform: scale(1.065) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes lineWipe {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes copperTrace {
  from {
    background-position: -45% 0;
  }

  to {
    background-position: 145% 0;
  }
}

@keyframes gateSettle {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premiumWash {
  0% {
    background-position: 78% 16%, center;
  }

  50% {
    background-position: 72% 24%, center;
  }

  100% {
    background-position: 82% 18%, center;
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  width: 100%;
  padding: 16px max(28px, calc((100vw - 1210px) / 2));
  border-bottom: 1px solid var(--line-soft);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.94)),
    linear-gradient(90deg, rgba(82, 46, 30, 0.045), transparent 30%, transparent 70%, rgba(25, 30, 101, 0.035));
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(1.05);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(18, 21, 27, 0.035);
  transform: translateZ(0);
  transition:
    padding 420ms var(--ease-luxury),
    gap 420ms var(--ease-luxury),
    border-color 420ms ease,
    background-color 420ms ease,
    box-shadow 420ms ease,
    color 360ms ease,
    backdrop-filter 420ms ease;
  will-change: padding, background-color, box-shadow, backdrop-filter;
}

.site-header::before {
  position: absolute;
  right: max(28px, calc((100vw - 1210px) / 2));
  bottom: 0;
  left: max(28px, calc((100vw - 1210px) / 2));
  height: 1px;
  content: "";
  background:
    linear-gradient(90deg, transparent 0%, rgba(82, 46, 30, 0.12) 28%, rgba(138, 85, 59, 0.62) 48%, rgba(82, 46, 30, 0.12) 68%, transparent 100%);
  background-size: 220% 100%;
  opacity: 0.62;
  animation: copperTrace 8.5s linear infinite;
  pointer-events: none;
}

.site-header.is-scrolled {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 32px);
  padding: 8px max(24px, calc((100vw - 1210px) / 2));
  border-color: rgba(82, 46, 30, 0.18);
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 34px rgba(18, 21, 27, 0.07);
}

.site-header.is-light {
  border-color: rgba(82, 46, 30, 0.12);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(82, 46, 30, 0.04), transparent 32%, transparent 68%, rgba(25, 30, 101, 0.03));
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 8px 24px rgba(18, 21, 27, 0.035);
}

.site-header.is-light::before {
  opacity: 0.18;
}

.site-header.is-light .desktop-nav,
.site-header.is-light .header-mantra {
  color: rgba(18, 21, 27, 0.78);
}

.site-header.is-light .desktop-nav a:hover {
  color: var(--copper);
}

.site-header.is-light .brand {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-header.is-dark {
  background-color: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.site-header.is-dark::before {
  opacity: 0.34;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
  animation: fadeRise 720ms var(--ease-luxury) backwards;
  transition: border-color 260ms ease, background-color 260ms ease, box-shadow 260ms ease;
}

.header-mantra {
  display: none;
  position: absolute;
  left: max(28px, calc((100vw - 1210px) / 2 + 230px));
  bottom: 10px;
  margin: 0;
  color: rgba(18, 21, 27, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  white-space: nowrap;
  animation: fadeRise 760ms 40ms var(--ease-luxury) backwards;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.header-mantra::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  background: rgba(82, 46, 30, 0.58);
  vertical-align: middle;
  content: "";
}

.site-header.is-scrolled .header-mantra {
  position: absolute;
  inset: 50% auto auto 50%;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-12px);
  visibility: hidden;
  pointer-events: none;
}

.brand-logo {
  display: block;
  width: 232px;
  height: auto;
  transform: translateZ(0);
  transition:
    width 320ms var(--ease-luxury),
    transform 320ms var(--ease-luxury),
    filter 320ms ease,
    opacity 320ms ease;
}

.site-header .brand:hover .brand-logo {
  transform: translate3d(0, -2px, 0);
  filter: drop-shadow(0 9px 14px rgba(18, 21, 27, 0.14));
}

.site-header.is-scrolled .brand-logo {
  width: 218px;
}

.brand-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.flame {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 43px;
}

.flame::before,
.flame::after {
  position: absolute;
  content: "";
  border-radius: 54% 46% 54% 46%;
  transform: rotate(34deg);
}

.flame::before {
  inset: 3px 7px 3px 8px;
  background: var(--white);
  box-shadow: -8px 8px 0 -2px var(--white);
}

.flame::after {
  inset: 14px 13px 7px 16px;
  background: var(--navy);
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.9vw, 32px);
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 700;
  color: rgba(18, 21, 27, 0.76);
  overflow: hidden;
  animation: fadeRise 760ms 80ms var(--ease-luxury) backwards;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.desktop-nav a {
  line-height: 1;
  white-space: nowrap;
}

.site-header.is-scrolled .desktop-nav {
  position: static;
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
}

.desktop-nav a,
.footer nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer nav a:hover {
  color: var(--copper-light);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 16px 0 28px;
  border: 1px solid rgba(180, 116, 77, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.06), rgba(255, 250, 243, 0)),
    rgba(3, 11, 29, 0.68);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.1),
    0 16px 38px rgba(3, 11, 29, 0.26);
  overflow: hidden;
  transition: transform 280ms var(--ease-luxury), border-color 280ms ease, background-color 280ms ease, box-shadow 280ms ease;
}

.button::before {
  position: absolute;
  inset: auto 14px -1px 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
  opacity: 0.72;
  pointer-events: none;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(112deg, transparent 0%, rgba(255, 250, 243, 0.1) 44%, rgba(255, 250, 243, 0.2) 50%, transparent 61%);
  transform: translateX(-115%);
  transition: transform 840ms var(--ease-luxury);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 170, 118, 0.78);
  background-color: rgba(3, 11, 29, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.14),
    0 22px 48px rgba(3, 11, 29, 0.36);
}

.button:hover::after {
  transform: translateX(115%);
}

.button span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(180, 116, 77, 0.42);
  border-radius: 50%;
  background: rgba(139, 75, 40, 0.2);
  color: var(--cream);
  font-size: 13px;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover span {
  transform: translateX(3px) scale(1.03);
  border-color: rgba(230, 170, 118, 0.72);
  background: rgba(139, 75, 40, 0.32);
}

.button:focus-visible {
  outline: 2px solid rgba(255, 250, 243, 0.82);
  outline-offset: 4px;
}

.header-button {
  min-width: 206px;
  min-height: 54px;
  padding: 0 16px 0 28px;
  border-color: rgba(82, 46, 30, 0.5);
  background:
    linear-gradient(180deg, rgba(25, 30, 101, 0.08), rgba(25, 30, 101, 0.02)),
    rgba(255, 255, 255, 0.86);
  color: var(--navy-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 30px rgba(18, 21, 27, 0.075);
  animation: fadeRise 760ms 140ms var(--ease-luxury) backwards;
}

.header-button span {
  border-color: rgba(82, 46, 30, 0.48);
  background: rgba(82, 46, 30, 0.06);
  color: var(--copper);
}

.header-button::after {
  background:
    linear-gradient(
      112deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 35%,
      rgba(25, 30, 101, 0.06) 43%,
      rgba(255, 255, 255, 0.58) 49%,
      rgba(82, 46, 30, 0.1) 55%,
      transparent 66%
    );
  transform: translateX(-125%);
  transition: transform 820ms var(--ease-luxury);
}

.site-header.is-scrolled .header-button {
  min-width: 190px;
  min-height: 48px;
  padding: 0 14px 0 24px;
  border-color: rgba(82, 46, 30, 0.5);
  background:
    linear-gradient(180deg, rgba(25, 30, 101, 0.08), rgba(25, 30, 101, 0.02)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 30px rgba(18, 21, 27, 0.075);
}

.header-button:hover::before {
  opacity: 1;
  animation: copperTrace 1.8s linear infinite;
}

.header-button:hover {
  border-color: rgba(82, 46, 30, 0.68);
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 16px rgba(25, 30, 101, 0.04),
    0 16px 34px rgba(18, 21, 27, 0.1);
}

.header-button:hover::after {
  transform: translateX(125%);
}

.header-button:hover span {
  background: rgba(82, 46, 30, 0.12);
  color: var(--copper);
}

.site-header.is-scrolled .header-button span {
  width: 28px;
  height: 28px;
}

.hero {
  position: relative;
  min-height: max(690px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 24%, rgba(25, 30, 101, 0.24), transparent 34%),
    radial-gradient(circle at 67% 30%, rgba(157, 100, 61, 0.23), transparent 28%),
    var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 29, 0.82) 0%, rgba(3, 11, 29, 0.46) 34%, rgba(3, 11, 29, 0.08) 58%, rgba(3, 11, 29, 0.62) 100%),
    url("./assets/hero-generated-headroom-2560.png") center center / cover no-repeat;
  opacity: 0.96;
  animation: heroDrift 18s var(--ease-luxury) infinite alternate;
  will-change: transform;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  content: "";
  background: linear-gradient(0deg, rgba(3, 11, 29, 0.82), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 56px, 1210px);
  margin: 0 auto;
  padding: 160px 0 70px;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.42;
  letter-spacing: 0.06em;
  font-weight: 500;
  animation: fadeRise 900ms 180ms var(--ease-luxury) backwards;
}

.hero-subtitle {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  animation: fadeRise 840ms 260ms var(--ease-luxury) backwards;
}

.rule {
  width: 48px;
  height: 2px;
  margin: 24px 0 25px;
  background: var(--copper-light);
  animation: lineWipe 760ms 380ms var(--ease-luxury) backwards;
}

.hero-copy {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 2;
  font-weight: 700;
  animation: fadeRise 840ms 440ms var(--ease-luxury) backwards;
}

.hero .button {
  animation: fadeRise 840ms 560ms var(--ease-luxury) backwards;
}

.micro {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  animation: fadeRise 840ms 660ms var(--ease-luxury) backwards;
}

.section-light {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.12)),
    var(--cream-soft);
}

.concept {
  padding: 84px 0 78px;
  border-bottom: 1px solid var(--line-quiet);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 445px) minmax(310px, 510px);
  justify-content: center;
  align-items: center;
  gap: clamp(58px, 9vw, 116px);
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
}

.split > img {
  width: 100%;
  border: 1px solid var(--line-quiet);
  transition: translate 700ms var(--ease-luxury), box-shadow 700ms var(--ease-luxury);
}

.split > img:hover {
  translate: 0 -4px;
  box-shadow: 0 28px 70px rgba(18, 21, 27, 0.12);
}

.concept-text {
  width: fit-content;
  max-width: 100%;
}

.concept-text h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.24;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.concept-text .lead {
  margin: 0 0 36px;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.75;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.concept-body,
.concept-emphasis,
.concept-verse,
.concept-closing {
  margin: 0;
  font-weight: 700;
}

.concept-body {
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.15;
  letter-spacing: 0.08em;
}

.concept-body + .concept-body {
  margin-top: 20px;
}

.concept-verse {
  position: relative;
  margin: 18px 0 34px;
  padding: 18px 0 18px 28px;
  border-left: 1px solid var(--copper);
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.85;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.concept-emphasis {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.concept-closing {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.concept-text .small {
  margin-top: 24px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.split .flow-circle-mark {
  display: block;
  width: clamp(92px, 9.2vw, 118px);
  height: auto;
  margin: 28px 0 0 auto;
  border: 0;
  opacity: 0.9;
  box-shadow: none;
  transition: none;
}

.mark::before {
  background: var(--copper);
  box-shadow: -8px 8px 0 -2px var(--copper);
}

.mark::after {
  background: var(--cream-soft);
}

.practice {
  padding: clamp(70px, 8vw, 108px) 32px clamp(72px, 8vw, 104px);
  background:
    radial-gradient(circle at 18% 10%, rgba(25, 30, 101, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.02), transparent 18%),
    var(--navy);
  border-top: 1px solid rgba(255, 250, 243, 0.08);
  border-bottom: 1px solid rgba(255, 250, 243, 0.08);
  text-align: left;
}

.practice-intro {
  width: min(100%, 980px);
  margin: 0 auto clamp(42px, 6vw, 68px);
  text-align: center;
}

.practice-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.practice-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 250, 243, 0.76);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.2;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--copper-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.eyebrow::after {
  display: block;
  width: 33px;
  height: 1px;
  margin: 12px auto 0;
  content: "";
  background: currentColor;
}

.eyebrow.left {
  text-align: left;
}

.eyebrow.left::after {
  display: none;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
  width: min(100%, 1180px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 250, 243, 0.18);
  border-left: 1px solid rgba(255, 250, 243, 0.18);
}

.practice-item {
  position: relative;
  display: flex;
  min-height: 270px;
  grid-column: span 2;
  border-right: 1px solid rgba(255, 250, 243, 0.18);
  border-bottom: 1px solid rgba(255, 250, 243, 0.18);
  overflow: hidden;
}

.practice-item:nth-child(4),
.practice-item:nth-child(5) {
  grid-column: span 3;
}

.practice-item::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 88% 12%, rgba(180, 116, 77, 0.12), transparent 32%);
  opacity: 0;
  transition: opacity 420ms var(--ease-luxury);
}

.practice-item:hover::before {
  opacity: 1;
}

.practice-item-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: clamp(26px, 3.2vw, 40px);
  transition: transform 420ms var(--ease-luxury);
}

.practice-item:hover .practice-item-inner {
  transform: translateY(-5px);
}

.number {
  margin: 0;
  color: var(--copper-light);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.practice-label {
  margin: 14px 0 0;
  color: var(--copper-light);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.practice-label::after {
  display: block;
  width: 36px;
  height: 1px;
  margin: 18px 0 0;
  content: "";
  background: var(--copper-light);
}

.practice-item h3 {
  margin: 28px 0 0;
  color: var(--white);
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.practice-item p {
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.66);
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.practice-item .number,
.practice-item .practice-label {
  color: var(--copper-light);
}

.practice-item .number {
  margin: 0;
}

.practice-item .practice-label {
  margin: 14px 0 0;
}

.benefit-grid article::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  content: "";
  background: var(--surface-hover);
  opacity: 0;
  transition: opacity 340ms ease;
  pointer-events: none;
}

.benefit-grid article > * {
  position: relative;
  z-index: 1;
  transition: transform 420ms var(--ease-luxury), filter 420ms ease;
}

.line-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--copper);
  transition: translate 420ms var(--ease-luxury), color 420ms ease;
}

.line-icon::before {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.star::before { content: "☆"; }
.yen::before { content: "¥"; }
.group::before { content: "♙♙"; font-size: 25px; }
.card::before { content: "▭"; }

.pricing {
  display: block;
  position: relative;
  padding: clamp(82px, 8vw, 118px) 32px;
  background:
    radial-gradient(circle at 18% 24%, rgba(25, 30, 101, 0.2), transparent 30%),
    radial-gradient(circle at 78% 16%, rgba(180, 116, 77, 0.13), transparent 30%),
    var(--navy);
  background-repeat: no-repeat;
  overflow: hidden;
  animation: premiumWash 16s var(--ease-luxury) infinite alternate;
}

.program-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: stretch;
  justify-content: center;
  gap: clamp(28px, 4vw, 54px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4.5vw, 54px);
  border: 1px solid rgba(255, 250, 243, 0.17);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.045), rgba(255, 250, 243, 0.012)),
    rgba(3, 11, 29, 0.18);
  overflow: hidden;
}

.program-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 82% 12%, rgba(180, 116, 77, 0.12), transparent 34%);
  opacity: 0.9;
  pointer-events: none;
}

.program-card > * {
  position: relative;
}

.program-card h2 {
  margin: 0;
  color: var(--copper-light);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.program-lead {
  display: grid;
  gap: 8px;
  margin: 34px 0 0;
}

.program-lead p,
.program-card > p {
  color: rgba(255, 250, 243, 0.86);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: 0.06em;
}

.program-lead p,
.program-card > p {
  margin: 0;
}

.program-copy ul {
  display: grid;
  gap: 16px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.program-copy li {
  position: relative;
  padding-left: 34px;
  color: var(--white);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.program-copy li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border: 1px solid currentColor;
  color: var(--copper-light);
  content: "";
  transition: transform 320ms var(--ease-luxury), background-color 320ms ease;
}

.program-copy li:hover::before {
  transform: rotate(45deg) scale(1.08);
  background: rgba(180, 116, 77, 0.18);
}

.program-price {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 250, 243, 0.18);
}

.program-price p:not(.price) {
  margin: 16px 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.future-price {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 250, 243, 0.12);
  color: rgba(255, 250, 243, 0.72);
}

.future-price p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.future-price-label {
  color: var(--copper-light);
}

.future-price b {
  color: var(--white);
  font-size: 1.25em;
  font-weight: 700;
}

.future-price span {
  font-size: 0.92em;
}

.intro-card {
  justify-content: center;
}

.intro-card h2 {
  color: var(--white);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.intro-card .program-price {
  margin-top: 34px;
}

.intro-card .button {
  align-self: flex-start;
  min-width: min(100%, 360px);
  margin-top: 38px;
  border-color: rgba(180, 116, 77, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.07), rgba(255, 250, 243, 0)),
    rgba(3, 11, 29, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 243, 0.14),
    0 18px 42px rgba(3, 11, 29, 0.3);
}

.intro-card .fine-print {
  margin-top: 34px;
}

.fine-print {
  margin: 18px 0 0;
  color: rgba(255, 250, 243, 0.52);
  font-size: 12px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.coach {
  padding: 82px 32px 78px;
  border-bottom: 1px solid var(--line-quiet);
}

.coach-inner {
  display: grid;
  grid-template-columns: minmax(360px, 610px) minmax(300px, 420px);
  grid-template-areas:
    "heading photo"
    "copy photo";
  align-items: center;
  justify-content: center;
  gap: clamp(48px, 7vw, 96px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.coach-heading {
  grid-area: heading;
  align-self: end;
}

.coach-copy {
  grid-area: copy;
  align-self: start;
}

.coach-heading h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.coach-heading h2 span {
  color: var(--copper);
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coach-statement {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.coach-bio {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.coach-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.coach-profile-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line-quiet);
}

.coach-profile-list h3 {
  margin: 0;
  color: var(--copper);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.coach-profile-list ul {
  display: grid;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach-profile-list li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.coach-profile-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border: 1px solid var(--copper);
  transform: rotate(45deg);
}

.coach-photo {
  position: relative;
  grid-area: photo;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.coach-profile-image {
  display: block;
  width: 100%;
  min-height: clamp(420px, 45vw, 540px);
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: 52% 34%;
  filter: saturate(0.9) contrast(1.02);
}

.coach-photo-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: clamp(420px, 45vw, 540px);
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 11, 29, 0.08), rgba(3, 11, 29, 0.52)),
    radial-gradient(circle at 68% 18%, rgba(25, 30, 101, 0.34), transparent 35%),
    linear-gradient(135deg, rgba(245, 237, 223, 0.2), rgba(82, 46, 30, 0.18)),
    var(--navy);
}

.coach-photo-placeholder::before {
  position: absolute;
  inset: 32px;
  content: "";
  border: 1px solid rgba(255, 250, 243, 0.22);
}

.coach-photo-placeholder::after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 78px;
  height: 1px;
  content: "";
  background: var(--copper-light);
}

.coach-photo-placeholder span {
  position: relative;
  color: rgba(255, 250, 243, 0.86);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.coach-photo figcaption {
  display: grid;
  gap: 4px;
  padding: 18px 4px 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coach-photo figcaption b {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.benefits {
  padding: 70px 32px 46px;
}

.benefits-intro {
  width: min(100%, 1020px);
  margin: 0 auto 38px;
  text-align: center;
}

.benefits-intro h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.benefits-intro > p:not(.eyebrow) {
  width: min(100%, 720px);
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: min(100%, 760px);
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
}

.benefit-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(170px, 220px) 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  overflow: hidden;
  transition: padding-left 420ms var(--ease-luxury), box-shadow 420ms ease;
}

.benefit-grid article:hover {
  box-shadow: inset 0 0 0 1px rgba(82, 46, 30, 0.08);
}

.benefit-grid article:hover::before {
  opacity: 0.72;
}

.benefit-grid article:hover > * {
  transform: translate3d(6px, -2px, 0);
  filter: drop-shadow(0 8px 12px rgba(18, 21, 27, 0.07));
}

.benefit-grid h3 {
  margin: 0;
  font-size: 17px;
}

.benefit-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.benefit-grid .line-icon {
  width: 34px;
  height: 34px;
  margin: -4px 0 0;
}

.benefit-grid .line-icon::before {
  font-size: 32px;
}

.note {
  width: min(100%, 850px);
  margin: 28px auto 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-quiet);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.price {
  margin: 0;
  font-size: clamp(42px, 4vw, 54px);
  line-height: 1;
}

.price::after {
  display: block;
  width: 58px;
  height: 1px;
  margin: 19px 0 0;
  content: "";
  background: var(--copper-light);
}

.price span {
  font-size: 17px;
}

.future-dojo {
  padding: 4px 32px 66px;
}

.future-dojo-image {
  position: relative;
  width: min(100%, 1060px);
  margin: 0;
  margin-inline: auto;
  aspect-ratio: 16 / 6.2;
  overflow: hidden;
  border: 1px solid rgba(82, 46, 30, 0.18);
  border-radius: 8px;
  background: var(--navy-deep);
  box-shadow:
    var(--shadow-soft),
    inset 0 1px 0 rgba(255, 250, 243, 0.08);
}

.future-dojo-image::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 11, 29, 0.62), rgba(3, 11, 29, 0.18) 42%, rgba(3, 11, 29, 0.08)),
    linear-gradient(0deg, rgba(3, 11, 29, 0.36), transparent 46%);
  pointer-events: none;
}

.future-dojo-image::after {
  position: absolute;
  z-index: 2;
  inset: auto 32px 28px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(230, 170, 118, 0.84), transparent);
  opacity: 0.72;
}

.future-dojo-image figcaption {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 4vw, 44px);
  bottom: clamp(20px, 3vw, 34px);
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--white);
}

.future-dojo-image figcaption span {
  color: var(--copper-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.future-dojo-image figcaption b {
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.future-dojo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.02;
  transition: scale 900ms var(--ease-luxury), filter 900ms var(--ease-luxury);
}

.future-dojo-image:hover img {
  scale: 1.045;
  filter: saturate(1.05) contrast(1.03);
}

.contact-page {
  color: var(--ink);
  background: var(--white);
}

.trial-page {
  color: var(--ink);
  background: var(--white);
}

.legal-page {
  color: var(--ink);
  background: var(--white);
}

.contact-hero {
  min-height: calc(100svh - 128px);
  padding: clamp(118px, 12vw, 156px) 32px clamp(78px, 9vw, 116px);
}

.trial-hero {
  min-height: calc(100svh - 128px);
  padding: clamp(126px, 14vw, 178px) 32px clamp(78px, 9vw, 116px);
}

.legal-hero {
  min-height: calc(100svh - 128px);
  padding: clamp(126px, 14vw, 172px) 32px clamp(72px, 8vw, 108px);
}

.legal-shell {
  display: grid;
  gap: clamp(34px, 5vw, 56px);
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-heading {
  display: grid;
  gap: 20px;
}

.legal-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.legal-heading p,
.policy-sections p,
.policy-sections li,
.legal-list dd,
.legal-updated {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.legal-heading p {
  width: min(100%, 720px);
  margin: 0;
}

.legal-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-soft);
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.legal-list dt {
  color: var(--copper);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
}

.legal-list a,
.policy-sections a,
.consent-list a {
  color: var(--copper);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.policy-sections {
  display: grid;
  gap: 30px;
}

.policy-sections section {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}

.policy-sections h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.policy-sections p {
  margin: 0;
}

.policy-sections ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-sections li {
  position: relative;
  padding-left: 22px;
}

.policy-sections li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--copper);
  transform: rotate(45deg);
}

.legal-updated {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: rgba(18, 21, 27, 0.58);
  font-size: 12px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
  width: min(100%, 1120px);
  margin: 0 auto;
}

.trial-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.trial-intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.contact-intro p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.trial-intro > p:not(.eyebrow) {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.trial-summary {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line-soft);
}

.trial-summary p {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.trial-summary span {
  color: var(--copper);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trial-note-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.trial-note-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.trial-note-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--copper);
  transform: rotate(45deg);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 24px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    rgba(245, 237, 223, 0.38);
  box-shadow: var(--shadow-soft);
}

.contact-form::before {
  position: absolute;
  inset: 14px;
  content: "";
  border: 1px solid rgba(82, 46, 30, 0.08);
  pointer-events: none;
}

.contact-form > * {
  position: relative;
}

.bot-field {
  position: absolute;
  left: -9999px;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(180px, 1fr);
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 9px;
}

.form-row label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.form-row label span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-radius: 50%;
  background: #b24434;
  vertical-align: 0.18em;
  box-shadow: 0 0 0 3px rgba(178, 68, 52, 0.1);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(82, 46, 30, 0.2);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font: 700 15px/1.6 "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.04em;
  outline: none;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.form-row textarea {
  min-height: 170px;
  resize: vertical;
}

.consent-list {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.consent-list label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.consent-list input {
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
  accent-color: var(--copper);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(82, 46, 30, 0.54);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(25, 30, 101, 0.08);
}

.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
}

.form-actions .button {
  border: 1px solid rgba(82, 46, 30, 0.48);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25, 30, 101, 0.96), rgba(3, 11, 29, 0.98)),
    var(--navy-deep);
}

.text-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--copper);
}

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

.thanks-shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px);
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    rgba(245, 237, 223, 0.42);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.thanks-shell h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.thanks-shell p:not(.eyebrow) {
  margin: 26px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.thanks-shell .button {
  margin: 34px auto 0;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 210px;
  padding: 50px max(32px, calc((100vw - 1210px) / 2));
  background:
    linear-gradient(90deg, rgba(7, 22, 45, 0.95) 0%, rgba(7, 22, 45, 0.78) 42%, rgba(7, 22, 45, 0.48) 72%, rgba(7, 22, 45, 0.62) 100%),
    url("./assets/footer-generated.png") center / cover no-repeat;
  overflow: hidden;
  border-top: 1px solid rgba(255, 250, 243, 0.1);
  border-bottom: 1px solid rgba(82, 46, 30, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 250, 243, 0.06);
  animation: footerDrift 18s var(--ease-luxury) infinite alternate;
}

@keyframes footerDrift {
  from {
    background-position: center, center;
  }

  to {
    background-position: center, 52% 48%;
  }
}

@supports (animation-timeline: view()) {
  .split img,
  .concept-text,
  .practice .eyebrow,
  .practice-item,
  .program-card,
  .benefits-intro,
  .benefit-grid article,
  .note,
  .future-dojo-image,
  .final-cta > * {
    animation: revealUp 900ms var(--ease-luxury) both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .benefit-grid article:nth-child(2) {
    animation-range: entry 4% cover 36%;
  }

  .benefit-grid article:nth-child(3) {
    animation-range: entry 8% cover 38%;
  }

  .benefit-grid article:nth-child(4) {
    animation-range: entry 12% cover 40%;
  }
}

.final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.final-cta p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 34px;
  padding: 26px max(32px, calc((100vw - 1210px) / 2)) 18px;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}

.footer .brand {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  justify-self: end;
}

.footer .brand-logo {
  width: 106px;
  transition:
    transform 340ms var(--ease-luxury),
    filter 340ms ease,
    opacity 260ms ease;
}

.footer-brand {
  padding: 0;
  border-radius: 8px;
}

.footer .brand:hover .footer-brand-logo {
  transform: translate3d(0, -3px, 0);
  filter: drop-shadow(0 12px 18px rgba(25, 30, 101, 0.14));
}

.footer nav {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start;
  gap: clamp(16px, 2vw, 30px);
  font-size: 13px;
  font-weight: 700;
  color: rgba(18, 21, 27, 0.76);
  text-align: left;
}

.socials {
  display: flex;
  grid-column: 1;
  grid-row: 2;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--copper);
  background: rgba(255, 255, 255, 0.64);
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.socials svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.socials a[aria-label="Instagram"] svg {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  border-color: rgba(82, 46, 30, 0.5);
  background: rgba(82, 46, 30, 0.06);
  color: var(--navy-deep);
}

.footer-meta {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin: 10px 0 0;
  padding-top: 12px;
  color: rgba(18, 21, 27, 0.48);
  background: transparent;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  text-align: left;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p + p {
  margin-top: 0;
}

.footer-meta a {
  color: rgba(18, 21, 27, 0.62);
  transition: color 180ms ease;
}

.footer-meta a:hover {
  color: var(--copper-light);
}

.footer .footer-legal {
  grid-column: 1 / -1;
  grid-row: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 4px;
  color: rgba(18, 21, 27, 0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
}

.footer .footer-legal a {
  transition: color 180ms ease;
}

.footer .footer-legal a:hover {
  color: var(--copper);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-mantra {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .hero-bg {
    inset: 0;
    background:
      linear-gradient(90deg, rgba(3, 11, 29, 0.74) 0%, rgba(3, 11, 29, 0.34) 50%, rgba(3, 11, 29, 0.52) 100%),
      url("./assets/hero-generated-headroom-2560.png") 58% 72% / cover no-repeat;
    opacity: 1;
    animation-name: heroDriftMobile;
  }

  .split,
  .program-copy,
  .coach-inner,
  .contact-shell,
  .trial-shell,
  .future-dojo,
  .final-cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .program-copy {
    align-items: start;
    gap: 34px;
  }

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

  .footer {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 24px;
    row-gap: 8px;
  }

  .footer .brand {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    justify-self: end;
  }

  .footer nav {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: left;
  }

  .socials {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer .brand-logo {
    width: clamp(76px, 17vw, 98px);
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    padding-top: 12px;
  }

  .footer .footer-legal {
    grid-column: 1 / -1;
    grid-row: 4;
  }
}

@media (max-width: 420px) {
  .footer {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .footer .brand,
  .footer nav,
  .socials,
  .footer-meta,
  .footer-legal {
    grid-column: 1;
    grid-row: auto;
  }

  .footer > nav:not(.footer-legal) {
    grid-row: 1;
  }

  .socials {
    grid-row: 2;
  }

  .footer .brand {
    grid-row: 3;
    justify-self: start;
  }

  .footer-meta {
    grid-row: 4;
  }

  .footer .footer-legal {
    grid-row: 5;
  }
}

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

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
    justify-items: start;
    padding: 14px 16px;
    gap: 12px;
    border-bottom-color: rgba(82, 46, 30, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 18px rgba(18, 21, 27, 0.028);
    transition:
      padding 420ms var(--ease-luxury),
      border-color 360ms var(--ease-luxury),
      background-color 360ms var(--ease-luxury),
      box-shadow 420ms var(--ease-luxury),
      backdrop-filter 420ms var(--ease-luxury);
  }

  .site-header.is-scrolled {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
    justify-items: start;
    padding: 8px 16px;
    gap: 12px;
    border-bottom-color: rgba(82, 46, 30, 0.18);
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 12px 30px rgba(18, 21, 27, 0.08);
  }

  .site-header::before {
    right: 16px;
    left: 16px;
    opacity: 0.28;
    transition: opacity 420ms var(--ease-luxury);
  }

  .site-header.is-scrolled::before {
    opacity: 0.72;
  }

  .brand-text {
    font-size: 13px;
  }

  .brand-logo {
    width: clamp(154px, 34vw, 186px);
  }

  .site-header.is-scrolled .brand-logo {
    width: clamp(146px, 31vw, 168px);
  }

  .site-header .header-button,
  .site-header.is-scrolled .header-button {
    justify-self: end;
    flex: 0 0 clamp(188px, 35vw, 214px);
    width: clamp(188px, 35vw, 214px);
    min-width: clamp(188px, 35vw, 214px);
    min-height: 42px;
    padding: 0 8px 0 14px;
    gap: 10px;
    font-size: clamp(11px, 2vw, 12px);
    white-space: nowrap;
    transition:
      flex-basis 420ms var(--ease-luxury),
      width 420ms var(--ease-luxury),
      min-width 420ms var(--ease-luxury),
      min-height 420ms var(--ease-luxury),
      padding 420ms var(--ease-luxury),
      gap 420ms var(--ease-luxury),
      font-size 420ms var(--ease-luxury),
      border-color 300ms var(--ease-luxury),
      background-color 300ms var(--ease-luxury),
      box-shadow 360ms var(--ease-luxury);
  }

  .site-header.is-scrolled .header-button {
    flex-basis: clamp(172px, 31vw, 190px);
    width: clamp(172px, 31vw, 190px);
    min-width: clamp(172px, 31vw, 190px);
    min-height: 38px;
    padding: 0 7px 0 12px;
    gap: 8px;
    font-size: clamp(10px, 1.86vw, 11px);
    border-color: rgba(82, 46, 30, 0.58);
    background-color: rgba(255, 255, 255, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      0 12px 28px rgba(18, 21, 27, 0.1);
  }

  .site-header .header-button span,
  .site-header.is-scrolled .header-button span {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .site-header.is-scrolled .header-button span {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .hero {
    min-height: max(660px, 100svh);
  }

  .hero-inner {
    width: min(100% - 34px, 1210px);
    padding-top: 130px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .concept {
    padding: 58px 0;
  }

  .split {
    width: min(100% - 34px, 1180px);
    gap: 36px;
  }

  .concept-text h1 {
    font-size: 38px;
    letter-spacing: 0.1em;
  }

  .concept-text .lead {
    margin-bottom: 28px;
    font-size: 21px;
    letter-spacing: 0.08em;
  }

  .concept-body {
    font-size: 15px;
  }

  .concept-verse {
    margin: 16px 0 28px;
    padding-left: 20px;
    font-size: 25px;
    letter-spacing: 0.1em;
  }

  .concept-emphasis {
    margin-bottom: 26px;
    font-size: 24px;
    letter-spacing: 0.08em;
  }

  .concept-closing {
    font-size: 16px;
  }

  .practice-grid {
    grid-template-columns: 1fr;
    width: min(100%, 620px);
  }

  .practice-item,
  .practice-item:nth-child(4),
  .practice-item:nth-child(5) {
    min-height: 0;
    grid-column: auto;
  }

  .practice-item-inner {
    padding: 28px 24px 30px;
  }

  .practice-intro p:not(.eyebrow) {
    line-height: 2;
  }

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

  .benefit-grid article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .benefit-grid p {
    grid-column: 2;
  }

  .pricing {
    padding: 54px 24px 58px;
  }

  .program-copy {
    gap: 30px;
  }

  .program-card {
    padding: 30px 24px;
  }

  .program-copy ul {
    gap: 16px;
  }

  .program-price {
    padding-top: 24px;
  }

  .coach {
    padding: 58px 22px 60px;
  }

  .coach-inner {
    grid-template-areas:
      "heading"
      "photo"
      "copy";
    gap: 34px;
  }

  .coach-bio {
    margin-top: 24px;
    padding-top: 22px;
  }

  .coach-photo-placeholder {
    min-height: 420px;
  }

  .benefits {
    padding-inline: 18px;
  }

  .future-dojo-image {
    aspect-ratio: 4 / 3;
    border-radius: 6px;
  }

  .coach-heading h2 {
    font-size: 34px;
  }

  .coach-statement {
    font-size: 20px;
    line-height: 1.85;
  }

  .coach-photo {
    padding: 9px;
  }

  .coach-photo-placeholder {
    min-height: 360px;
    padding: 24px;
  }

  .contact-hero {
    padding: 122px 18px 64px;
  }

  .trial-hero {
    padding: 122px 18px 64px;
  }

  .legal-hero {
    padding: 122px 18px 64px;
  }

  .legal-shell {
    gap: 30px;
  }

  .legal-heading h1 {
    font-size: 35px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .policy-sections {
    gap: 24px;
  }

  .policy-sections section {
    padding-bottom: 22px;
  }

  .contact-shell {
    gap: 34px;
  }

  .trial-shell {
    gap: 34px;
  }

  .trial-intro h1 {
    font-size: 40px;
  }

  .contact-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .trial-intro > p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 15px;
  }

  .trial-summary p,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-form {
    gap: 20px;
    padding: 28px 22px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .benefits-intro h2 {
    font-size: 30px;
    letter-spacing: 0.06em;
  }

  .final-cta {
    padding-inline: 18px;
  }

  .footer {
    padding-inline: 18px;
  }
}
