/* ============================================================
   IRON MINDS TOKYO — demo LP
   Design language: photography-first, extreme typographic
   contrast. Pure black / pure white / single soft gray.
   Pill CTAs, flat zero-radius cards, 8px spacing grid.
   ============================================================ */

:root {
  --ink: #111111;
  --canvas: #ffffff;
  --cloud: #f5f5f5;
  --charcoal: #39393b;
  --ash: #4b4b4d;
  --mute: #707072;
  --stone: #9e9ea0;
  --hairline: #cacacb;
  --hairline-soft: #e5e5e5;
  --sale: #d30005;
  --success: #007d48;

  --font-ui: "Noto Sans JP", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Anton", "Noto Sans JP", sans-serif;

  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 18px;
  --sp-xl: 24px;
  --sp-xxl: 30px;
  --section: 48px;

  --container: 1200px;
  --gutter: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- type utilities ---------- */

.display-en {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.display-jp {
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.02em;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: var(--sp-md);
}

.section-title {
  font-size: clamp(28px, 4.4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.section-lead {
  margin-top: var(--sp-lg);
  color: var(--charcoal);
  max-width: 640px;
}

.section-head { margin-bottom: calc(var(--section) - 8px); }

/* ---------- buttons: pill or nothing ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  height: 48px;
  padding: 0 32px;
  border: 0;
  border-radius: 9999px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:active { transform: scale(0.96); opacity: 0.8; }

.btn-primary { background: var(--ink); color: var(--canvas); }
.btn-primary:hover { opacity: 0.85; }

.btn-secondary { background: var(--cloud); color: var(--ink); }
.btn-secondary:hover { background: var(--hairline-soft); }

.btn-onimage { background: var(--canvas); color: var(--ink); padding: 0 24px; }
.btn-onimage:hover { opacity: 0.85; }

.btn-ghost-dark {
  background: transparent;
  color: var(--canvas);
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-ghost-dark:hover { border-color: var(--canvas); }

.btn-block { width: 100%; }

/* ---------- utility bar (demo disclaimer) ---------- */

.utility-bar {
  background: var(--cloud);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px var(--gutter);
  text-align: center;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--canvas);
  box-shadow: inset 0 -1px 0 var(--hairline-soft);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
}

.brand { display: flex; align-items: baseline; gap: var(--sp-sm); }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--mute);
  text-transform: uppercase;
}

.global-nav { display: flex; align-items: center; gap: var(--sp-xxl); }
.global-nav > a {
  font-size: 15px;
  font-weight: 700;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.global-nav > a:hover { border-bottom-color: var(--ink); }
.global-nav .btn { height: 40px; padding: 0 24px; font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  background: var(--canvas);
  box-shadow: inset 0 -1px 0 var(--hairline-soft);
}
.mobile-nav.open { display: block; }
.mobile-nav nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-md) var(--gutter) var(--sp-xl);
  display: flex;
  flex-direction: column;
}
.mobile-nav nav > a {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--hairline-soft);
}
.mobile-nav .btn { margin-top: var(--sp-lg); }

/* ---------- hero campaign tile ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--canvas);
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.2) 55%, rgba(17,17,17,0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter) 64px;
  min-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: var(--sp-xl);
}

.hero-title {
  text-transform: uppercase;
  margin-bottom: var(--sp-xl);
}
.hero-title .display-jp {
  display: block;
  font-size: clamp(40px, 7.5vw, 88px);
}
.hero-title .display-en {
  display: block;
  font-size: clamp(72px, 13vw, 160px);
}

.hero-copy {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: var(--sp-sm);
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: var(--sp-xxl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}

.hero-badges { display: flex; flex-wrap: wrap; gap: var(--sp-sm); }
.badge-onimage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* stats band under hero */
.stats-band {
  background: var(--cloud);
  box-shadow: inset 0 -1px 0 var(--hairline-soft);
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  padding-top: var(--sp-xxl);
  padding-bottom: var(--sp-xxl);
}
.stat dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--sp-xs);
}
.stat dd {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.stat dd .unit {
  font-family: var(--font-ui);
  font-size: 0.45em;
  font-weight: 900;
  margin-left: 2px;
}

/* ---------- generic section rhythm ---------- */

.section { padding: calc(var(--section) * 1.6) 0; }
.section-cloud { background: var(--cloud); }

/* ---------- concerns ---------- */

.concern-list { border-top: 1px solid var(--hairline); max-width: 820px; }
.concern-list li {
  display: flex;
  align-items: baseline;
  gap: var(--sp-xl);
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--hairline);
}
.concern-list .num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--stone);
  min-width: 48px;
}
.concern-list p { font-size: 17px; font-weight: 500; }

.statement-tile {
  margin-top: var(--section);
  background: var(--ink);
  color: var(--canvas);
  padding: var(--section) var(--sp-xxl);
}
.statement-tile p {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  max-width: 900px;
}
.statement-tile .em {
  font-weight: 900;
  border-bottom: 3px solid var(--canvas);
}

/* ---------- card grids (flat, zero radius) ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl) var(--sp-sm);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl) var(--sp-sm);
}

/* ---------- transformations ---------- */

.tf-card { background: var(--canvas); }
.tf-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.tf-shot { position: relative; background: var(--cloud); }
.tf-shot img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.tf-tag {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.tf-shot--after .tf-tag { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.tf-meta { padding-top: var(--sp-md); }
.tf-name { font-size: 16px; font-weight: 700; }
.tf-course { font-size: 14px; font-weight: 500; color: var(--mute); margin-top: 2px; }

.tf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  margin: var(--sp-md) 0;
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
}
.tf-stats dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mute);
  text-transform: uppercase;
}
.tf-stats dd {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}
.tf-stats dd.delta { color: var(--sale); }
.tf-note { font-size: 14px; color: var(--charcoal); }

/* ---------- pricing ---------- */

.plan {
  border: 1px solid var(--hairline);
  padding: var(--sp-xxl);
  display: flex;
  flex-direction: column;
  background: var(--canvas);
}
.plan--featured { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.plan-badge {
  align-self: flex-start;
  background: var(--canvas);
  color: var(--ink);
  border-radius: 9999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-lg);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
}
.plan-type { font-size: 14px; font-weight: 700; color: var(--mute); margin-top: var(--sp-xs); }
.plan--featured .plan-type { color: var(--stone); }

.plan-price { margin: var(--sp-lg) 0 var(--sp-xl); }
.plan-price .amount { font-size: 30px; font-weight: 900; letter-spacing: 0.01em; }
.plan-price .term { font-size: 13px; font-weight: 500; color: var(--mute); margin-left: var(--sp-xs); }
.plan--featured .plan-price .term { color: var(--stone); }

.plan-features { flex: 1; border-top: 1px solid var(--hairline-soft); margin-bottom: var(--sp-xl); }
.plan--featured .plan-features { border-top-color: var(--ash); }
.plan-features li {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 14px;
  font-weight: 500;
}
.plan--featured .plan-features li { border-bottom-color: var(--ash); }
.plan-features svg { flex: none; }

.pricing-note {
  margin-top: var(--sp-xl);
  font-size: 13px;
  color: var(--mute);
}

/* ---------- concept (4 promises) ---------- */

.promise {
  border-top: 2px solid var(--ink);
  padding-top: var(--sp-lg);
}
.promise .num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--stone);
  display: block;
  margin-bottom: var(--sp-md);
}
.promise h3 { font-size: 17px; font-weight: 900; line-height: 1.4; margin-bottom: var(--sp-sm); }
.promise p { font-size: 14px; color: var(--charcoal); }

/* ---------- staff ---------- */

.trainer-photo { position: relative; background: var(--cloud); }
.trainer-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.trainer-photo .tf-tag { top: auto; bottom: var(--sp-sm); }

.trainer-meta { padding-top: var(--sp-md); }
.trainer-name { font-size: 18px; font-weight: 900; }
.trainer-role { font-size: 13px; font-weight: 700; color: var(--mute); margin-top: 2px; }
.trainer-cert {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 2px;
}
.trainer-bio { font-size: 14px; color: var(--charcoal); margin-top: var(--sp-sm); }

.trainer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--hairline-soft);
}
.trainer-stats dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mute);
}
.trainer-stats dd { font-family: var(--font-display); font-size: 22px; line-height: 1.1; }
.trainer-stats dd .unit { font-family: var(--font-ui); font-size: 12px; font-weight: 700; margin-left: 1px; }

/* ---------- flow ---------- */

.flow-list { border-top: 1px solid var(--hairline); max-width: 900px; }
.flow-list li {
  display: flex;
  gap: var(--sp-xxl);
  padding: var(--sp-xl) 0;
  border-bottom: 1px solid var(--hairline);
}
.flow-list .num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  min-width: 64px;
  color: var(--ink);
}
.flow-list h3 { font-size: 17px; font-weight: 900; margin-bottom: var(--sp-xs); }
.flow-list p { font-size: 14px; color: var(--charcoal); max-width: 640px; }

/* ---------- voice ---------- */

.voice-card {
  background: var(--canvas);
  padding: var(--sp-xxl);
  display: flex;
  flex-direction: column;
}
.voice-quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.7;
  color: var(--hairline);
}
.voice-title { font-size: 17px; font-weight: 900; line-height: 1.5; margin: var(--sp-md) 0 var(--sp-sm); }
.voice-body { font-size: 14px; color: var(--charcoal); flex: 1; }

.voice-person {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--hairline-soft);
}
.voice-person img { width: 48px; height: 48px; border-radius: 9999px; object-fit: cover; }
.voice-person .name { font-size: 14px; font-weight: 700; }
.voice-person .meta { font-size: 12px; color: var(--mute); }

/* ---------- FAQ (disclosure rows) ---------- */

.faq-list { border-top: 1px solid var(--hairline); max-width: 900px; }
.faq-list details { border-bottom: 1px solid var(--hairline); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  padding: var(--sp-xl) 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .chev { flex: none; transition: transform 0.2s ease; }
.faq-list details[open] summary .chev { transform: rotate(180deg); }
.faq-a {
  padding: 0 0 var(--sp-xl);
  font-size: 15px;
  color: var(--charcoal);
  max-width: 760px;
}

/* ---------- CTA / booking ---------- */

.cta-section { background: var(--cloud); }
.cta-head { text-align: left; margin-bottom: var(--section); }

.booking {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  padding: var(--sp-xxl);
  max-width: 860px;
}

.booking-step {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: var(--sp-md);
}

.chip-row { display: flex; flex-wrap: wrap; gap: var(--sp-sm); margin-bottom: var(--sp-xxl); }

.chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 44px;
  padding: 8px 16px;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 9999px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease;
}
.chip:active { transform: scale(0.96); }
.chip.selected { background: var(--ink); color: var(--canvas); border-color: var(--ink); }
.chip:disabled, .chip.disabled { color: var(--stone); border-color: var(--hairline-soft); cursor: not-allowed; }
.chip .chip-sub { font-size: 10px; font-weight: 500; color: inherit; opacity: 0.7; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13px; font-weight: 700; }
.field-label .req { color: var(--sale); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--ink);
  background: var(--cloud);
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 10px 16px;
  height: 44px;
  outline: none;
  appearance: none;
}
.field textarea { height: auto; min-height: 96px; border-radius: 24px; resize: vertical; }
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--canvas);
  border-color: var(--ink);
}
.field ::placeholder { color: var(--stone); }

.agree {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: 13px;
  color: var(--charcoal);
  margin: var(--sp-lg) 0 var(--sp-xl);
}
.agree input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--ink); }
.agree a { text-decoration: underline; font-weight: 500; }

.form-note { margin-top: var(--sp-md); font-size: 12px; color: var(--mute); }

.booking-success {
  text-align: center;
  padding: var(--section) 0;
}
.booking-success .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--ink);
  color: var(--canvas);
  margin-bottom: var(--sp-lg);
}
.booking-success h3 { font-size: 22px; font-weight: 900; margin-bottom: var(--sp-sm); }
.booking-success p { font-size: 14px; color: var(--charcoal); }

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}

.hidden { display: none !important; }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--hairline); padding: var(--section) 0 var(--sp-xxl); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: var(--section) var(--sp-xxl);
  padding-bottom: var(--section);
}

.footer-brand .brand-name { font-size: 24px; }
.footer-brand p { font-size: 13px; color: var(--mute); margin-top: var(--sp-md); max-width: 280px; }

.footer-sns { display: flex; gap: var(--sp-sm); margin-top: var(--sp-lg); }
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: var(--cloud);
  color: var(--ink);
}
.footer-sns a:hover { background: var(--hairline-soft); }

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-lg);
}
.footer-col li { margin-bottom: var(--sp-md); font-size: 14px; color: var(--mute); }
.footer-col li a:hover { color: var(--ink); }
.footer-col .addr { line-height: 1.7; }

.footer-fine {
  border-top: 1px solid var(--hairline);
  padding-top: var(--sp-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-sm) var(--sp-xl);
  font-size: 11px;
  color: var(--mute);
}

/* ---------- floating CTA ---------- */

.floating-cta {
  position: fixed;
  right: var(--sp-lg);
  bottom: var(--sp-lg);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.floating-cta.show { opacity: 1; pointer-events: auto; transform: none; }

/* ============================================================
   responsive
   ============================================================ */

@media (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap-row: var(--section); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .global-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 599px) {
  :root { --section: 32px; --gutter: 20px; }

  .section { padding: calc(var(--section) * 1.5) 0; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; gap: var(--section) 0; }

  .hero-inner { padding-top: 64px; min-height: 78vh; }
  .hero-actions .btn { flex: 1; }

  .stats-band .container { gap: var(--sp-md); }

  .concern-list li { gap: var(--sp-md); }
  .concern-list .num { min-width: 36px; font-size: 22px; }

  .statement-tile { padding: var(--sp-xxl) var(--sp-xl); }

  .flow-list li { gap: var(--sp-lg); }
  .flow-list .num { min-width: 48px; font-size: 28px; }

  .booking { padding: var(--sp-xl); }
  .form-grid { grid-template-columns: 1fr; }
  .contact-row .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-xxl); }
}
