:root {
  --bg: #ffffff;
  --bg-mute: #f7f8fa;
  --navy: #001838;
  --navy-mid: #0c2a4a;
  --gold: #b0822c;
  --gold-soft: #c49a4a;
  --ink: #001838;
  --text: #2a3544;
  --text-muted: #66707e;
  --rule: #e4e7ec;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 40px);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-mono: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

p {
  font-size: 1.2rem;
}

.text-accent {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

/* Header v3 — quiet logo left, links right */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 2;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 2;
}

.nav-toggle-bar {
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 36px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s ease, gap 0.15s ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-links a[aria-current="page"],
.nav-links a[aria-current="true"] {
  color: var(--navy);
  gap: 7px;
}

.nav-links a[aria-current="page"]::before,
.nav-links a[aria-current="true"]::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.nav-links a.nav-contact {
  margin-left: 8px;
  padding-left: 18px;
  border-left: 1px solid var(--rule);
  color: var(--gold);
  font-weight: 600;
}

.nav-links a.nav-contact:hover {
  color: var(--navy);
}

.nav-links a.nav-contact[aria-current="page"],
.nav-links a.nav-contact[aria-current="true"] {
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
}

.btn-on-dark {
  background: #fff;
  color: var(--navy);
}
.btn-on-dark:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-ghost-on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}
.btn-ghost-on-dark:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-1px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(94vh, 920px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--rule);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-parallax {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
  transform: translate3d(0, var(--hero-shift, 0px), 0);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 38%;
  transform: scale(1.12) translate3d(0, 0, 0);
  animation: hero-kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-atmos {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
}

.hero-orb-a {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: -12%;
  right: 8%;
  background: radial-gradient(
    circle,
    rgba(176, 130, 44, 0.34) 0%,
    rgba(176, 130, 44, 0.08) 42%,
    transparent 70%
  );
  animation: hero-drift-a 22s ease-in-out infinite alternate;
}

.hero-orb-b {
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  bottom: -18%;
  left: 28%;
  background: radial-gradient(
    circle,
    rgba(0, 24, 56, 0.28) 0%,
    rgba(0, 24, 56, 0.08) 45%,
    transparent 72%
  );
  animation: hero-drift-b 26s ease-in-out infinite alternate;
}

.hero-beam {
  position: absolute;
  top: -20%;
  left: 35%;
  width: 28%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 45%,
    rgba(176, 130, 44, 0.1) 52%,
    transparent 70%
  );
  transform: skewX(-18deg);
  animation: hero-beam 16s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
}

.hero-grid {
  position: absolute;
  inset: -8%;
  background-image:
    linear-gradient(rgba(0, 24, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 24, 56, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 65% at 68% 42%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 68% 42%, #000 20%, transparent 75%);
  opacity: 0.55;
  animation: hero-grid 32s linear infinite;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 62%
  );
  background-size: 220% 220%;
  animation: hero-sheen 14s ease-in-out infinite;
  mix-blend-mode: soft-light;
}

.hero-blocks {
  position: absolute;
  right: max(2%, calc((100% - var(--max)) / 2 - 8px));
  bottom: 8%;
  width: min(48vw, 460px);
  z-index: 1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-skyline {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.7fr 1.3fr 0.85fr 1.15fr;
  align-items: end;
  gap: clamp(7px, 1.1vw, 14px);
  min-height: min(48vh, 420px);
  padding: 0 4px;
}

.hero-tower {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
  min-height: 0;
}

.hero-brick {
  display: block;
  width: 100%;
  height: clamp(40px, 5.6vh, 56px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(0, 24, 56, 0.34) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 26px rgba(0, 24, 56, 0.16);
  border-radius: 2px;
  opacity: 0;
  transform: translate3d(0, -36px, 0) scale(0.92);
  transform-origin: center bottom;
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
  will-change: transform, opacity;
}

.hero-brick.is-stacked {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-tower--gold .hero-brick {
  background: linear-gradient(
    160deg,
    rgba(176, 130, 44, 0.62) 0%,
    rgba(0, 24, 56, 0.32) 100%
  );
  border-color: rgba(176, 130, 44, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 230, 180, 0.4),
    0 12px 28px rgba(176, 130, 44, 0.22);
}

.hero-tower--accent .hero-brick:last-child {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(176, 130, 44, 0.4) 100%
  );
  border-color: rgba(176, 130, 44, 0.45);
}

.hero-skyline-base {
  display: block;
  height: 2px;
  margin: 0 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(176, 130, 44, 0.55) 18%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(176, 130, 44, 0.45) 82%,
    transparent 100%
  );
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-skyline-base.is-on {
  opacity: 1;
  transform: scaleX(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.88) 34%,
      rgba(255, 255, 255, 0.42) 58%,
      rgba(255, 255, 255, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 24, 56, 0.18) 0%,
      transparent 35%,
      rgba(0, 24, 56, 0.22) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(120px, 16vh, 168px);
  padding-bottom: clamp(80px, 12vh, 120px);
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.hero h1 {
  margin: 0 0 20px;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.35rem, 5vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-align: left;
}

.hero h1 .text-accent {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.hero .lede {
  margin: 0 0 32px;
  max-width: 28rem;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: left;
}

.hero .cta-row {
  gap: 10px;
  justify-content: flex-start;
}

@keyframes hero-kenburns {
  from {
    transform: scale(1.12) translate3d(0, 0, 0);
    object-position: 62% 42%;
  }
  to {
    transform: scale(1.22) translate3d(-3.5%, 2%, 0);
    object-position: 78% 34%;
  }
}

@keyframes hero-drift-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-10%, 14%, 0) scale(1.12);
  }
}

@keyframes hero-drift-b {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(12%, -10%, 0) scale(1.08);
  }
}

@keyframes hero-beam {
  from {
    transform: skewX(-18deg) translate3d(-8%, 0, 0);
    opacity: 0.35;
  }
  to {
    transform: skewX(-18deg) translate3d(18%, 0, 0);
    opacity: 0.7;
  }
}

@keyframes hero-grid {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-36px, -24px, 0);
  }
}

@keyframes hero-sheen {
  0%,
  100% {
    background-position: 0% 40%;
    opacity: 0.35;
  }
  50% {
    background-position: 100% 60%;
    opacity: 0.7;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(48px, 6vw, 72px) 0;
}

.section-eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 16ch;
}

.section-sub {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.section-head {
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 40rem;
}

.section-head.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: none;
  align-items: end;
}

.section-head.split .section-sub {
  margin: 0;
}

.journey {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.journey-intro {
  position: relative;
  top: auto;
}

.journey-intro .section-eyebrow {
  margin-bottom: 16px;
}

.journey-intro h2 {
  margin: 0 0 28px;
  max-width: 10ch;
}

.journey-question {
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-muted);
}

.journey-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(176, 130, 44, 0.15) 100%);
}

.journey-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  padding: 0 0 clamp(36px, 5vw, 48px);
  border: 0;
}

.journey-step:last-child {
  padding-bottom: 0;
}

.journey-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(176, 130, 44, 0.45);
}

.journey-index {
  display: block;
  margin: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.journey-body h3 {
  margin: 6px 0 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--navy);
}

.journey-body p {
  margin: 0;
  max-width: 36ch;
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.practice {
  background: var(--bg-mute);
  color: var(--text);
  border-bottom: 1px solid var(--rule);
}

.practice-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.practice-intro-copy {
  max-width: 40rem;
}

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

.practice-intro h2 {
  margin: 0 0 16px;
  max-width: 16ch;
  color: var(--navy);
}

.practice-intro .section-sub {
  margin: 0;
  max-width: 42ch;
  color: var(--text-muted);
}

.practice-intro-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.practice-intro-mark {
  width: min(100%, 170px);
  height: auto;
  color: var(--navy);
}

.pim-layer {
  fill: rgba(0, 24, 56, 0.04);
  stroke: rgba(0, 24, 56, 0.28);
  stroke-width: 1.5;
  stroke-linejoin: round;
  opacity: 0;
  animation: practice-mark-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pim-l1 {
  animation-delay: 0.12s;
  fill: rgba(176, 130, 44, 0.12);
  stroke: var(--gold);
}

.pim-l2 { animation-delay: 0.28s; }
.pim-l3 { animation-delay: 0.44s; }

.pim-accent-line {
  stroke: rgba(0, 24, 56, 0.12);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0;
  animation: practice-mark-fade 0.5s ease 0.55s both;
}

@keyframes practice-mark-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes practice-mark-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.practice-index-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.practice-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1.1fr) minmax(0, 1fr) 48px;
  gap: clamp(16px, 3vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 30px) 0;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}

.practice-row.is-in {
  opacity: 1;
  transform: translateY(0);
}

.practice-row:hover .practice-num {
  color: var(--navy);
}

.practice-row:hover .practice-main h3 {
  color: var(--gold);
}

.practice-row:hover .practice-icon {
  color: var(--gold);
  border-color: rgba(176, 130, 44, 0.45);
}

.practice-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color 0.25s ease;
}

.practice-main {
  min-width: 0;
}

.practice-label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.practice-main h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--navy);
  transition: color 0.25s ease;
}

.practice-desc {
  margin: 0;
  max-width: 36ch;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.practice-icon {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  color: var(--navy);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.practice-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.practice-note {
  margin: clamp(24px, 3vw, 32px) 0 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0.35s;
}

.practice-note.is-in {
  opacity: 1;
  transform: translateY(0);
}

.philosophy {
  background: var(--bg);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--rule);
}

.vm-block {
  padding: 32px 0;
}

.vm-block:first-child {
  padding-right: 40px;
  border-right: 1px solid var(--rule);
}

.vm-block:last-child {
  padding-left: 40px;
}

.vm-label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.vm-block p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--navy);
  max-width: 28ch;
}

.cycle {
  border-top: 1px solid var(--rule);
  padding-top: clamp(36px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.cycle-board {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0;
  padding: 72px 56px;
}

.cycle-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.cycle-frame-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.cycle-frame-fill {
  stroke: none;
}

.cycle-frame-track {
  fill: none;
  stroke: rgba(0, 24, 56, 0.12);
  stroke-width: 1.25;
}

.cycle-frame-flow {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 5 95;
  stroke-dashoffset: 0;
  animation: cycle-orbit 6.5s linear infinite;
}

.cycle-flow-arrow {
  transform-origin: 200px 200px;
  animation: cycle-arrow-spin 6.5s linear infinite;
}

.cycle-flow-arrow-head {
  fill: var(--gold);
  stroke: #fff;
  stroke-width: 1.25;
  paint-order: stroke fill;
}

@keyframes cycle-arrow-spin {
  from {
    transform: rotate(16deg);
  }
  to {
    transform: rotate(376deg);
  }
}

.cycle-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(58%, 180px);
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.cycle-core-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.cycle-core-line {
  display: block;
}

.cycle-core-line--accent {
  margin-top: 2px;
  font-size: 0.88em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gold);
}

.cycle-core-rule {
  display: block;
  width: 28px;
  height: 1.5px;
  margin: 12px 0;
  background: var(--gold);
  opacity: 0.75;
}

.cycle-stations {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.cycle-station {
  --turn: calc(var(--i) * 72deg);
  --ring: 34.5%;
  --glow-delay: calc(var(--i) * 1.3s);
  position: absolute;
  left: calc(50% + sin(var(--turn)) * var(--ring));
  top: calc(50% - cos(var(--turn)) * var(--ring));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
}

.cycle-station::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(176, 130, 44, 0.55) 0%,
    rgba(176, 130, 44, 0.16) 42%,
    transparent 72%
  );
  opacity: 0;
  transform: scale(0.65);
  pointer-events: none;
  z-index: 0;
  animation: cycle-node-bloom 6.5s linear infinite;
  animation-delay: var(--glow-delay);
}

/* Equal spacing fallbacks + label anchors */
.cycle-station--1 {
  --glow-delay: 0s;
  left: 50%;
  top: 15.5%;
}

.cycle-station--2 {
  --glow-delay: 1.3s;
  left: 82.811%;
  top: 39.339%;
}

.cycle-station--3 {
  --glow-delay: 2.6s;
  left: 70.279%;
  top: 77.911%;
}

.cycle-station--4 {
  --glow-delay: 3.9s;
  left: 29.721%;
  top: 77.911%;
}

.cycle-station--5 {
  --glow-delay: 5.2s;
  left: 17.189%;
  top: 39.339%;
}

.cycle-station-index {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  box-shadow:
    0 0 0 6px var(--bg),
    0 10px 24px rgba(0, 24, 56, 0.1);
  animation: cycle-node-glow 6.5s linear infinite;
  animation-delay: var(--glow-delay);
}

.cycle-station:hover .cycle-station-index {
  transform: scale(1.06);
}

.cycle-station strong {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.88rem, 1.35vw, 1.02rem);
  letter-spacing: -0.015em;
  color: var(--navy);
  line-height: 1.15;
  white-space: nowrap;
}

.cycle-station--1 strong {
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.cycle-station--2 strong {
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
}

.cycle-station--3 strong {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.cycle-station--4 strong {
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
}

.cycle-station--5 strong {
  right: calc(100% + 14px);
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.cycle-aside {
  max-width: 34ch;
}

.cycle-aside-kicker {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.cycle-caption {
  margin: 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--gold);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  letter-spacing: -0.015em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.cycle.is-in .cycle-caption {
  opacity: 1;
  transform: translateY(0);
}

.cycle.is-in .cycle-aside-kicker {
  animation: rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cycle-orbit {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes cycle-node-glow {
  0%,
  14%,
  100% {
    box-shadow:
      0 0 0 6px var(--bg),
      0 10px 24px rgba(0, 24, 56, 0.1);
    background: var(--gold);
  }
  0.5%,
  9% {
    box-shadow:
      0 0 0 6px var(--bg),
      0 0 0 12px rgba(176, 130, 44, 0.22),
      0 0 28px 6px rgba(176, 130, 44, 0.55);
    background: var(--gold-soft);
  }
}

@keyframes cycle-node-bloom {
  0%,
  14%,
  100% {
    opacity: 0;
    transform: scale(0.65);
  }
  0.5%,
  9% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.signature {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  padding: clamp(64px, 10vw, 112px) 0;
  overflow: hidden;
}

.signature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(176, 130, 44, 0.16), transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.signature-inner {
  position: relative;
  z-index: 1;
}

.signature-inner::before {
  content: "";
  position: absolute;
  left: var(--pad);
  top: 0.15em;
  bottom: 0.15em;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(176, 130, 44, 0.2) 100%);
}

.signature-eyebrow {
  margin: 0 0 20px;
  padding-left: 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.signature-statement {
  margin: 0;
  padding-left: 22px;
  max-width: none;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
}

.signature-line {
  display: block;
}

.signature-line + .signature-line {
  margin-top: 0.12em;
}

.signature-statement .text-accent {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.reach {
  border-bottom: 1px solid var(--rule);
}

.reach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.reach-copy h2 {
  margin-bottom: 20px;
  max-width: 12ch;
}

.reach-statement {
  margin: 0 0 16px;
  max-width: 22ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.reach-statement .text-accent {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}

.reach-copy .section-sub {
  max-width: 40ch;
}

.reach-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reach-icon {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.reach-ring {
  fill: none;
  stroke: rgba(0, 24, 56, 0.1);
  stroke-width: 1.25;
}

.reach-ring-a {
  stroke: rgba(176, 130, 44, 0.28);
  animation: reach-pulse 5s ease-in-out infinite;
}

.reach-ring-b {
  stroke: rgba(0, 24, 56, 0.12);
  animation: reach-pulse 5s ease-in-out infinite 0.4s;
}

.reach-ring-c {
  stroke: rgba(176, 130, 44, 0.18);
  animation: reach-pulse 5s ease-in-out infinite 0.8s;
}

.reach-spoke {
  fill: none;
  stroke: rgba(176, 130, 44, 0.35);
  stroke-width: 1.25;
  stroke-linecap: round;
}

.reach-node {
  fill: var(--gold);
}

.reach-pin {
  fill: var(--navy);
}

.reach-pin-dot {
  fill: #fff;
}

@keyframes reach-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform-origin: 120px 120px;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform-origin: 120px 120px;
    transform: scale(1.03);
  }
}

.contact {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(176, 130, 44, 0.18) 0%,
    rgba(176, 130, 44, 0.04) 45%,
    transparent 70%
  );
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(40px, 7vw, 80px);
  align-items: end;
}

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

.contact h2 {
  margin: 0 0 18px;
  max-width: 14ch;
  color: #fff;
}

.contact .section-sub {
  margin: 0 0 32px;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.68);
}

.contact-mail {
  min-height: 48px;
}

.contact-actions {
  margin-top: 0;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail a,
.contact-detail-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
  text-decoration: none;
}

.contact-detail a {
  border-bottom: 1px solid rgba(176, 130, 44, 0.45);
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* About page */
.about-hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(56px, 8vw, 88px);
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, #fafbfc 0%, var(--bg) 55%);
}

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.about-hero-copy .section-eyebrow {
  margin-bottom: 18px;
}

.about-hero-copy h1 {
  margin: 0 0 14px;
  max-width: 10ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.about-role {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-hero-copy .lede {
  margin: 0 0 32px;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.55;
}

.about-hero-visual {
  margin: 0;
  position: relative;
}

.about-hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 18%;
  background: linear-gradient(135deg, rgba(0, 24, 56, 0.06), rgba(176, 130, 44, 0.12));
  z-index: 0;
  pointer-events: none;
}

.about-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.about-bio {
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--rule);
}

.about-bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.about-bio-intro h2 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.about-bio-body p {
  margin: 0 0 18px;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.7;
}

.about-bio-body p:last-of-type {
  margin-bottom: 28px;
}

.about-creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}

.about-creds li {
  position: relative;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.about-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

.about-path {
  padding: clamp(56px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--rule);
}

.about-path-intro {
  margin-bottom: clamp(36px, 5vw, 52px);
  max-width: 46rem;
}

.about-path-intro h2 {
  margin: 0 0 14px;

  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.about-path-intro .section-sub {
  margin: 0;
  max-width: 46ch;
}

.path-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.path-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 16px 28px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease calc(var(--i, 0) * 70ms),
    transform 0.55s ease calc(var(--i, 0) * 70ms);
}

.path-row:last-child {
  border-bottom: 1px solid var(--rule);
}

.path-row.is-in {
  opacity: 1;
  transform: none;
}

.path-num {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-top: 4px;
}

.path-tag {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.path-row.is-current .path-tag {
  color: var(--gold);
}

.path-main h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.015em;
  color: var(--navy);
}

.path-desc {
  margin: 0;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.about-lens {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: clamp(64px, 9vw, 104px) 0;
}

.about-lens-inner {
  position: relative;
}

.about-lens-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(176, 130, 44, 0.2) 100%);
  transform: translateX(-14px);
}

.about-lens .section-eyebrow {
  margin-bottom: 20px;
}

.about-lens-quote {
  margin: 0;
  max-width: 90%;
  border: 0;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.about-lens-quote .lens-line {
  display: block;
}

.about-lens-quote .lens-line + .lens-line {
  margin-top: 0.12em;
}

.about-lens-note {
  margin: 28px 0 0;
  max-width: 48ch;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0 48px;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px 32px;
  align-items: center;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-copy,
.footer-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

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

.footer-meta a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-meta a:hover {
  color: var(--navy);
  border-bottom-color: rgba(0, 24, 56, 0.25);
}

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-bg,
  .hero-parallax,
  .hero-orb,
  .hero-beam,
  .hero-grid,
  .hero-sheen,
  .hero-block,
  .hero-brick,
  .hero-skyline-base,
  .pim-layer,
  .pim-accent-line,
  .practice-item,
  .practice-row,
  .practice-note,
  .path-row,
  .cycle-station,
  .cycle-station::before,
  .cycle-station-index,
  .cycle-caption,
  .cycle-aside-kicker,
  .cycle-core,
  .cycle-frame-flow,
  .cycle-flow-arrow,
  .cycle-frame-fill,
  .reach-ring-a,
  .reach-ring-b,
  .reach-ring-c {
    opacity: 1;
    animation: none;
    transition: none;
  }

  .cycle-station::before {
    opacity: 0;
  }

  .cycle-flow-arrow {
    transform: rotate(16deg);
  }

  .hero-content,
  .hero-bg,
  .hero-parallax,
  .hero-orb,
  .hero-beam,
  .hero-grid,
  .hero-sheen,
  .practice-item,
  .practice-row,
  .practice-note,
  .path-row,
  .cycle-caption,
  .reach-ring-a,
  .reach-ring-b,
  .reach-ring-c {
    transform: none;
  }

  .cycle-station {
    transform: translate(-50%, -50%);
  }

  .cycle-core {
    transform: translate(-50%, -50%);
  }

  .hero-bg {
    transform: scale(1.06);
  }

  .hero-atmos {
    display: none;
  }

  .hero-brick,
  .hero-skyline-base {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .practice-item:hover .practice-index,
  .practice-item:hover .practice-copy,
  .practice-row:hover .practice-num {
    transform: none;
  }
}

@media (max-width: 900px) {
  .header-bar {
    min-height: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    display: none;
    position: absolute;
    inset: 100% 0 auto;
    padding: 8px var(--pad) 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--rule);
  }

  .nav-panel.is-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a {
    min-height: 48px;
    padding: 0;
    border-bottom: 1px solid var(--rule);
  }

  .nav-links a.nav-contact {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  body.nav-open {
    overflow: hidden;
  }

  .section-head.split,
  .vm-grid,
  .about-hero-layout,
  .about-bio-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-copy h1,
  .about-hero-copy .lede,
  .about-bio-intro h2,
  .about-bio-body p,
  .about-path-intro h2,
  .about-path-intro .section-sub,
  .about-lens-quote,
  .about-lens-note {
    max-width: none;
  }

  .about-hero-visual {
    order: -1;
    max-width: 420px;
  }

  .about-hero-visual::before {
    inset: 10% -6% -6% 14%;
  }

  .path-row {
    grid-template-columns: 40px 1fr;
    gap: 8px 14px;
  }

  .path-desc {
    grid-column: 2;
    max-width: none;
  }

  .journey-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reach-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: stretch;
  }

  .reach-visual {
    justify-content: center;
    width: 100%;
  }

  .reach-icon {
    width: min(100%, 200px);
    margin-inline: auto;
  }

  .journey-intro h2,
  .journey-question,
  .journey-body p {
    max-width: none;
  }

  .practice-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .practice-intro-visual {
    justify-content: center;
  }

  .practice-intro-mark {
    width: min(100%, 150px);
  }

  .practice-intro h2,
  .practice-intro .section-sub {
    max-width: none;
  }

  .practice-row {
    grid-template-columns: 48px 1fr 40px;
    gap: 10px 16px;
    align-items: start;
  }

  .practice-num {
    grid-column: 1;
    grid-row: 1;
  }

  .practice-main {
    grid-column: 2;
    grid-row: 1;
  }

  .practice-icon {
    grid-column: 3;
    grid-row: 1;
    width: 40px;
    height: 40px;
  }

  .practice-desc {
    grid-column: 2 / 4;
    grid-row: 2;
    max-width: none;
  }

  .practice-icon svg {
    width: 20px;
    height: 20px;
  }

  .cycle {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cycle-board {
    max-width: 400px;
    margin-inline: auto;
    padding: 56px 44px;
  }

  .cycle-frame {
    max-width: 300px;
  }

  .cycle-station {
    width: 38px;
    height: 38px;
  }

  .cycle-station-index {
    width: 38px;
    height: 38px;
    font-size: 11px;
    box-shadow:
      0 0 0 5px var(--bg),
      0 6px 16px rgba(0, 24, 56, 0.08);
  }

  .cycle-station strong {
    font-size: 0.8rem;
  }

  .cycle-station--2 strong {
    left: calc(100% + 10px);
  }

  .cycle-station--5 strong {
    right: calc(100% + 10px);
  }

  .cycle-core {
    width: min(62%, 150px);
  }

  .cycle-core-title {
    font-size: 0.9rem;
  }

  .cycle-core-rule {
    margin: 10px 0;
    width: 22px;
  }

  .cycle-aside {
    max-width: none;
  }

  .cycle-caption {
    max-width: none;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 2px solid var(--gold);
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  .contact h2,
  .contact .section-sub {
    max-width: none;
  }

  .vm-block:first-child,
  .vm-block:last-child {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

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

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero-blocks {
    width: min(70vw, 260px);
    right: 2%;
    bottom: 6%;
    opacity: 0.7;
  }

  .hero-skyline {
    min-height: 180px;
    gap: 5px;
  }

  .hero-brick {
    height: 28px;
  }

  .hero-content {
    max-width: none;
    padding-top: 80px;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: none;
  }

  .brand-logo {
    height: 36px;
  }
}
