:root {
  --navy: #002654;
  --navy-soft: #143f78;
  --ink: #002654;
  --muted: #52627a;
  --cream: #ffffff;
  --paper: #ffffff;
  --gold: #ed2939;
  --gold-soft: #ffffff;
  --teal: #ed2939;
  --line: rgba(0, 38, 84, 0.14);
  --shadow: 0 24px 70px rgba(0, 38, 84, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
  line-height: 1.35;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: #ffffff !important;
  background: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
}

.section-pad {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 84px);
  min-height: calc(100vh - 79px);
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 9% -12% auto auto;
  width: 44vw;
  height: 44vw;
  content: "";
  background: radial-gradient(circle, rgba(237, 41, 57, 0.2), transparent 62%);
  pointer-events: none;
}

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

.hero-lead {
  max-width: 760px;
  color: var(--navy-soft);
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(7, 23, 39, 0.24);
  background: rgba(255, 255, 255, 0.45);
}

.button.light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.portrait-placeholder {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background: var(--navy);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.portrait-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-caption {
  display: grid;
  gap: 2px;
  padding: 0 8px;
  color: var(--navy);
}

.portrait-caption span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  letter-spacing: -0.05em;
}

.portrait-caption small {
  color: var(--gold);
  font-weight: 700;
}

.quote-card {
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-left: 0;
  max-width: 330px;
  padding: 24px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid rgba(237, 41, 57, 0.3);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.quote-card p {
  margin-bottom: 0;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

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

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

.proof-strip strong {
  display: block;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.rich-text {
  color: var(--navy-soft);
  font-size: 1.05rem;
}

.credential-grid,
.service-grid,
.audience-grid {
  display: grid;
  gap: 18px;
}

.credential-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
}

.credential-grid article,
.two-cards article,
.audience-grid div {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 14px 50px rgba(7, 23, 39, 0.05);
}

.credential-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credential-grid p,
.service-card p,
.service-card li,
.two-cards p,
.section-heading p,
.method-steps p,
.book p {
  color: var(--muted);
}

.dark-section {
  color: #ffffff;
  background: var(--navy);
}

.section-heading {
  display: flex;
  max-width: 1120px;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

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

.section-heading.narrow {
  display: block;
  max-width: 860px;
}

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

.service-card {
  min-height: 430px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
}

.service-card h3,
.service-card p,
.service-card li {
  color: #ffffff;
}

.service-card.featured {
  background: linear-gradient(145deg, rgba(237, 41, 57, 0.34), rgba(255, 255, 255, 0.06));
}

.card-number {
  color: #ffb6bd !important;
  font-weight: 800;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
}

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

.two-cards article {
  min-height: 280px;
}

.two-cards a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.method {
  background: var(--cream);
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--line);
}

.method-steps div {
  padding: 30px;
  background: var(--paper);
}

.method-steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.book {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.book-cover {
  overflow: hidden;
  min-height: 470px;
  background: linear-gradient(135deg, #002654, #ffffff 48%, #ed2939);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.book-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.book-button {
  margin-top: 12px;
  color: var(--navy);
  background: #ffffff;
}

.case-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.case-list span {
  padding: 9px 13px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
}

.audience-grid div {
  color: var(--navy-soft);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 10%, rgba(237, 41, 57, 0.34), transparent 30%),
    linear-gradient(135deg, #002654, #143f78);
}

.contact-panel {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  padding: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
}

.contact-panel p {
  color: rgba(255, 251, 244, 0.78);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-bottom: 6px;
}

.contact-list a {
  color: #ffffff;
  font-weight: 800;
}

.contact .button.primary {
  color: var(--navy);
  background: #ffffff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #002654;
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .service-grid,
  .method-steps,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .nav {
    display: none;
  }

  .hero,
  .split,
  .book,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait-placeholder {
    min-height: 390px;
  }

  .quote-card {
    margin: -48px 18px 0;
  }

  .proof-strip,
  .credential-grid,
  .two-cards {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }

  .site-footer {
    display: block;
  }
}

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

  .section-pad {
    padding: 62px 18px;
  }

  .service-grid,
  .method-steps,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .book-cover {
    min-height: 360px;
  }
}
