:root {
  --ink: #20152e;
  --muted: #665d72;
  --paper: #faf7fb;
  --surface: #ffffff;
  --line: #e2d8e9;
  --purple: #4b256f;
  --purple-dark: #261238;
  --teal: #0f7f83;
  --teal-soft: #e3f3f2;
  --gold: #d6a441;
  --gold-light: #edc66d;
  --shadow: 0 24px 70px rgba(38, 18, 56, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
}

.site-header::before {
  position: absolute;
  inset: 10px clamp(10px, 2vw, 28px);
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(38, 18, 56, 0.5);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

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

.brand-logo {
  width: 52px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
  padding: 3px;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-cta {
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) clamp(58px, 8vw, 98px);
  color: #fff;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(38, 18, 56, 0.88) 0%, rgba(38, 18, 56, 0.64) 42%, rgba(15, 127, 131, 0.18) 100%),
    linear-gradient(0deg, rgba(38, 18, 56, 0.7), rgba(38, 18, 56, 0.08) 48%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.hero-logo {
  display: block;
  width: min(160px, 58vw);
  margin-bottom: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

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

.hero .eyebrow {
  color: var(--gold-light);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 730px;
  font-size: clamp(2.45rem, 5.6vw, 4.55rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

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

.button {
  width: fit-content;
  min-width: 166px;
  padding: 0 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  background: var(--gold);
  color: #241528;
}

.button.primary:hover {
  background: var(--gold-light);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 118px;
  padding: 26px;
  background: var(--surface);
}

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

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.trust-strip span,
.service-card p,
.service-card li,
.band-copy p,
.metric span,
.contact-section p,
.form-note {
  color: var(--muted);
}

.section,
.quote-band,
.contact-section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(82px, 10vw, 136px) 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

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

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

.service-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "•";
  font-weight: 800;
}

.challenge-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px);
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
}

.band-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.challenge-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.challenge-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
  font-weight: 800;
}

.challenge-list p {
  align-self: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
}

.portrait-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--purple-dark);
  box-shadow: var(--shadow);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 30%;
}

.portrait-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 8px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(38, 18, 56, 0), rgba(38, 18, 56, 0.9));
  color: #fff;
}

.portrait-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-card strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.06;
}

.portrait-placeholder {
  display: none;
  min-height: 420px;
  align-content: end;
  gap: 8px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(75, 37, 111, 0.08), rgba(75, 37, 111, 0.84)),
    radial-gradient(circle at 50% 32%, rgba(214, 164, 65, 0.38) 0 18%, transparent 19%),
    linear-gradient(135deg, #f0e7f4, #cfe9e8);
  color: #fff;
}

.portrait-placeholder span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-placeholder strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.06;
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.proof-section {
  padding-bottom: clamp(54px, 8vw, 92px);
}

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

.metric {
  padding: 22px;
  border-top: 1px solid var(--line);
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--purple-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.quote-band {
  display: grid;
  gap: 18px;
  padding: clamp(40px, 7vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topics-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 120px) 0 0;
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.topic-list span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--purple-dark);
  font-weight: 800;
}

blockquote {
  max-width: 920px;
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 78px);
  padding: clamp(82px, 10vw, 132px) 0;
}

.contact-section p {
  max-width: 520px;
  margin: 22px 0 0;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--muted);
}

.contact-details strong {
  color: var(--purple-dark);
  font-size: 1.08rem;
}

.contact-details a {
  color: var(--teal);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.inquiry-panel {
  align-content: center;
  min-height: 360px;
}

.inquiry-panel .eyebrow {
  margin-bottom: 0;
}

.inquiry-panel h3 {
  max-width: 440px;
  color: var(--purple-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.inquiry-panel p {
  margin: 0;
}

.inquiry-panel .button {
  width: 100%;
  margin-top: 8px;
}

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

input,
textarea {
  width: 100%;
  border: 1px solid #d8cde1;
  border-radius: 8px;
  background: #fdfbff;
  color: var(--ink);
  font: inherit;
}

input {
  height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 136px;
  padding: 13px 14px;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 127, 131, 0.16);
}

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

.form-note {
  min-height: 22px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

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

  .site-header::before {
    inset: 8px;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 116px;
  }

  .hero-logo {
    width: min(158px, 54vw);
    margin-bottom: 14px;
  }

  .trust-strip,
  .service-grid,
  .proof-grid,
  .challenge-band,
  .about-grid,
  .topics-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 20px;
  }

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

  .service-icon {
    margin-bottom: 28px;
  }

  .challenge-band {
    padding: 28px;
  }

  .portrait-card,
  .portrait-card img,
  .portrait-placeholder {
    min-height: 340px;
  }
}

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

  .brand span:last-child {
    max-width: 112px;
  }

  .brand-logo {
    width: 44px;
    height: 34px;
  }

  .header-cta {
    min-width: 58px;
    width: 58px;
    padding: 0;
    font-size: 0;
  }

  .header-cta::after {
    content: "Book";
    font-size: 0.86rem;
  }

  .hero {
    min-height: 84vh;
    padding-inline: 18px;
  }

  .hero-logo {
    width: min(120px, 48vw);
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .section,
  .challenge-band,
  .quote-band,
  .topics-section,
  .contact-section {
    width: min(100% - 24px, 1160px);
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
