:root {
  --bg: #f3efe7;
  --bg-soft: #ece6dc;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --panel: #faf7f1;
  --text: #17181d;
  --text-soft: #5f5a55;
  --text-inverse: #f5f0e7;
  --line: rgba(23, 24, 29, 0.1);
  --line-soft: rgba(255, 255, 255, 0.12);
  --brand: #a4a11d;
  --brand-strong: #87830f;
  --charcoal: #13151b;
  --charcoal-soft: #1d2028;
  --wine: #46322f;
  --danger: #9a3f38;
  --shadow-soft: 0 18px 60px rgba(18, 20, 27, 0.08);
  --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.26);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(164, 161, 29, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f4ee 0%, var(--bg) 48%, #efe7db 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(23, 24, 29, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 29, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
}

.page-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.4;
  pointer-events: none;
}

.page-orb-left {
  top: 140px;
  left: -180px;
  background: rgba(164, 161, 29, 0.14);
}

.page-orb-right {
  top: 520px;
  right: -180px;
  background: rgba(70, 50, 47, 0.12);
}

.shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(243, 239, 231, 0.72);
  border-bottom: 1px solid rgba(23, 24, 29, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 220px;
  height: auto;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-small {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.button-primary {
  background: linear-gradient(135deg, #b2ae23 0%, #8a8616 100%);
  color: #fff;
  box-shadow: 0 14px 32px rgba(135, 131, 15, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #9c9820 0%, #787412 100%);
}

.button-secondary,
.button-outline {
  border-color: rgba(23, 24, 29, 0.16);
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.84);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.button-ghost {
  border-color: rgba(23, 24, 29, 0.08);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 54px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at 20% 16%, rgba(164, 161, 29, 0.18), transparent 28%),
    radial-gradient(circle at 86% 30%, rgba(70, 50, 47, 0.1), transparent 20%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--brand-strong);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.64);
}

.hero h1,
.section-heading h2,
.fit-heading h2,
.authority-copy h2,
.video-panel h2,
.faq-panel h2,
.closing-panel h2,
.form-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4.3rem, 9vw, 7.8rem);
  line-height: 0.9;
}

.hero-lead {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

.hero-support,
.form-intro,
.form-caption,
.privacy-note,
.authority-copy p,
.section-heading p,
.fit-heading p,
.video-panel p,
.faq-item p,
.deliverables-grid p,
.testimonial-card .quote,
.assurance-shell p {
  color: var(--text-soft);
  line-height: 1.78;
}

.hero-support {
  max-width: 58ch;
  margin: 18px 0 0;
}

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

.hero-guidance {
  display: flex;
  justify-content: flex-end;
  margin: 24px 0 0;
  color: rgba(135, 131, 15, 0.98);
}

.hero-arrow {
  width: min(500px, 100%);
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(135, 131, 15, 0.24));
}

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

.hero-microproof li,
.pill,
.assurance-shell span,
.fit-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 24, 29, 0.08);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.form-panel {
  position: sticky;
  top: 112px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 243, 235, 0.9)),
    var(--surface-strong);
  border: 1px solid rgba(23, 24, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.form-topline {
  margin-bottom: 10px;
}

.form-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.94;
}

.form-intro {
  margin: 10px 0 0;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 26px;
}

.process-strip div {
  display: grid;
  gap: 10px;
  min-height: 122px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(244, 238, 229, 0.72);
  border: 1px solid rgba(23, 24, 29, 0.06);
}

.process-strip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.92rem;
}

.process-strip span {
  max-width: 14ch;
  line-height: 1.45;
  font-weight: 700;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.field,
.fieldset-field {
  display: grid;
  gap: 8px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field label,
.fieldset-field legend {
  font-size: 0.92rem;
  font-weight: 700;
}

.fieldset-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(23, 24, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input::placeholder {
  color: rgba(95, 90, 85, 0.64);
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(23, 24, 29, 0.56) 50%),
    linear-gradient(135deg, rgba(23, 24, 29, 0.56) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 14px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: rgba(164, 161, 29, 0.94);
  box-shadow: 0 0 0 4px rgba(164, 161, 29, 0.12);
  background: #fff;
}

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

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

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid label {
  min-height: 52px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(23, 24, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.choice-grid input:checked + label {
  border-color: rgba(164, 161, 29, 0.94);
  background: rgba(164, 161, 29, 0.16);
}

.field-error {
  min-height: 18px;
  margin: 0;
  font-size: 0.86rem;
  color: var(--danger);
}

.button-submit {
  width: 100%;
  margin-top: 2px;
}

.form-caption,
.privacy-note,
.form-status {
  margin: 0;
  font-size: 0.92rem;
}

.privacy-note {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(23, 24, 29, 0.08);
}

.privacy-note a,
.site-footer a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.form-status {
  min-height: 8px;
  font-weight: 600;
  color: var(--text);
}

.embed-placeholder {
  padding: 24px;
  border-radius: 18px;
  border: 1px dashed rgba(23, 24, 29, 0.24);
  background: rgba(255, 255, 255, 0.5);
}

.embed-placeholder h3 {
  margin: 0 0 10px;
}

.embed-placeholder p {
  margin: 0;
  line-height: 1.7;
}

.assurance-band {
  padding: 14px 0 0;
}

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

.assurance-shell article {
  min-height: 198px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 24, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.assurance-figure {
  width: 100%;
  max-width: 132px;
  height: auto;
  margin-bottom: 14px;
}

.assurance-shell p {
  margin: 14px 0 0;
}

.phone-stack {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px;
}

.phone-country-other {
  margin-top: 8px;
}

.fit-section {
  position: relative;
  overflow: hidden;
  margin-top: 108px;
  padding: 110px 0;
  background:
    linear-gradient(180deg, rgba(14, 16, 22, 0.68), rgba(10, 12, 16, 0.78)),
    radial-gradient(circle at 14% 18%, rgba(164, 161, 29, 0.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(113, 38, 46, 0.12), transparent 20%),
    url("./assets/unsplash-fit-background.jpg") center/cover no-repeat,
    linear-gradient(180deg, #171a21 0%, #111318 100%);
  background-attachment: scroll, scroll, scroll, fixed, scroll;
}

.fit-shell {
  position: relative;
}

.fit-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.fit-heading h2,
.fit-heading p {
  color: var(--text-inverse);
}

.fit-heading p {
  max-width: 56ch;
  margin-top: 14px;
  color: rgba(245, 240, 231, 0.86);
}

.fit-heading h2,
.section-heading h2,
.authority-copy h2,
.video-panel h2,
.faq-panel h2,
.closing-panel h2 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.94;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fit-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.fit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 60%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 50%);
  pointer-events: none;
}

.fit-card-positive {
  background:
    linear-gradient(180deg, rgba(86, 109, 78, 0.32), rgba(34, 44, 39, 0.46)),
    rgba(255, 255, 255, 0.04);
}

.fit-card-negative {
  background:
    linear-gradient(180deg, rgba(102, 59, 59, 0.34), rgba(52, 35, 39, 0.44)),
    rgba(255, 255, 255, 0.03);
}

.fit-card ul,
.deliverables-grid article p,
.testimonial-card p,
.authority-copy p,
.faq-panel p,
.video-panel p {
  margin: 0;
}

.fit-card ul {
  display: grid;
  gap: 14px;
  padding-left: 18px;
  margin-top: 18px;
  color: rgba(245, 240, 231, 0.86);
  line-height: 1.72;
}

.authority-section {
  padding: 64px 0 0;
}

.testimonials-section,
.video-faq-section {
  padding: 110px 0 0;
}

.authority-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 28%, rgba(205, 210, 88, 0.24), transparent 24%),
    linear-gradient(180deg, #f4f1df 0%, #efe9d3 100%);
  border: 1px solid rgba(182, 178, 124, 0.32);
  box-shadow: 0 24px 64px rgba(31, 35, 41, 0.08);
}

.authority-copy {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(205, 210, 88, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(247, 243, 231, 0.92));
  border: 1px solid rgba(129, 126, 78, 0.16);
  box-shadow: var(--shadow-soft);
}

.authority-visual {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.authority-frame {
  position: relative;
  width: 100%;
  min-height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 48% 42%, rgba(205, 210, 88, 0.4), rgba(205, 210, 88, 0) 44%),
    linear-gradient(180deg, #f4f1df 0%, #eee8d1 100%);
  border: 1px solid rgba(129, 126, 78, 0.16);
  box-shadow: 0 18px 40px rgba(31, 35, 41, 0.08);
  overflow: hidden;
}

.authority-frame::before {
  content: "";
  position: absolute;
  inset: 28px auto auto 30px;
  width: 132px;
  height: 1px;
  background: rgba(129, 126, 78, 0.34);
}

.authority-frame::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 150px;
  height: 1px;
  background: rgba(129, 126, 78, 0.34);
}

.authority-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.authority-copy h2 {
  max-width: none;
}

.authority-lead {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.08rem;
}

.authority-copy p + p {
  margin-top: 14px;
}

.authority-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 28px;
}

.authority-metrics article {
  min-height: 132px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 24, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.authority-icon {
  display: block;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
}

.authority-metrics strong,
.deliverables-grid h3,
.faq-item summary,
.testimonial-meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.authority-metrics span,
.testimonial-meta span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.62;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 244, 236, 0.84)),
    var(--surface-strong);
  border: 1px solid rgba(23, 24, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.testimonial-card-featured {
  background:
    radial-gradient(circle at top right, rgba(164, 161, 29, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.92));
}

.quote {
  font-size: 1.02rem;
}

.testimonial-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 24, 29, 0.08);
}

.video-faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.video-panel,
.faq-panel {
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(23, 24, 29, 0.08);
  box-shadow: var(--shadow-soft);
}

.video-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 229, 0.86)),
    var(--surface-strong);
}

.faq-panel {
  background: rgba(255, 255, 255, 0.66);
}

.video-frame {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: #0d1016;
  box-shadow: 0 26px 70px rgba(13, 16, 22, 0.2);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(23, 24, 29, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 22px 56px 22px 22px;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-strong);
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 22px 22px;
}

.deliverables-section {
  position: relative;
  overflow: hidden;
  margin-top: 110px;
  padding: 110px 0 70px;
  background:
    linear-gradient(180deg, rgba(14, 16, 22, 0.68), rgba(10, 12, 16, 0.78)),
    radial-gradient(circle at 14% 18%, rgba(164, 161, 29, 0.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(113, 38, 46, 0.12), transparent 20%),
    url("./assets/unsplash-fit-background.jpg") center/cover no-repeat,
    linear-gradient(180deg, #171a21 0%, #111318 100%);
  background-attachment: scroll, scroll, scroll, fixed, scroll;
}

.section-heading-light h2,
.section-heading-light p {
  color: var(--text-inverse);
}

.deliverables-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-top: 34px;
}

.deliverable-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-deep);
}

.deliverable-figure {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 18px;
}

.deliverable-card-pdf {
  transform: translateY(42px) rotate(-4deg);
}

.deliverable-card-call {
  min-height: 320px;
  transform: translateY(0) scale(1.02);
  background:
    radial-gradient(circle at top right, rgba(164, 161, 29, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
}

.deliverable-card-plan {
  transform: translateY(48px) rotate(4deg);
}

.deliverable-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 231, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deliverable-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text-inverse);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.deliverables-grid article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.deliverables-grid h3 {
  color: var(--text-inverse);
}

.deliverables-grid p {
  margin-top: 10px;
  color: rgba(245, 240, 231, 0.78);
}

.closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(164, 161, 29, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.closing-panel h2 {
  color: var(--text-inverse);
}

.closing-actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  padding: 26px 0 42px;
  background: #0f1116;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-shell p,
.footer-shell a {
  color: rgba(245, 240, 231, 0.72);
}

.footer-shell nav {
  display: inline-flex;
  gap: 16px;
  font-weight: 600;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.8;
}

@media (max-width: 1120px) {
  .header-shell,
  .hero-shell,
  .authority-shell,
  .video-faq-shell,
  .closing-panel {
    grid-template-columns: 1fr;
  }

  .header-shell {
    display: grid;
    justify-items: start;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .form-panel {
    position: static;
  }

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

  .deliverables-stage {
    grid-template-columns: 1fr;
  }

  .deliverable-card,
  .deliverable-card-pdf,
  .deliverable-card-call,
  .deliverable-card-plan {
    transform: none;
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .site-header {
    position: static;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-guidance {
    justify-content: center;
    margin-top: 16px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 16vw, 5.8rem);
  }

  .field-row,
  .process-strip,
  .assurance-shell,
  .fit-grid,
  .authority-metrics,
  .testimonials-grid,
  .deliverables-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .process-strip div,
  .authority-metrics article,
  .testimonial-card {
    min-height: 0;
  }

  .authority-frame {
    min-height: 0;
  }

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

  .footer-shell {
    display: grid;
  }

  .fit-section {
    background-attachment: scroll;
  }

  .deliverables-section {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .button,
  .button-small {
    width: 100%;
  }

  .hero-actions,
  .header-actions {
    display: grid;
    width: 100%;
  }

  .hero-guidance {
    display: none;
  }

  .brand img {
    width: 180px;
  }

  .form-panel,
  .video-panel,
  .faq-panel,
  .fit-card,
  .testimonial-card,
  .deliverables-grid article,
  .closing-panel,
  .assurance-shell article {
    padding: 22px;
  }

  .authority-frame {
    min-height: 0;
  }

  .fit-section,
  .authority-section {
    padding-top: 56px;
  }

  .testimonials-section,
  .video-faq-section,
  .deliverables-section {
    padding-top: 86px;
  }
}
