:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5f5b53;
  --paper: #f6f1e8;
  --white: #ffffff;
  --mist: #ebe3d7;
  --line: #d9ccbc;
  --green: #201d19;
  --green-2: #7b6240;
  --coral: #b78a55;
  --blue: #2a2722;
  --charcoal: #11100e;
  --champagne: #d8c2a0;
  --shadow: 0 24px 70px rgba(32, 29, 25, 0.16);
  --radius: 8px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0) 320px),
    var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: 18px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.72), rgba(11, 10, 9, 0));
}

.brand,
.nav-links,
.nav-cta {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(216, 194, 160, 0.72));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 16px 36px rgba(0, 0, 0, 0.24);
}

.brand-mark svg {
  width: 46px;
  height: 46px;
}

.mark-field {
  fill: #15130f;
}

.mark-hairline {
  fill: none;
  stroke: rgba(216, 194, 160, 0.7);
  stroke-width: 1.6;
}

.mark-arc,
.mark-stem,
.mark-angle {
  fill: none;
  stroke: var(--champagne);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-arc {
  stroke-width: 4.2;
  opacity: 0.76;
}

.mark-stem,
.mark-angle {
  stroke-width: 6;
}

.mark-dot {
  fill: none;
  stroke: var(--champagne);
  stroke-linecap: round;
  stroke-width: 7;
}

.brand-text {
  display: grid;
  gap: 4px;
  line-height: 1;
  min-width: 0;
}

.brand-text strong {
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 780;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
}

.nav-links a,
.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--champagne);
}

.nav-cta {
  justify-self: end;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-bottom: clamp(92px, 13vw, 152px);
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.92) 0%, rgba(10, 9, 8, 0.7) 43%, rgba(10, 9, 8, 0.2) 78%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.16), rgba(10, 9, 8, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: clamp(124px, 12vw, 156px);
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 640;
  line-height: 0.98;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.hero-assurance {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.45;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--coral);
  color: #181511;
  box-shadow: 0 16px 36px rgba(116, 86, 47, 0.26);
}

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

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

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

.proof-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 36px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(216, 194, 160, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-strip div {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

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

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(183, 138, 85, 0.4);
  border-radius: 50%;
  color: var(--coral);
}

.proof-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-strip strong {
  color: var(--green);
  font-size: 1rem;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

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

.intro-grid,
.section-heading,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 610;
  line-height: 1.05;
  color: var(--green);
}

.intro-copy,
.section-heading > p,
.contact-copy > p,
.service-card p,
.step p,
.contact-note {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.intro-copy p:first-child,
.contact-copy p {
  margin-top: 0;
}

.services-section {
  border-top: 1px solid var(--line);
}

.outcome-section {
  padding-top: 0;
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > p {
  margin: 0;
}

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

.service-card {
  position: relative;
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 14px 36px rgba(32, 29, 25, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.outcome-card {
  min-height: 224px;
  padding: 26px;
  border: 1px solid rgba(183, 138, 85, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(235, 227, 215, 0.62));
  box-shadow: 0 14px 36px rgba(32, 29, 25, 0.07);
}

.outcome-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.outcome-card h3 {
  margin: 30px 0 12px;
  color: var(--green);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(183, 138, 85, 0.42);
  border-radius: 50%;
  background: rgba(216, 194, 160, 0.12);
  color: var(--coral);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 138, 85, 0.55);
  box-shadow: 0 24px 56px rgba(32, 29, 25, 0.12);
}

.card-index {
  color: var(--coral);
  font-weight: 850;
  font-size: 0.82rem;
}

.service-card h3 {
  margin: 30px 0 12px;
  color: var(--blue);
  font-size: 1.22rem;
  font-weight: 720;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green-2);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  color: var(--coral);
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.accordion-panel {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.accordion-panel details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 10px 28px rgba(32, 29, 25, 0.05);
  overflow: clip;
}

.accordion-panel summary {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 20px 24px;
  color: var(--green);
  cursor: pointer;
  list-style: none;
}

.accordion-panel summary::-webkit-details-marker {
  display: none;
}

.accordion-panel summary::after {
  content: "+";
  grid-column: 3;
  justify-self: end;
  color: var(--coral);
  font-size: 1.4rem;
  font-weight: 600;
}

.accordion-panel details[open] summary::after {
  content: "-";
}

.accordion-panel summary span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accordion-panel summary strong {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.25;
}

.accordion-panel details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.approach-section {
  width: 100%;
  max-width: none;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 52px);
  background:
    radial-gradient(circle at 18% 12%, rgba(183, 138, 85, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(183, 138, 85, 0.12), rgba(183, 138, 85, 0) 34%),
    #15130f;
}

.approach-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: var(--white);
}

.approach-panel h2 {
  max-width: 900px;
  color: var(--white);
  font-weight: 560;
  line-height: 1.08;
}

.method-intro {
  max-width: 860px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.method-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 920px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(216, 194, 160, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.09);
}

.method-summary strong {
  color: var(--champagne);
}

.method-summary span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.message-explorer {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  margin-top: 44px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(216, 194, 160, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.09);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.message-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.message-tab {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 194, 160, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.message-tab:hover,
.message-tab:focus-visible,
.message-tab.is-active {
  border-color: rgba(216, 194, 160, 0.62);
  background: rgba(255, 252, 246, 0.14);
  color: var(--white);
  transform: translateX(3px);
}

.message-tab span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(216, 194, 160, 0.44);
  border-radius: 50%;
  color: var(--champagne);
  font-weight: 850;
}

.message-tab small {
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.message-panel {
  min-height: 100%;
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 52px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.17), rgba(255, 252, 246, 0.08));
}

.message-panel.is-changing {
  animation: panelShift 220ms ease;
}

.message-count {
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.message-panel h3 {
  margin: 16px 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 560;
  line-height: 1.02;
}

.message-panel p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.message-panel ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.message-panel li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.message-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 1px;
  background: var(--champagne);
}

@keyframes panelShift {
  from {
    opacity: 0.72;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-section {
  border-bottom: 1px solid var(--line);
}

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

.answer-card {
  position: relative;
  min-height: 278px;
  padding: 26px;
  border: 1px solid rgba(183, 138, 85, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.84);
  box-shadow: 0 14px 36px rgba(32, 29, 25, 0.07);
}

.answer-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(183, 138, 85, 0.42);
  border-radius: 50%;
  color: var(--coral);
  font-weight: 850;
}

.answer-card h3 {
  margin: 28px 0 12px;
  color: var(--green);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.2;
}

.answer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  align-items: stretch;
}

.contact-copy {
  align-self: center;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--coral);
  background: var(--mist);
}

.contact-note strong {
  color: var(--green);
}

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

.fit-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.55;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(183, 138, 85, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 42%, var(--coral) 43% 58%, transparent 59%),
    linear-gradient(45deg, transparent 46%, var(--coral) 47% 58%, transparent 59%);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.95);
  box-shadow: var(--shadow);
}

.hidden-field {
  display: none;
}

.form-header {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.form-header strong {
  color: var(--green);
  font-size: 1.18rem;
}

.form-header span,
.privacy-note {
  color: var(--muted);
  line-height: 1.45;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 760;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd7cf;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fbfcfa;
  color: var(--ink);
  font: inherit;
}

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

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(31, 104, 86, 0.18);
  border-color: var(--green-2);
}

.form-button {
  width: 100%;
  border: 0;
  font-size: 1rem;
}

.privacy-note {
  display: block;
  margin-top: -4px;
  font-size: 0.88rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-2);
  line-height: 1.4;
}

.founder-section {
  width: min(1240px, calc(100% - 36px));
  padding-top: clamp(28px, 5vw, 72px);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(183, 138, 85, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(235, 227, 215, 0.78)),
    var(--white);
  box-shadow: 0 28px 80px rgba(32, 29, 25, 0.14);
}

.founder-portrait-wrap {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 252, 246, 0.98), rgba(235, 227, 215, 0.78) 62%),
    var(--mist);
}

.founder-portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 252, 246, 0.72);
  pointer-events: none;
}

.founder-portrait {
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(216, 194, 160, 0.62);
  border-radius: var(--radius);
  box-shadow: 0 26px 58px rgba(32, 29, 25, 0.16);
  filter: saturate(0.96) contrast(1.04);
}

.founder-copy {
  align-self: center;
  padding: clamp(10px, 3vw, 34px) 0;
}

.founder-copy h2 {
  margin-bottom: 22px;
}

.founder-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.founder-lede {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.credential-grid div {
  min-height: 138px;
  padding: 22px;
  background: rgba(255, 252, 246, 0.76);
}

.credential-grid strong,
.credential-grid span {
  display: block;
}

.credential-grid strong {
  color: var(--green);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1;
}

.credential-grid span {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.founder-accordion {
  margin-top: 20px;
}

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

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--champagne);
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 16%, rgba(183, 138, 85, 0.18), transparent 28%),
    linear-gradient(135deg, #15130f, #282119 48%, #f6f1e8 48.2%);
}

.thank-you-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thank-you-card {
  width: min(720px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(216, 194, 160, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 252, 246, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

.thank-you-brand {
  color: var(--green);
  text-shadow: none;
  margin-bottom: 42px;
}

.thank-you-brand .brand-text small {
  color: var(--green-2);
}

.thank-you-card h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
}

.thank-you-card p:not(.section-kicker) {
  max-width: 570px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 116px;
  }

  .hero-scrim {
    background: linear-gradient(90deg, rgba(10, 9, 8, 0.92), rgba(10, 9, 8, 0.5));
  }

  .proof-strip,
  .intro-grid,
  .section-heading,
  .contact-section,
  .founder-card,
  .message-explorer {
    grid-template-columns: 1fr;
  }

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

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

  .founder-portrait-wrap {
    min-height: 440px;
  }

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

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

  .message-tab {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 80px;
    padding: 10px 8px;
    text-align: center;
  }

  .message-tab:hover,
  .message-tab:focus-visible,
  .message-tab.is-active {
    transform: translateY(-2px);
  }

  .message-tab small {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span:last-child {
    max-width: 148px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 5px;
  }

  .brand-mark svg {
    width: 36px;
    height: 36px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text small {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
  }

  .nav-cta {
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 82px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.7rem);
  }

  .button {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .accordion-panel summary {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .accordion-panel summary strong {
    grid-column: 1;
  }

  .accordion-panel summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .method-summary {
    grid-template-columns: 1fr;
  }

  .founder-portrait-wrap {
    min-height: 380px;
  }

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