/* Enflet — The Amazon Intelligence Layer */

:root {
  --console: #272727;
  --console-2: #1f1f1f;
  --paper: #f9f9f9;
  --paper-2: #f3f1ec;
  --ink: #272727;
  --ink-soft: #5d6c7b;
  --mist: #d9d4cb;
  --signal: #0071ce;
  --signal-2: #3eadc5;
  --tint: #a8d9dc;
  --action: #f08a0f;
  --white: #f9f9f9;
  --white-soft: rgba(249, 249, 249, 0.68);
  --hairline-dark: rgba(249, 249, 249, 0.14);
  --hairline-light: rgba(43, 42, 40, 0.14);

  --serif: "Manrope", sans-serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --space-9: 6rem;

  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }
html.menu-open, html.menu-open body { overflow: hidden; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--white);
  background: var(--console);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(880px, 92vw); }

.section-paper { background: var(--paper); color: var(--ink); padding-block: var(--space-9); }
.section-console { background: var(--console); color: var(--white); padding-block: var(--space-9); }

.label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-2);
  margin-bottom: var(--space-3);
}
.label-ink { color: var(--signal); }

.section-head { max-width: 680px; margin-bottom: var(--space-7); }
.section-head h2 { font-size: 2.25rem; line-height: 2.5rem; }
.section-sub { margin-top: var(--space-3); color: var(--white-soft); max-width: 56ch; }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -100px;
  left: var(--space-3);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--action);
  color: var(--ink);
  font-weight: 600;
  border-radius: 999px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: var(--space-3); }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: var(--space-2);
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-inline: var(--space-2);
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: 0.75rem 1.5rem 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgba(35, 34, 32, 0.92);
  border: 1px solid var(--hairline-dark);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.nav-brand img { height: 30px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white-soft);
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline-dark);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle-line {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle-line:nth-child(1) { top: 18px; }
.nav-toggle-line:nth-child(2) { top: 24px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.btn:active { transform: scale(0.98) translateY(1px); }

.btn-primary { background: var(--action); color: var(--ink); }
.btn-primary:hover { background: #ff9d2e; box-shadow: 0 8px 24px rgba(240, 138, 15, 0.3); transform: translateY(-1px); }

.btn-ghost { border-color: var(--hairline-dark); color: var(--white); }
.btn-ghost:hover { border-color: var(--signal-2); color: var(--signal-2); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #44423e; transform: translateY(-1px); }

.btn-sm { font-size: 0.875rem; padding: 0.5rem 0.75rem; }

a:focus-visible, button:focus-visible, summary:focus-visible, iframe:focus-visible {
  outline: 2px solid var(--action);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(850px, 90svh);
  display: flex;
  align-items: center;
  background: var(--console);
  padding-top: calc(var(--nav-h) + var(--space-5));
  padding-bottom: var(--space-8);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 6fr);
  gap: var(--space-7);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-2);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--action);
}

.hero h1 {
  font-size: 3.75rem;
  line-height: 1;
  max-width: 680px;
  background: linear-gradient(to right, #ffffff, #9b9b9b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: var(--space-4);
}

.hero-sub {
  max-width: 34rem;
  color: var(--white-soft);
  margin-bottom: var(--space-5);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-4); }
.hero-actions .btn { padding: 0.75rem  1.5rem; }

.hero-proof {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-soft);
}

.hero-stage { position: relative; }
.hero-art { overflow: hidden; }
.brand-art { width: 100%; height: auto; }
.readout-caption { font-size: 0.875rem; color: var(--white); margin-top: 1rem; }
.readout-caption span { display: block; color: var(--white-soft); font-size: 0.75rem; margin-top: 0.25rem; }
.hero-svg { width: 100%; height: auto; overflow: visible; }
.hero-emblem { filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.35)); }

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--hairline-dark);
  border-radius: 16px;
  background: rgba(35, 34, 32, 0.6);
}
.tick { display: grid; gap: 2px; text-align: left; }
.tick-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(249, 249, 249, 0.45); }
.tick-value { font-size: 1.125rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.tick-delta { font-size: 0.75rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.delta-good { color: var(--signal-2); }

/* ---------- Proof ---------- */
.proof { border-bottom: 1px solid var(--hairline-light); padding-block: 3rem; }
.proof .container { display: grid; gap: var(--space-4); }

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4) var(--space-6);
  list-style: none;
}
.logo-row img {
  height: 28px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.82;
  transition: opacity 0.5s var(--ease), filter 0.5s var(--ease);
}
.logo-row li:nth-child(1) img { height: 44px; }
.logo-row li:nth-child(4) img { height: 44px; }
.logo-row img:hover { filter: grayscale(0); opacity: 1; }

.proof-note { font-size: 0.875rem; color: var(--ink-soft); }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: var(--space-7);
  align-items: center;
}
.problem-copy h2 { font-size: 2.25rem; line-height: 2.5rem; margin-bottom: var(--space-4); }
.problem-copy p { color: var(--white-soft); margin-bottom: var(--space-3); max-width: 56ch; }
.problem-kicker { color: var(--white) !important; font-weight: 600; }

.diagram-svg { width: 100%; height: auto; }
.diagram-svg text {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  fill: var(--white);
}
.loop-path { stroke-dasharray: 6 8; opacity: 0.5; }
.node rect { transition: stroke 0.6s var(--ease), transform 0.6s var(--ease); transform-box: fill-box; transform-origin: center; }
.node.lit rect { stroke: var(--signal-2); }
.node.lit text { fill: var(--white); }
.node-margin rect { fill: var(--action); }
.node-margin text, .node-margin.lit text { font-weight: 700; fill: var(--ink); }

/* ---------- Tagline ---------- */
.tagline { padding-block: var(--space-9); }
.tagline-line {
  font-family: var(--serif);
  font-size: 3.75rem;
  line-height: 1;
  color: var(--ink);
  max-width: 680px;
}
.tagline-line-2 { margin-top: var(--space-1); color: var(--signal); }

.tagline .word { display: inline-block; margin-right: 0.28em; color: rgba(43, 42, 40, 0.26); transition: color 0.7s var(--ease); }
.tagline .word.on { color: inherit; }
.tagline-line-2 .word.on { color: var(--signal); }

/* ---------- Services ---------- */
.services-bleed { background: var(--paper-2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}
.service-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: 24px;
  min-height: 480px;
}
.service-panel h3 { font-size: clamp(1.75rem, 3vw, 2.375rem); }
.service-panel p { max-width: 46ch; }
.panel-dark { background: var(--console); color: var(--white); }
.panel-dark p { color: var(--white-soft); }
.panel-tint { background: var(--tint); color: var(--ink); border: 1px solid rgba(43, 42, 40, 0.08); }
.panel-tint p { color: rgba(43, 42, 40, 0.72); }
.service-panel .btn { margin-top: auto; align-self: flex-start; padding: 0.75rem 1.5rem; }

.check-list { list-style: none; display: grid; gap: 0.75rem; }
.check-list li { position: relative; padding-left: 2rem; font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--signal-2);
}
.check-ink li::before { background: var(--signal); }

/* ---------- How ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  list-style: none;
  counter-reset: step;
}
.steps li {
  padding: var(--space-5);
  border: 1px solid var(--hairline-light);
  border-radius: 16px;
  background: var(--white);
  display: grid;
  gap: var(--space-2);
  align-content: start;
}
.steps h3 { font-size: 1.5rem; }
.steps p { color: var(--ink-soft); font-size: 1rem; }
.step-mark { display: none; }
.steps li::before { counter-increment: step; content: "0" counter(step); color: var(--signal); font-size: 0.875rem; font-weight: 700; margin-bottom: 1rem; }
.mark-blue { background: var(--signal); border-radius: 999px; width: 36px; height: 36px; }
.mark-teal { background: var(--signal-2); transform: rotate(14deg); }
.mark-orange { background: var(--action); border-radius: 999px; height: 24px; }

/* ---------- Signals ---------- */
.signal-board {
  display: grid;
  grid-template-columns: 1fr;
}
.signal {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  align-items: center;
  gap: 2rem;
  align-content: start;
  padding: 1.75rem 0;
  border-top: 1px solid var(--hairline-dark);
  transition: border-color 0.6s var(--ease), background 0.6s var(--ease), transform 0.6s var(--ease);
}
.signal:hover { border-color: var(--signal-2); }
.signal-name { font-size: 1.25rem; font-weight: 700; }
.signal-desc { font-size: 0.875rem; color: var(--white-soft); }
.signal-outcome {
  margin-top: 0;
  justify-self: start;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--tint);
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.signal:hover .signal-outcome, .signal:focus-within .signal-outcome { opacity: 1; transform: translateY(0); }
.signal:nth-child(4), .signal:nth-child(5) { grid-column: span 1; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: var(--space-2); }
.faq details {
  border: 1px solid var(--hairline-light);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: none;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq details p { padding: 0 var(--space-4) var(--space-4); color: var(--ink-soft); max-width: 65ch; }

/* ---------- Book ---------- */
.book .container { display: grid; justify-items: center; text-align: center; }
.book h2 { font-size: 3rem; line-height: 1; max-width: 16ch; }
.book-sub { max-width: 52ch; margin-top: var(--space-3); color: var(--white-soft); }
.book-widget {
  width: min(760px, 100%);
  margin-top: var(--space-5);
  border: 1px solid var(--hairline-dark);
  border-radius: 24px;
  overflow: hidden;
  background: var(--console-2);
}
.book-widget iframe { width: 100%; height: 720px; border: 0; display: block; }
.book-alt { margin-top: var(--space-3); font-size: 0.875rem; color: var(--white-soft); }
.book-alt a { color: var(--signal-2); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--console-2); border-top: 1px solid var(--hairline-dark); padding-block: var(--space-7) var(--space-4); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-5); }
.footer-brand img { margin-bottom: var(--space-2); }
.footer-brand p { color: var(--white-soft); font-size: 0.875rem; max-width: 32ch; }
.footer-links { list-style: none; display: grid; gap: 0.75rem; }
.footer-links a { color: var(--white-soft); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-legal { margin-top: var(--space-6); padding-top: var(--space-4); border-top: 1px solid var(--hairline-dark); display: grid; gap: 0.5rem; }
.footer-legal p { font-size: 0.75rem; color: rgba(249, 249, 249, 0.45); max-width: 90ch; }

/* ---------- Reveal defaults (JS only) ---------- */
html.js [data-reveal] { opacity: 1; transform: none; }
html.js [data-intro] { opacity: 1; transform: none; }
html.js .hero-svg .layer { opacity: 0; }
html.js .hero h1 .w { display: inline-block; will-change: transform; }

/* ---------- Split words ---------- */
.w-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
.w { display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero { padding-top: calc(var(--nav-h) + var(--space-4)); }
  .hero-stage { max-width: 560px; }
  .problem-grid { grid-template-columns: 1fr; }
  .signal-board { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-stage { width: 100%; margin-inline: auto; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .section-paper, .section-console { padding-block: 3rem; }
  .proof { padding-block: 2rem; }
  .section-head { margin-bottom: 2rem; }
  .hero { padding-top: 128px; padding-bottom: 2.5rem; }
  .hero h1 { font-size: 2.25rem; line-height: 2.5rem; }
  .hero-inner { gap: 2rem; }
  .hero-art { max-width: 280px; margin-inline: auto; }
  .signal { grid-template-columns: 1fr; gap: 0.5rem; padding-block: 1.5rem; }
  .signal-outcome { margin-top: 0.5rem; }

  .nav-pill { width: 100%; justify-content: space-between; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-5);
    background: rgba(35, 34, 32, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  }
  .nav-menu.open { opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; gap: var(--space-4); }
  .nav-links a { font-size: 1.5rem; font-family: var(--serif); }
  .nav-links li { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
  .nav-menu.open .nav-links li { opacity: 1; transform: translateY(0); }
  .nav-menu.open .nav-links li:nth-child(1) { transition-delay: 0.08s; }
  .nav-menu.open .nav-links li:nth-child(2) { transition-delay: 0.16s; }
  .nav-menu.open .nav-links li:nth-child(3) { transition-delay: 0.24s; }
  .nav-menu.open .nav-links li:nth-child(4) { transition-delay: 0.32s; }
  .nav-menu.open .nav-links li:nth-child(5) { transition-delay: 0.4s; }
  .nav-menu.open .nav-links li:nth-child(6) { transition-delay: 0.48s; }

  .hero-actions .btn { width: 100%; }
  .hero-actions .text-link { text-align: center; width: 100%; }
  .tagline-line { font-size: 2.25rem; line-height: 2.5rem; }
  .hero-stage { max-width: 420px; margin-inline: auto; }
  .ticker { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; padding: 1rem; }
  .tick-value { font-size: 0.875rem; }
  .tick-label { font-size: 0.625rem; }
  .logo-row { justify-content: center; }
  .service-grid { grid-template-columns: 1fr; }
  .service-panel { min-height: 0; padding: var(--space-5); }
  .steps { grid-template-columns: 1fr; }
  .signal-board { grid-template-columns: 1fr; }
  .signal-outcome { opacity: 1; transform: none; }
  .book-widget iframe { height: 640px; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 720px) {
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .nav-menu { position: static; opacity: 1; visibility: visible; background: none; display: block; }
  html:not(.js) .nav-links { display: none; }
  html:not(.js) .nav-cta { font-size: 0.75rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html.js [data-reveal] { opacity: 1; transform: none; filter: none; }
  html.js [data-intro] { opacity: 1; transform: none; }
  html.js .hero-svg .layer { opacity: 1; }
  .tagline .word { color: inherit; }
  .tagline-line-2 .word { color: var(--signal); }
  .loop-path { opacity: 0.9; }
}

/* Conversion hierarchy */
.text-link { font-size: 1rem; font-weight: 600; text-underline-offset: 4px; padding-block: 8px; }
.text-link:hover { color: var(--signal-2); }
.hero-actions { align-items: center; }
.hero h1 .w-wrap { overflow: visible; }
.hero h1 .w { background: linear-gradient(to right, #fff, #9b9b9b); background-clip: text; -webkit-background-clip: text; color: transparent; }
.hero-sub { max-width: 680px; }
.hero-art { border-radius: 24px; }
.hero-proof { letter-spacing: 0; }
.benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.benefits h3 { font-size: 1.5rem; line-height: 2rem; margin-bottom: 16px; }
.benefits p { color: var(--white-soft); font-size: 1rem; line-height: 1.5rem; }
.management { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; padding: 48px; border-radius: 24px; }
.management h2 { font-size: 2.25rem; line-height: 2.5rem; margin-bottom: 24px; }
.management p:not(.label) { color: var(--white-soft); }
.management .btn { margin-top: 32px; }
.consulting { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 32px; }
.consulting h3 { font-size: 1.5rem; line-height: 2rem; margin-bottom: 8px; }
.consulting p { max-width: 65ch; font-size: 1rem; line-height: 1.5rem; }
.consulting .text-link { flex-shrink: 0; }
.consulting .label { font-size: 0.75rem; margin-bottom: 8px; }
.booking-status { padding: 24px; font-size: 0.875rem; line-height: 1.25rem; color: var(--white-soft); }
.booking-skeleton { height: 80px; margin: 0 24px 24px; border-radius: 8px; background: #313131; }
.nav-links a[aria-current] { color: var(--white); text-decoration: underline; text-underline-offset: 8px; }
@media (max-width: 720px) {
  .benefits, .management { grid-template-columns: 1fr; gap: 24px; }
  .management { padding: 24px; }
  .consulting { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-art { max-width: 224px; }
  .hero-stage { margin-top: 0; }
  .hero h1 { letter-spacing: -0.025em; }
  .book h2 { font-size: 2.25rem; line-height: 2.5rem; }
}
