:root {
  --ink: #15120d;
  --ink-soft: #4f493f;
  --paper: #fffdf8;
  --stone: #f3eee5;
  --line: #ded3c1;
  --gold: #b8892e;
  --gold-dark: #765510;
  --olive: #53614c;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(34, 27, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 10, 8, 0.82), rgba(11, 10, 8, 0.18));
}

.solid-header {
  background: rgba(23, 19, 13, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand,
.nav-links,
.hero-actions,
.hero-proof,
.contact-lines {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #1d160b;
  background: var(--gold);
  border-radius: 7px;
  font-weight: 800;
}

.nav-links {
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

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

.header-cta {
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.88) 0%, rgba(20, 16, 10, 0.74) 43%, rgba(20, 16, 10, 0.22) 100%),
    linear-gradient(0deg, rgba(11, 10, 8, 0.42), rgba(11, 10, 8, 0.06) 58%);
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-main {
  padding-top: 72px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button-primary {
  color: #1a1408;
  background: var(--gold);
  border-color: var(--gold);
}

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

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

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

.hero-proof {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 54px;
}

.hero-proof div {
  width: min(220px, 100%);
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-proof dt {
  font-weight: 900;
  color: var(--white);
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.band {
  background: var(--stone);
}

.section,
.band {
  padding: clamp(64px, 9vw, 116px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding-top: clamp(34px, 5vw, 56px);
}

.intro-grid,
.pilot-grid,
.about-grid,
.booking-grid,
.fit-grid {
  display: grid;
  gap: clamp(26px, 5vw, 64px);
}

.intro-grid {
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  align-items: start;
}

.intro-grid p:not(.eyebrow),
.section-heading p,
.pilot-copy p,
.about-copy p,
.booking-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 680px;
  margin-top: 16px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

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

.platform-strip {
  display: grid;
  gap: 14px;
  margin: -8px 0 28px;
  padding: 20px;
  color: var(--ink-soft);
  background: #fbf8f1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.platform-strip p {
  max-width: 940px;
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-list span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card,
.fit-block,
.timeline-card,
.check-panel,
.booking-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 27, 16, 0.08);
}

.service-card {
  min-height: 250px;
  padding: 28px;
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-weight: 900;
}

.service-card p,
.fit-block p,
.fit-block li,
.check-panel li,
.form-note {
  color: var(--ink-soft);
}

.service-card p,
.fit-block p {
  margin: 0;
}

.pilot-grid {
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.pilot-copy p {
  margin: 18px 0 28px;
}

.check-panel,
.fit-block,
.booking-form {
  padding: clamp(24px, 4vw, 34px);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-panel li,
.fit-block li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--line);
}

.check-panel li:last-child,
.fit-block li:last-child {
  border-bottom: 0;
}

.check-panel li::before,
.fit-block li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--olive);
}

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

.fit-block.muted {
  background: #fbf8f1;
}

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

.timeline-card {
  padding: 26px;
}

.timeline-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-card p {
  margin: 0;
  color: var(--ink-soft);
}

.value-callout {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background: #17130d;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.value-callout h3 {
  color: var(--white);
}

.value-callout p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  align-items: start;
}

.about-profile {
  display: grid;
  gap: 18px;
}

.profile-photo {
  width: min(320px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.trust-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid rgba(184, 137, 46, 0.42);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.trust-note h3 {
  margin-bottom: 8px;
}

.trust-note p {
  margin: 0;
}

.booking-grid {
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  align-items: start;
}

.pricing-hero {
  background: var(--paper);
}

.pricing-hero-grid,
.scope-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.pricing-hero-copy {
  display: grid;
  gap: 24px;
}

.pricing-hero-copy p,
.pricing-cta p,
.price-card p,
.block-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.price-card,
.block-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 27, 16, 0.08);
  padding: clamp(24px, 3vw, 30px);
}

.price-card.featured {
  border-color: rgba(184, 137, 46, 0.72);
  box-shadow: var(--shadow);
}

.plan-kicker {
  color: var(--gold-dark) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.price,
.block-hours {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
  line-height: 1.05;
}

.block-price {
  color: var(--gold-dark) !important;
  font-weight: 900;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 6px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--olive);
}

.price-card .button {
  margin-top: auto;
}

.button-secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: #fbf8f1;
}

.button-secondary.light:hover {
  background: var(--stone);
}

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

.pricing-cta {
  text-align: center;
}

.pricing-cta-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 760px;
}

.contact-lines {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-lines a {
  color: var(--gold-dark);
}

.booking-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc2ad;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 137, 46, 0.28);
  border-color: var(--gold-dark);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.72);
  background: #17130d;
}

.footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.82rem;
  }

  .brand {
    white-space: normal;
    max-width: 220px;
  }

  .hero {
    min-height: 88vh;
    align-items: flex-end;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 10, 8, 0.1) 0%, rgba(11, 10, 8, 0.64) 42%, rgba(11, 10, 8, 0.94) 100%),
      linear-gradient(90deg, rgba(11, 10, 8, 0.54), rgba(11, 10, 8, 0.2));
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 118px 0 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .hero-proof div {
    width: 100%;
  }

  .intro-grid,
  .pilot-grid,
  .about-grid,
  .booking-grid,
  .pricing-hero-grid,
  .scope-grid,
  .fit-grid,
  .service-grid,
  .timeline-grid,
  .pricing-grid,
  .block-grid {
    grid-template-columns: 1fr;
  }

  .trust-note {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

}
