:root {
  --ink: #141716;
  --ink-2: #252928;
  --paper: #f4efe6;
  --paper-2: #fffaf1;
  --mist: #d9e4e4;
  --line: rgba(20, 23, 22, 0.14);
  --line-dark: rgba(255, 250, 241, 0.16);
  --forest: #264b43;
  --wine: #743746;
  --blue: #33566a;
  --brass: #b98744;
  --white: #ffffff;
  --shadow: 0 24px 54px rgba(20, 23, 22, 0.13);
  --radius: 8px;
  --max: 1160px;
  --gutter: clamp(18px, 4vw, 48px);
}

* {
  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.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button,
summary,
select,
label,
input,
textarea {
  cursor: pointer;
}

[id] {
  scroll-margin-top: 92px;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--gutter);
  color: var(--paper-2);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(244, 239, 230, 0.95);
  box-shadow: 0 12px 34px rgba(20, 23, 22, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 218px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  font-size: 0.72rem;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 26px);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid rgba(255, 250, 241, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(20, 23, 22, 0.2);
}

.main-nav .nav-cta::after {
  content: none;
}

.site-header.is-scrolled .main-nav .nav-cta,
.site-header.menu-active .main-nav .nav-cta {
  color: var(--paper-2);
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 12px 24px rgba(116, 55, 70, 0.24);
}

.main-nav .nav-cta:hover {
  color: var(--paper-2);
  background: var(--wine);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper-2);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 23, 22, 0.95) 0%, rgba(20, 23, 22, 0.82) 48%, rgba(20, 23, 22, 0.4) 100%),
    linear-gradient(135deg, rgba(38, 75, 67, 0.78), rgba(116, 55, 70, 0.55)),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(255, 250, 241, 0.07) 36px 37px);
}

.hero-media::before {
  content: none;
}

.hero-media::after {
  content: none;
}

.hero-content {
  position: relative;
  width: min(100%, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: end;
  padding: 106px var(--gutter) 42px;
}

.hero-main {
  min-width: 0;
  transform: translateY(-34px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.lead-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 250, 241, 0.8);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.hero-book-strip {
  display: grid;
  gap: 2px;
  width: min(100%, 540px);
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(255, 250, 241, 0.08);
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
}

.hero-book-strip span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.hero-book-strip small {
  color: rgba(255, 250, 241, 0.66);
}

.hero-covers {
  position: relative;
  min-height: 500px;
  perspective: 1200px;
}

.hero-book-card {
  position: absolute;
  right: 70px;
  bottom: -8px;
  z-index: 3;
  display: grid;
  gap: 0;
  width: min(78%, 310px);
  color: var(--paper-2);
  animation: bookFloat 6.4s ease-in-out infinite;
  transform-origin: 50% 70%;
  will-change: transform;
}

.hero-cover {
  display: block;
  width: 100%;
  aspect-ratio: 0.68;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: -26px 32px 76px rgba(0, 0, 0, 0.42);
}

.hero-cover-main {
  transition: transform 180ms ease;
}

.hero-book-card:hover .hero-cover-main {
  transform: translateY(-8px) rotate(-1deg) scale(1.015);
}

.hero-cover-secondary {
  position: absolute;
  width: min(54%, 225px);
  right: -8px;
  bottom: 76px;
  z-index: 1;
  opacity: 0.58;
  animation: bookFloatBack 7.8s ease-in-out infinite;
  transform-origin: bottom right;
  will-change: transform;
}

@keyframes bookFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(-5deg) rotateZ(-1.5deg);
  }

  50% {
    transform: translate3d(0, -18px, 0) rotateY(-1deg) rotateZ(1deg);
  }
}

@keyframes bookFloatBack {
  0%,
  100% {
    transform: translate3d(0, 0, -40px) rotateY(-15deg) rotateZ(5deg) scale(0.92);
  }

  50% {
    transform: translate3d(18px, 14px, -40px) rotateY(-8deg) rotateZ(2deg) scale(0.95);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-book-card,
  .hero-cover-secondary {
    animation: none;
  }
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button.primary:hover {
  background: #632d3a;
}

.button.ghost {
  color: var(--paper-2);
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(255, 250, 241, 0.35);
}

.button.ghost-dark {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.text {
  padding-inline: 0;
  color: inherit;
  background: transparent;
}

.metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 36px), var(--max));
  margin: -30px auto 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metrics article {
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(20, 23, 22, 0.66);
  font-size: 0.88rem;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(48px, 6.5vw, 84px) var(--gutter);
}

.section h2,
.lead-section h2 {
  font-size: clamp(1.9rem, 3.55vw, 3.25rem);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 30px;
}

.section-heading,
.section-heading.compact {
  margin-inline: auto;
}

.section-heading.compact {
  max-width: 650px;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(20, 23, 22, 0.68);
  font-size: 1.02rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.intro-section {
  width: min(100%, 1260px);
  padding-top: clamp(42px, 5.5vw, 68px);
}

.intro-section h2 {
  max-width: 720px;
  font-size: clamp(2.05rem, 3.25vw, 3.45rem);
  line-height: 1.03;
}

.rich-text > p,
.about-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(20, 23, 22, 0.72);
  font-size: 1.03rem;
}

.rich-text > p {
  max-width: 720px;
  font-size: clamp(1.04rem, 1.24vw, 1.22rem);
}

.about-copy p + p {
  margin-top: 16px;
}

.principles {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 5px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principles article > span {
  grid-row: 1 / span 2;
}

.principles article > h3,
.principles article > p {
  grid-column: 2;
}

.principles span,
.timeline > li > span {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.principles h3,
.principles p,
.service-card h3,
.service-card p,
.timeline h3,
.timeline p,
.military-grid h3,
.military-grid p,
.book-copy h3,
.book-copy p,
.book-secondary h3,
.book-secondary p,
.speaking-card h3,
.speaking-card p {
  margin: 0;
}

.principles h3,
.service-card h3,
.timeline h3,
.military-grid h3 {
  font-size: 1.05rem;
}

.principles p,
.service-card p,
.timeline p,
.military-grid p,
.book-copy p,
.book-secondary p,
.speaking-card p {
  margin-top: 8px;
  color: rgba(20, 23, 22, 0.66);
}

.principles p {
  max-width: 560px;
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.service-band,
.military-section,
.testimonials-section {
  width: 100%;
  max-width: none;
}

.service-band {
  color: var(--paper-2);
  background: var(--ink);
}

.service-band .section-heading,
.service-grid,
.testimonials-section .section-heading,
.testimonial-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.service-band .section-heading p:not(.eyebrow),
.service-card p {
  color: rgba(255, 250, 241, 0.7);
}

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

.service-card {
  min-height: 198px;
  padding: 20px;
  background: rgba(255, 250, 241, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--paper-2);
  background: linear-gradient(145deg, rgba(185, 135, 68, 0.95), rgba(116, 55, 70, 0.92));
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.card-icon svg {
  width: 27px;
  height: 27px;
}

.card-icon circle,
.card-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-section {
  width: min(100%, 1480px);
  padding-top: clamp(34px, 4.5vw, 52px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

.process-section .section-heading {
  margin-bottom: 30px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-width: 0;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(20, 23, 22, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.timeline li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--brass));
  content: "";
}

.timeline li:hover {
  border-color: rgba(116, 55, 70, 0.28);
  box-shadow: 0 24px 48px rgba(20, 23, 22, 0.1);
  transform: translateY(-4px);
}

.timeline > li > span {
  display: inline-flex;
  margin-bottom: 22px;
}

.timeline h3 {
  max-width: 13ch;
  font-size: 1.08rem;
  line-height: 1.18;
}

.timeline p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1.22fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.portrait-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--paper-2);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portrait-panel::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 23, 22, 0) 42%, rgba(20, 23, 22, 0.82) 100%);
  content: "";
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
}

.portrait-meta {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 241, 0.2);
}

.portrait-meta strong,
.portrait-meta span {
  display: block;
}

.portrait-meta span {
  color: rgba(255, 250, 241, 0.68);
}

.value-list,
.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.value-list span,
.topics span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.military-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 76px);
  color: var(--paper-2);
  background: var(--forest);
}

.military-section > * {
  width: 100%;
}

.military-grid {
  display: grid;
  gap: 0;
}

.military-grid article {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 250, 241, 0.2);
}

.military-grid p {
  color: rgba(255, 250, 241, 0.72);
}

.books-section {
  padding-bottom: 48px;
}

.book-feature,
.book-secondary {
  display: grid;
  align-items: center;
  gap: clamp(26px, 6vw, 68px);
}

.book-feature {
  grid-template-columns: minmax(240px, 350px) minmax(0, 1fr);
  padding: clamp(22px, 3.5vw, 34px);
  color: var(--paper-2);
  background: var(--ink);
  border-radius: var(--radius);
}

.book-secondary {
  grid-template-columns: 180px minmax(0, 1fr);
  margin-top: 16px;
  padding: 20px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.book-cover {
  aspect-ratio: 0.68;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.25);
  font-family: Georgia, "Times New Roman", serif;
}

.book-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 3px;
}

.book-cover span {
  max-width: 9ch;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 0.94;
}

.book-cover small {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.snow-cover {
  padding: 0;
  background: #050505;
}

.charlie-cover {
  min-height: 240px;
  padding: 0;
  background: #070b0e;
}

.book-copy h3,
.book-secondary h3,
.speaking-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  font-weight: 500;
  line-height: 1;
}

.book-copy p,
.book-secondary p {
  max-width: 650px;
}

.book-feature .book-copy p,
.book-feature .book-meta {
  color: rgba(255, 250, 241, 0.74);
}

.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.book-meta li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
}

.excerpt-section {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 22px;
  padding-top: 48px;
}

.quote-mark {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 13vw, 12rem);
  line-height: 0.75;
}

.excerpt-section p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(20, 23, 22, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.speaking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 38px);
  color: var(--paper-2);
  background: var(--wine);
  border-radius: var(--radius);
}

.speaking-card p {
  max-width: 600px;
  color: rgba(255, 250, 241, 0.76);
}

.speaking-card .button.primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--paper-2);
}

.testimonials-section {
  background: var(--paper-2);
}

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

blockquote {
  margin: 0;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

blockquote p {
  margin: 0;
  color: rgba(20, 23, 22, 0.76);
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--forest);
  font-style: normal;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(20, 23, 22, 0.7);
}

.lead-section {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.7fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto clamp(48px, 6vw, 76px);
  padding: clamp(22px, 3.5vw, 34px);
  color: var(--paper-2);
  background: var(--blue);
  border-radius: var(--radius);
}

.lead-section p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.74);
}

.lead-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lead-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.68);
  border: 1px solid rgba(20, 23, 22, 0.13);
  border-radius: var(--radius);
  outline: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

select {
  height: 46px;
  appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 19px,
    calc(100% - 16px) 19px;
  background-repeat: no-repeat;
  background-size:
    6px 6px,
    6px 6px;
  font-weight: 650;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(185, 135, 68, 0.18);
}

.contacts-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(28px, 5vw, 60px);
  padding-top: 0;
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-links a {
  width: fit-content;
  color: var(--forest);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(244, 239, 230, 0.92)),
    var(--paper-2);
  border: 1px solid rgba(20, 23, 22, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(20, 23, 22, 0.13);
}

.contact-form::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--brass), var(--forest));
  content: "";
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-heading {
  display: grid;
  gap: 4px;
  padding-bottom: 2px;
}

.form-heading span {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1;
}

.form-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(20, 23, 22, 0.62);
  font-size: 0.86rem;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-form .button.primary {
  min-height: 50px;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--wine), #65303b);
  box-shadow: 0 16px 30px rgba(116, 55, 70, 0.24);
}

.form-note {
  margin: 2px 0 0;
  color: rgba(20, 23, 22, 0.58);
  font-size: 0.84rem;
}

.contact-form textarea {
  min-height: 132px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px var(--gutter);
  color: var(--paper-2);
  background: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 250, 241, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.footer-links a,
.footer-links button {
  color: inherit;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(244, 239, 230, 1)),
    var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 24px var(--gutter);
}

.legal-header .brand,
.legal-header .button {
  color: var(--ink);
}

.legal-content {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) var(--gutter) clamp(54px, 8vw, 92px);
}

.legal-content h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.legal-updated {
  margin: 14px 0 0;
  color: rgba(20, 23, 22, 0.58);
  font-weight: 800;
}

.legal-content section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.legal-content p,
.legal-content li {
  color: rgba(20, 23, 22, 0.72);
  font-size: 1rem;
}

.legal-content a {
  color: var(--forest);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 36px), 860px);
  margin: 0 auto;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid rgba(20, 23, 22, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(20, 23, 22, 0.24);
}

.cookie-banner strong {
  display: block;
  font-size: 1rem;
}

.cookie-banner p {
  margin: 6px 0 0;
  color: rgba(20, 23, 22, 0.68);
  font-size: 0.9rem;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.cookie-button.primary {
  color: var(--paper-2);
  background: var(--wine);
  border-color: var(--wine);
}

.cookie-button.ghost {
  color: var(--ink);
  background: transparent;
}

@media (max-width: 980px) {
  :root {
    --gutter: clamp(18px, 5vw, 38px);
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 22;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 84px var(--gutter);
    color: var(--ink);
    background: var(--paper);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 8vw, 3.8rem);
    font-weight: 500;
    text-transform: none;
  }

  .main-nav .nav-cta {
    min-height: 56px;
    margin-top: 10px;
    padding: 14px 18px;
    color: var(--paper-2);
    background: var(--wine);
    border-color: var(--wine);
    font-family:
      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-media::before,
  .hero-media::after {
    opacity: 0.34;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-main {
    transform: none;
  }

  .hero-covers {
    min-height: 360px;
    width: min(100%, 400px);
  }

  .hero-book-card {
    right: auto;
    left: 0;
    width: min(70%, 270px);
  }

  .hero-cover-secondary {
    right: 18px;
    bottom: 72px;
    width: min(48%, 190px);
  }

  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .metrics article {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .metrics article:last-child {
    border-right: 0;
  }

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

  .split,
  .about-section,
  .military-section,
  .contacts-section,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .intro-section h2 {
    max-width: 780px;
  }

  .timeline li {
    min-height: 185px;
    padding: 22px;
    border: 1px solid var(--line);
  }

  .timeline li:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .book-feature {
    grid-template-columns: 1fr;
  }

  .book-cover {
    width: min(100%, 320px);
    justify-self: center;
  }

  .speaking-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-header {
    padding-inline: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::before {
    right: -34px;
    bottom: 54px;
    min-width: 170px;
  }

  .hero-media::after {
    right: -10px;
    bottom: 92px;
    min-width: 130px;
    font-size: 1.75rem;
  }

  .hero-content {
    padding: 104px var(--gutter) 34px;
    gap: 26px;
  }

  .hero-covers {
    min-height: 285px;
  }

  .hero-cover {
    width: 100%;
  }

  .hero-book-card {
    width: min(68%, 205px);
  }

  .hero-cover-secondary {
    right: 0;
    bottom: 48px;
    width: min(44%, 140px);
  }

  .button,
  .hero-actions,
  .button-row,
  .lead-form div {
    width: 100%;
  }

  .button,
  .hero-actions .button,
  .button-row .button {
    justify-content: center;
  }

  .metrics,
  .service-grid,
  .timeline,
  .testimonial-grid,
  .form-row,
  .book-secondary,
  .excerpt-section {
    grid-template-columns: 1fr;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .timeline li {
    min-height: auto;
    padding: 24px;
    border: 1px solid var(--line);
  }

  .principles article {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 16px;
  }

  .portrait-panel {
    min-height: 380px;
  }

  .portrait-meta {
    flex-direction: column;
  }

  .book-feature,
  .book-secondary,
  .lead-section,
  .contact-form {
    padding: 20px;
  }

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

  .book-secondary .book-cover {
    min-height: 250px;
  }

  .quote-mark {
    display: none;
  }

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

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 9px;
  }

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

  .brand strong {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 18vw, 4.2rem);
  }

  .hero-book-strip,
  .contact-form,
  .lead-section,
  .book-feature,
  .book-secondary {
    width: 100%;
  }

  .topics span,
  .value-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
