:root {
  --ink: #111615;
  --ink-2: #2c3432;
  --muted: #68716e;
  --line: #e1ded4;
  --paper: #f8f7f2;
  --white: #fffdf8;
  --teal: #23635e;
  --teal-dark: #174d49;
  --coral: #8f5148;
  --lime: #c7a867;
  --amber: #c7a867;
  --dark: #0d1110;
  --dark-2: #18201e;
  --shadow: 0 26px 72px rgba(17, 22, 21, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Aptos, "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.anchor-alias {
  display: block;
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 58px);
  border-bottom: 1px solid rgba(225, 222, 212, 0.88);
  background: rgba(248, 247, 242, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: clamp(188px, 23vw, 286px);
  height: auto;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-2);
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 13px;
}

.site-nav a:hover {
  background: rgba(0, 137, 145, 0.09);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover {
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section,
.hero,
.page-hero,
.contact {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 58px);
}

.section,
.page-hero,
.contact {
  position: relative;
  isolation: isolate;
}

.section > *,
.hero > *,
.page-hero > *,
.contact > *,
.site-footer > * {
  position: relative;
  z-index: 1;
  max-width: var(--max);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(74, 119, 86, 0.22), rgba(74, 119, 86, 0.08) 36%, transparent 62%),
    linear-gradient(135deg, rgba(199, 168, 103, 0.08), transparent 44%),
    linear-gradient(118deg, rgba(35, 99, 94, 0.2), transparent 54%),
    linear-gradient(180deg, #0d1110, #101815 58%, #0d1110);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  min-height: min(690px, calc(100svh - 86px));
  padding-top: clamp(54px, 7vw, 92px);
  padding-bottom: clamp(44px, 6vw, 82px);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(96deg, rgba(13, 17, 16, 0.9) 0%, rgba(13, 21, 18, 0.56) 43%, rgba(27, 76, 52, 0.3) 100%),
    linear-gradient(145deg, rgba(90, 139, 97, 0.24), rgba(49, 98, 72, 0.1) 42%, transparent 72%),
    linear-gradient(135deg, rgba(199, 168, 103, 0.06), transparent 38%);
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(13, 17, 16, 0.62) 0%, rgba(14, 34, 24, 0.14) 40%, rgba(13, 17, 16, 0.54) 100%),
    linear-gradient(28deg, rgba(47, 103, 75, 0.2), transparent 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(640px, 100%);
  min-width: 0;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: start;
  width: min(680px, 100%);
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.hero-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.13), rgba(255, 253, 248, 0.07)),
    rgba(13, 17, 16, 0.58);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin: 0;
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-decision h2 {
  max-width: 14ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  line-height: 1.05;
}

.hero-panel-lead {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.decision-list {
  display: grid;
  gap: 10px;
}

.decision-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.decision-list div:hover {
  border-color: rgba(199, 168, 103, 0.5);
  background: rgba(255, 255, 255, 0.095);
}

.decision-list span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199, 168, 103, 0.34);
  border-radius: 50%;
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 750;
}

.decision-list strong {
  color: var(--white);
  line-height: 1.15;
}

.decision-list small {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.4;
}

.hero-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel-actions .button {
  min-height: 46px;
  padding: 13px 16px;
}

.panel-note {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-offers {
  display: grid;
  gap: 10px;
}

.hero-offers a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-offers a:hover {
  border-color: rgba(199, 168, 103, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.hero-offers span {
  grid-row: span 2;
  color: var(--lime);
  font-weight: 750;
}

.hero-offers strong {
  color: var(--white);
  line-height: 1.15;
}

.hero-offers small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.process-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(241, 238, 226, 0.9));
}

.process-thumb {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(17, 22, 21, 0.08);
  background: var(--white);
}

.hero-panel .process-thumb {
  box-shadow: none;
}

.panel-link {
  width: fit-content;
  color: var(--lime);
  font-weight: 700;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.section-dark .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(2.55rem, 4.4vw, 4.9rem);
  font-weight: 520;
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", ui-serif, serif;
  font-size: clamp(1.9rem, 3.35vw, 3.65rem);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lead,
.page-hero p,
.contact-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 700;
  line-height: 1.1;
}

.button-primary {
  color: #12120f;
  background: var(--lime);
}

.button-primary:hover {
  background: #d8bf7c;
}


.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button-outline:hover {
  border-color: var(--teal);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 0;
}

.trust-strip div {
  border-left: 2px solid rgba(199, 168, 103, 0.86);
  padding-left: 14px;
}

.trust-strip dt {
  font-size: 1.16rem;
  font-weight: 750;
}

.trust-strip dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.intro,
.proof {
  background:
    linear-gradient(122deg, rgba(35, 99, 94, 0.04), transparent 38%),
    linear-gradient(285deg, rgba(199, 168, 103, 0.055), transparent 42%),
    var(--white);
}

.section:not(.section-dark):not(.contact)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(35, 99, 94, 0.035), transparent 30%),
    linear-gradient(286deg, rgba(199, 168, 103, 0.045), transparent 36%);
  opacity: 0.82;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
}

.text-stack p {
  color: var(--muted);
  font-size: 1.08rem;
}

.band {
  background:
    linear-gradient(105deg, rgba(35, 99, 94, 0.08), transparent 34%),
    linear-gradient(278deg, rgba(199, 168, 103, 0.11), transparent 44%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.58), rgba(248, 247, 242, 0.96)),
    var(--paper);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 42px;
}

.section-heading.compact {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-lead {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading:not(.compact) .section-lead {
  margin-left: 0;
  margin-right: 0;
}

.service-grid,
.steps,
.workshop-grid,
.agent-grid,
.module-grid,
.proof-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card,
.agent-card,
.steps article,
.workshop-grid article,
.proof-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.78)),
    linear-gradient(135deg, rgba(35, 99, 94, 0.052), transparent 52%),
    var(--white);
  box-shadow: 0 12px 36px rgba(17, 22, 21, 0.055);
}

.service-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 28px;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: var(--teal);
}

.service-card.accent-coral::before {
  background: var(--coral);
}

.service-card.accent-lime::before {
  background: var(--lime);
}

.service-card.accent-amber::before {
  background: var(--amber);
}

.service-card p {
  color: var(--muted);
}

.service-card .label {
  color: var(--muted);
}

.service-card span {
  margin-top: auto;
  color: var(--ink);
  font-weight: 750;
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 750;
}

.clarity-section {
  background:
    linear-gradient(118deg, rgba(35, 99, 94, 0.052), transparent 36%),
    linear-gradient(294deg, rgba(199, 168, 103, 0.07), transparent 46%),
    var(--white);
}

.symptom-grid,
.path-steps {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 18px;
}

.symptom-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.symptom-card,
.path-steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.82)),
    linear-gradient(140deg, rgba(35, 99, 94, 0.048), transparent 56%),
    var(--white);
  box-shadow: 0 12px 36px rgba(17, 22, 21, 0.05);
}

.symptom-card {
  min-height: 265px;
  padding: 24px;
}

.symptom-card span,
.path-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 750;
}

.symptom-card h3 {
  min-height: 58px;
}

.symptom-card p,
.path-steps p {
  color: var(--muted);
}

.path-section {
  padding-top: clamp(62px, 7vw, 96px);
}

.path-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-steps article {
  min-height: 230px;
  padding: 24px;
}

.guide-section {
  background:
    linear-gradient(118deg, rgba(35, 99, 94, 0.06), transparent 34%),
    linear-gradient(290deg, rgba(199, 168, 103, 0.09), transparent 42%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(248, 247, 242, 0.94)),
    var(--paper);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 4vw, 54px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.guide-block,
.guide-path article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(17, 22, 21, 0.05);
}

.guide-block {
  padding: clamp(24px, 4vw, 36px);
}

.guide-block > span,
.guide-path span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 750;
}

.symptom-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.symptom-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
}

.symptom-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
}

.guide-path {
  display: grid;
  gap: 14px;
}

.guide-path article {
  padding: 22px;
}

.guide-path h3 {
  margin-bottom: 8px;
}

.guide-path p {
  margin: 0;
  color: var(--muted);
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.agent-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agent-card {
  min-height: 310px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(35, 99, 94, 0.075), transparent 46%),
    var(--white);
}

.agent-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(143, 81, 72, 0.075), transparent 46%),
    var(--white);
}

.agent-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(199, 168, 103, 0.13), transparent 46%),
    var(--white);
}

.agent-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(17, 22, 21, 0.055), transparent 46%),
    var(--white);
}

.agent-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--teal-dark);
  font-weight: 750;
}

.agent-card p {
  color: var(--muted);
}

.signal-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.82)),
    linear-gradient(118deg, rgba(143, 81, 72, 0.055), transparent 60%),
    var(--white);
}

.signal-list div:nth-child(2) {
  border-left-color: var(--teal);
}

.signal-list div:nth-child(3) {
  border-left-color: var(--lime);
}

.signal-list div:nth-child(4) {
  border-left-color: var(--amber);
}

.signal-list span {
  color: var(--muted);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article,
.workshop-grid article,
.module-grid article,
.proof-grid article {
  padding: 24px;
}

.steps span,
.module-grid span,
.deliverables span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 750;
}

.steps p,
.workshop-grid p,
.module-grid p,
.proof-grid p,
.deliverables p {
  color: var(--muted);
}

.module-grid article {
  min-height: 245px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.8)),
    linear-gradient(135deg, rgba(199, 168, 103, 0.06), transparent 58%),
    var(--white);
  box-shadow: 0 12px 36px rgba(17, 22, 21, 0.055);
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.proof > div {
  max-width: var(--max);
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: clamp(34px, 5vw, 80px);
}

.contact-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.lead-form {
  display: grid;
  width: min(520px, 100%);
  gap: 15px;
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(10, 16, 18, 0.62);
  font: inherit;
}

.lead-form textarea {
  min-height: 120px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(159, 214, 75, 0.55);
  outline-offset: 1px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(54px, 7vw, 82px) clamp(20px, 5vw, 58px) 28px;
  color: rgba(255, 253, 248, 0.78);
  background:
    radial-gradient(circle at 16% 0%, rgba(74, 119, 86, 0.24), transparent 34%),
    radial-gradient(circle at 82% 22%, rgba(199, 168, 103, 0.14), transparent 30%),
    linear-gradient(135deg, #0d1110 0%, #111916 54%, #0c1210 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
  opacity: 0.22;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.footer-logo img {
  display: block;
  width: clamp(188px, 17vw, 238px);
  height: auto;
}

.footer-brand p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(199, 168, 103, 0.58);
  border-radius: 999px;
  color: #141614;
  background: linear-gradient(135deg, #f0d48b, #c7a867);
  box-shadow: 0 14px 36px rgba(199, 168, 103, 0.18);
  font-weight: 800;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: clamp(22px, 4vw, 52px);
}

.footer-column {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-heading {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.84);
  font-weight: 700;
  text-decoration: none;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 253, 248, 0.66);
  line-height: 1.45;
}

.footer-column a {
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-contact a:first-of-type {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  color: rgba(255, 253, 248, 0.54);
  font-size: 0.88rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  min-height: 620px;
}

.page-hero > div {
  justify-self: end;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.55rem, 4.9vw, 5.2rem);
}

.price-panel {
  width: min(390px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.price-panel span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.price-panel strong {
  display: block;
  margin: 8px 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.price-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.workshop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverables {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverables div {
  min-height: 230px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.deliverables div:last-child {
  border-right: 0;
}

.deliverables strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

@media (max-width: 1050px) {
  .hero,
  .page-hero,
  .split,
  .guide-layout,
  .signal-layout,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-visual,
  .contact-copy,
  .lead-form,
  .page-hero > div {
    justify-self: center;
    width: min(100%, var(--max));
  }

  .service-grid,
  .steps,
  .workshop-grid,
  .agent-grid,
  .module-grid,
  .symptom-grid,
  .path-steps,
  .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deliverables div:nth-child(2) {
    border-right: 0;
  }

  .deliverables div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    margin-left: 0;
    color: var(--ink);
    background: transparent;
  }

  .site-nav .nav-cta {
    color: var(--white);
    background: var(--ink);
    text-align: center;
  }

  h1 {
    font-size: clamp(2.15rem, 8.8vw, 3.15rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.65rem);
  }

  .hero,
  .section,
  .page-hero,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .button {
    flex: none;
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .steps,
  .workshop-grid,
  .agent-grid,
  .module-grid,
  .symptom-grid,
  .path-steps,
  .deliverables {
    grid-template-columns: 1fr;
  }

  .deliverables div,
  .deliverables div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .deliverables div:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 300px;
  }

  .footer-shell,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


@media (max-width: 430px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 178px;
  }
}

@media (max-width: 520px) {
  .hero-copy,
  .hero-lead,
  .trust-strip,
  .hero-actions {
    max-width: min(100%, 354px);
  }

  .hero-copy {
    justify-self: start;
  }
}
