:root {
  --ink: #17110d;
  --muted: #735b4e;
  --paper: #fff1df;
  --paper-2: #fff8ee;
  --line: rgba(114, 62, 21, 0.16);
  --lime: #ff6a13;
  --teal: #ff3f12;
  --clay: #b94620;
  --graphite: #211816;
  --amber: #ffb84d;
  --coral: #e8441f;
  --white: #ffffff;
  --shadow: 0 26px 80px rgba(97, 42, 12, 0.2);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 184, 77, 0.38), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(255, 63, 18, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--paper-2), var(--paper));
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 10;
}

body::after {
  content: none;
}

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

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px 10px 12px;
  border: 1px solid rgba(23, 17, 13, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(22px);
  box-shadow:
    0 24px 70px rgba(74, 34, 15, 0.18),
    0 0 0 6px rgba(255, 255, 255, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 26px rgba(255, 82, 18, .22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 106, 19, 0.18);
  transform: translateY(-1px);
}

.main-nav .nav-social {
  color: var(--paper-2);
  background: var(--ink);
  border: 1px solid rgba(23, 17, 13, 0.22);
  box-shadow: 0 10px 24px rgba(23, 17, 13, 0.14);
}

.main-nav .nav-social:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--lime), var(--teal));
}

.nav-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 44px 0 46px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  line-height: .96;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.5vw, 96px);
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
}

h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
}

.hero-text,
.page-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(17, 20, 17, 0.16);
}

.button.primary {
  color: var(--white);
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--lime), var(--teal));
}

.button.ghost {
  background: rgba(255, 255, 255, 0.4);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual img,
.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  filter: sepia(.55) saturate(1.25) hue-rotate(334deg) contrast(1.04);
}

.signal-card {
  position: absolute;
  width: min(240px, 58%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  background: rgba(33, 24, 22, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(17, 20, 17, 0.26);
  animation: floaty 7s ease-in-out infinite;
}

.signal-card span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

.card-one { top: 62px; left: 0; }
.card-two { right: 0; bottom: 54px; animation-delay: -2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, var(--teal), var(--lime), var(--coral));
  color: var(--paper-2);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.ticker span {
  padding: 18px 30px;
  font-size: clamp(18px, 2vw, 28px);
  font-family: "Instrument Serif", serif;
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
}

.split {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.section-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.split-content p {
  max-width: 780px;
  color: var(--muted);
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.program-card,
.values article {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 58px rgba(17, 20, 17, 0.07);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.service-card:hover,
.program-card:hover,
.values article:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 106, 19, 0.35);
  background: rgba(255, 255, 255, 0.75);
}

.card-index,
.program-card span,
.values span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p,
.program-card p,
.values p,
.step p,
.line-item p,
.contact-aside p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 28px;
  font-weight: 800;
}

.method-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 106, 19, .28), transparent 24rem),
    linear-gradient(135deg, var(--graphite), #120c0a);
  width: 100%;
  padding-inline: max(16px, calc((100% - 1180px) / 2));
}

.method-copy {
  position: sticky;
  top: 110px;
}

.method-copy .eyebrow { color: var(--amber); }

.method-steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.step span {
  color: var(--amber);
  font-weight: 800;
}

.step p { margin-bottom: 0; color: rgba(255, 250, 240, 0.72); }

.proof {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
}

.proof-stat,
.proof-quote {
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
}

.proof-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-label {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-stat strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 150px;
  line-height: .8;
  margin-bottom: 10px;
}

.proof-stat h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.proof-stat p {
  max-width: 34ch;
  margin-bottom: 22px;
  color: var(--muted);
}

.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 106, 19, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.proof-quote p {
  font-family: "Instrument Serif", serif;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
}

.cta-section {
  margin: 0 auto 16px;
  padding: 0 16px 16px;
}

.cta-inner {
  display: grid;
  justify-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px);
  border-radius: 8px;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 12% 80%, rgba(255, 184, 77, .7), transparent 20rem),
    linear-gradient(135deg, var(--teal), var(--lime) 48%, #c72d18);
}

.cta-inner .eyebrow { color: var(--white); }

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0 clamp(46px, 7vw, 84px);
}

.page-hero h1 {
  font-size: clamp(54px, 7vw, 96px);
}

.seminar-hero {
  border-bottom: 1px solid var(--line);
}

.offer-layout,
.contact-layout,
.about-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.sticky-note {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: 8px;
  color: var(--paper-2);
  background: linear-gradient(135deg, var(--teal), var(--coral));
}

.sticky-note span,
.contact-aside span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.line-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.line-item > span {
  color: var(--clay);
  font-weight: 800;
}

.program-grid,
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.schedule-band {
  border-top: 1px solid var(--line);
}

.schedule {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.schedule span {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  font-weight: 800;
}

.about-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(78px, 12vw, 150px) 0 50px;
  align-items: center;
}

.portrait-panel {
  height: min(640px, 72vh);
}

.portrait-panel img {
  filter: saturate(.86) contrast(1.03);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
}

.contact-form.is-hidden {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--clay);
  font-size: 14px;
  font-weight: 800;
}

.form-success {
  position: relative;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 106, 19, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 184, 77, .46), transparent 11rem),
    var(--paper-2);
  box-shadow: 0 20px 60px rgba(97, 42, 12, 0.12);
  overflow: hidden;
}

.form-success.is-visible {
  animation: successIn .46s ease both;
}

.form-success h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 58px);
}

.form-success p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.success-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  box-shadow: 0 18px 42px rgba(255, 82, 18, .28);
}

.success-orbit::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(255, 106, 19, .36);
  border-radius: 50%;
  animation: orbitPulse 1.5s ease-out infinite;
}

.success-orbit span {
  width: 26px;
  height: 14px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  transform: rotate(-45deg) translate(1px, -2px);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(17, 20, 17, .2);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea { resize: vertical; }

.contact-aside {
  padding: 32px;
  border-radius: 8px;
  color: var(--paper-2);
  background: var(--graphite);
}

.contact-aside h2 {
  overflow-wrap: anywhere;
}

.legal-page {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.legal-page h1 {
  font-size: clamp(48px, 8vw, 86px);
}

.legal-page h2 {
  margin-top: 40px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

@keyframes successIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbitPulse {
  from {
    opacity: .7;
    transform: scale(.86);
  }
  to {
    opacity: 0;
    transform: scale(1.18);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 880px) {
  .site-header {
    align-items: center;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--paper-2);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper-2);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .hero,
  .split,
  .service-grid,
  .method-band,
  .proof,
  .offer-layout,
  .contact-layout,
  .about-hero,
  .program-grid,
  .values {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual img {
    clip-path: none;
  }

  .method-copy,
  .sticky-note {
    position: static;
  }

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

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header,
  .hero,
  .section,
  .page-hero,
  .about-hero {
    width: calc(100vw - 32px);
  }

  .hero-actions,
  .site-footer,
  .site-footer div {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 260px;
  }

  .page-hero h1 {
    font-size: 44px;
    line-height: 1;
    max-width: min(330px, calc(100vw - 32px));
  }

  .page-lead {
    max-width: min(340px, calc(100vw - 32px));
  }

  .signal-card {
    width: 72%;
  }

  .card-one { top: 18px; }
  .card-two { bottom: 18px; }

  .step,
  .line-item,
  .schedule {
    grid-template-columns: 1fr;
  }

  .service-card,
  .program-card,
  .values article {
    min-height: auto;
  }

  .program-card p,
  .service-card p,
  .values p {
    max-width: min(285px, calc(100vw - 80px));
  }
}
