:root {
  --ink: #18211d;
  --ink-soft: #4e5b55;
  --paper: #f7f4ee;
  --white: #fffdf8;
  --sage: #dfe9dc;
  --teal: #1c6b68;
  --teal-dark: #114542;
  --clay: #b85f41;
  --line: rgba(24, 33, 29, 0.14);
  --shadow: 0 22px 60px rgba(24, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(15, 24, 21, 0.66), rgba(15, 24, 21, 0));
}

.site-header.page-header {
  position: sticky;
  color: var(--white);
  background: linear-gradient(135deg, #12201c 0%, #1b302b 100%);
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.14);
}

.page-header .brand-mark {
  border-color: rgba(255, 253, 248, 0.38);
  background: rgba(255, 253, 248, 0.12);
}

.nav-links {
  gap: clamp(10px, 3vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a[aria-current="page"] {
  color: #f2c2aa;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.14);
}

.page-header .nav-cta {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.32);
  background: var(--clay);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #12201c;
}

.hero-image,
.hero-overlay {
  position: absolute;
}

.hero-image {
  right: clamp(18px, 6vw, 86px);
  top: clamp(170px, 20vh, 230px);
  width: min(30vw, 380px);
  min-width: 280px;
  height: min(66vh, 620px);
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.hero-overlay {
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(17, 28, 24, 0.18) 0%, rgba(17, 28, 24, 0.08) 58%, rgba(247, 244, 238, 0.18) 100%);
}

.hero-content {
  position: relative;
  width: min(640px, 52vw);
  padding: 150px clamp(18px, 5vw, 64px) 72px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f2c2aa;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.45);
  background: rgba(255, 253, 248, 0.13);
}

.band {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  max-width: none;
  margin: 0;
  padding-top: clamp(72px, 9vw, 124px);
  background: #12201c;
}

.page-hero > * {
  max-width: 620px;
}

.page-hero h1 {
  max-width: 820px;
  color: var(--white);
}

.page-hero p:last-child {
  margin-bottom: 10px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  color: #f2c2aa;
}

.muted {
  background:
    linear-gradient(180deg, rgba(18, 32, 28, 0.05), rgba(18, 32, 28, 0)),
    var(--sage);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy p {
  font-size: 1.14rem;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 800;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.steps,
.service-list,
.faq-list {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.step,
.service-card,
.testimonial,
.booking-form,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(18, 32, 28, 0.12);
}

.step {
  padding: 30px;
}

.step-number,
.service-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.service-list.expanded .service-card {
  min-height: 420px;
}

.service-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.service-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(184, 95, 65, 0.28), transparent 28%),
    linear-gradient(135deg, #12201c, var(--teal-dark));
}

.service-card.featured p,
.service-card.featured .service-kicker {
  color: rgba(255, 253, 248, 0.78);
}

.text-link {
  width: fit-content;
  color: var(--teal);
  font-weight: 800;
}

.featured .text-link {
  color: #f2c2aa;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "+";
  color: var(--clay);
  font-weight: 900;
}

.featured .check-list li {
  color: rgba(255, 253, 248, 0.82);
}

.proof {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  max-width: 1308px;
  margin: 0 auto;
}

.proof-stats {
  display: grid;
  gap: 12px;
}

.proof-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.proof-stats strong {
  color: var(--teal-dark);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.proof-stats span {
  color: var(--ink-soft);
  font-weight: 800;
  text-align: right;
}

.testimonial {
  padding: clamp(32px, 6vw, 64px);
}

.testimonial p {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.testimonial span {
  color: var(--clay);
  font-weight: 800;
}

.faq-list {
  gap: 12px;
}

details {
  padding: 20px 24px;
}

summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 14px 0 0;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  max-width: 1308px;
  margin: 0 auto;
}

.consultation-copy {
  position: sticky;
  top: 120px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.portrait-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.portrait-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 18%;
  box-shadow: 0 28px 70px rgba(18, 32, 28, 0.18);
}

.portrait-copy {
  max-width: 620px;
}

.feature-panel {
  max-width: 620px;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.value-list article.value-emphasis {
  border-color: rgba(184, 95, 65, 0.42);
  background:
    radial-gradient(circle at 92% 16%, rgba(184, 95, 65, 0.2), transparent 30%),
    linear-gradient(135deg, #12201c, var(--teal-dark));
  box-shadow: 0 28px 70px rgba(18, 32, 28, 0.18);
}

.value-list article.value-emphasis h3 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.value-list article.value-emphasis p {
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.12rem;
}

.value-list p {
  margin-bottom: 0;
}

.speaking-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.speaking-photo {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.speaking-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: 52% 40%;
  box-shadow: 0 28px 70px rgba(18, 32, 28, 0.18);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.topic-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(18, 32, 28, 0.12);
}

.topic-grid p {
  margin-bottom: 0;
}

.pill-grid,
.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid {
  justify-content: center;
  max-width: 920px;
  margin: 0 auto;
}

.pill-grid span,
.mini-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--teal-dark);
  background: var(--white);
  font-weight: 800;
}

.mini-list {
  margin-top: 26px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background: var(--teal-dark);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(28, 107, 104, 0.18);
  border-color: var(--teal);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 5vw, 64px);
  color: rgba(255, 253, 248, 0.76);
  background: var(--ink);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .hero {
    min-height: 900px;
    align-items: start;
  }

  .hero-content {
    width: min(720px, 100%);
    padding-bottom: 24px;
  }

  .hero-image {
    right: clamp(18px, 7vw, 72px);
    top: 380px;
    width: min(42vw, 380px);
    height: 430px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header.page-header {
    position: sticky;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 900px;
    align-items: start;
    background: linear-gradient(180deg, #12201c 0%, #1b302b 54%, #f7f4ee 54%, #f7f4ee 100%);
  }

  .page-hero {
    background:
      radial-gradient(circle at 88% 8%, rgba(184, 95, 65, 0.18), transparent 28%),
      linear-gradient(180deg, #12201c 0%, #1b302b 100%);
  }

  .hero-image {
    right: 50%;
    top: auto;
    bottom: 44px;
    width: min(76vw, 420px);
    min-width: 0;
    height: 430px;
    transform: translateX(50%);
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(17, 28, 24, 0.06), rgba(17, 28, 24, 0.18));
  }

  .section-grid,
  .page-hero,
  .steps,
  .steps.page-links,
  .service-list,
  .proof,
  .consultation,
  .split-feature,
  .portrait-feature,
  .speaking-photo,
  .speaking-spotlight,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    position: static;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
    padding-top: 16px;
  }

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

  .hero {
    min-height: 840px;
  }

  .hero-content {
    padding-top: 190px;
    padding-bottom: 36px;
  }

  .hero-image {
    width: calc(100vw - 36px);
    height: 360px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  h2 {
    font-size: 2.05rem;
  }

  .button {
    width: 100%;
  }

  .proof-stats div {
    display: block;
  }

  .proof-stats span {
    display: block;
    text-align: left;
  }
}
