:root {
  color-scheme: light;
  --ink: #191714;
  --muted: #5e5b55;
  --paper: #f7f2e8;
  --ivory: #fffaf1;
  --line: #ded5c5;
  --forest: #173d36;
  --forest-soft: #dce7df;
  --burgundy: #7b2835;
  --gold: #b88b3c;
  --charcoal: #242321;
  --shadow: 0 24px 70px rgba(25, 23, 20, 0.16);
  --shadow-soft: 0 18px 50px rgba(25, 23, 20, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 250, 241, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(25, 23, 20, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  z-index: 21;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.14rem;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  width: 94px;
  height: 70px;
  overflow: visible;
  flex: 0 0 auto;
}

.brand-mark img,
.footer-mark img {
  width: 108px;
  max-width: 100%;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(184, 139, 60, .18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-toggle {
  position: relative;
  z-index: 21;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  top: 17px;
}

.nav-toggle span:last-child {
  top: 25px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 14, 0.98) 0%, rgba(13, 20, 18, 0.94) 45%, rgba(18, 22, 20, 0.42) 76%, rgba(10, 13, 12, .2) 100%),
    linear-gradient(0deg, rgba(8, 11, 10, 0.8), transparent 62%);
  pointer-events: none;
}

.hero-archive {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 42%, rgba(184,139,60,.18), transparent 34%),
    #111815;
}

.hero-archive::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.025) 3px 4px);
  mix-blend-mode: soft-light;
}

.hero-tilda {
  position: absolute;
  right: clamp(3%, 7vw, 9%);
  bottom: 0;
  width: min(37vw, 500px);
  height: 82%;
  margin: 0;
  overflow: hidden;
  border-radius: 240px 240px 0 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 30px 90px rgba(0,0,0,.55);
}

.hero-tilda::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,17,15,.42), transparent 55%);
}

.hero-tilda img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: grayscale(1) contrast(1.08);
}

.hero-tilda figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 25px;
  left: 0;
  color: rgba(255,255,255,.7);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.hero-document {
  position: absolute;
  padding: 9px;
  background: #e7ddca;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  opacity: .48;
}

.hero-document img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) sepia(.15) contrast(1.08);
}

.hero-document-recu {
  top: 13%;
  right: 31%;
  width: min(28vw, 390px);
  aspect-ratio: 1.48 / 1;
  transform: rotate(-7deg);
}

.hero-document-list {
  right: 1%;
  bottom: -8%;
  width: min(20vw, 275px);
  aspect-ratio: .78 / 1;
  transform: rotate(8deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 92px;
  padding-bottom: 96px;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section h2,
.book-section h2,
.request-section h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.7vw, 5.65rem);
  line-height: 1.005;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary:hover {
  background: #c99b49;
  box-shadow: 0 10px 28px rgba(184, 139, 60, 0.25);
}

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

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}

.hero-scroll i::after {
  content: "↓";
  display: grid;
  place-items: center;
  height: 100%;
  font-style: normal;
  font-size: 1rem;
}

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

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

.intro-band {
  position: relative;
  background: var(--forest);
  color: #f8f3eb;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 80px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.intro-grid p {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.18rem, 2.6vw, 2rem);
  line-height: 1.48;
  letter-spacing: -0.018em;
}

.intro-grid p:first-child {
  color: #fff;
}

.intro-grid p:last-child {
  color: rgba(248,243,235,.72);
}

.section,
.book-section,
.request-section,
.family-section,
.reviews-section,
.archive-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 110px) 0;
}

.archive-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1160px) / 2));
  padding-left: max(18px, calc((100% - 1160px) / 2));
  background: #242321;
  color: #fff;
  overflow: hidden;
}

.archive-section::before {
  content: "ARCHIEF";
  position: absolute;
  left: -10px;
  bottom: -34px;
  color: rgba(255,255,255,.025);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(7rem, 18vw, 18rem);
  line-height: .8;
  pointer-events: none;
}

.archive-copy {
  position: relative;
  z-index: 1;
}

.archive-copy h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.archive-copy > p {
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.archive-copy .archive-lead {
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.12rem, 1.8vw, 1.4rem);
  line-height: 1.52;
}

.archive-note {
  margin-top: 30px;
  padding: 20px 0 0 24px;
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 2px solid var(--gold);
}

.archive-note span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.archive-note p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.archive-visual {
  position: relative;
  min-height: 600px;
}

.document-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 88%;
  padding: 16px 16px 12px;
  color: var(--ink);
  background: #f4ecdd;
  box-shadow: 0 36px 90px rgba(0,0,0,.42);
  text-decoration: none;
  transform: rotate(1.4deg);
  transition: transform 220ms ease;
}

.document-frame:hover {
  transform: rotate(0deg) translateY(-5px);
}

.document-frame img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  filter: sepia(.12) contrast(1.04);
}

.document-frame > span {
  display: flex;
  justify-content: space-between;
  padding: 12px 3px 2px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.document-frame i {
  font-style: normal;
}

.archive-secondary {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 44%;
  margin: 0;
  padding: 10px 10px 12px;
  color: var(--ink);
  background: #ede1ce;
  box-shadow: 0 24px 55px rgba(0,0,0,.38);
  transform: rotate(-4deg);
}

.archive-secondary img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  filter: grayscale(1) sepia(.18);
}

.archive-secondary figcaption {
  padding: 9px 3px 0;
  font-size: .72rem;
  font-weight: 700;
}

.family-section {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.family-portraits {
  position: relative;
  min-height: 590px;
}

.family-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.03);
}

.family-photo-tilda {
  z-index: 2;
  top: 0;
  left: 0;
  width: 58%;
  height: 430px;
}

.family-photo-david {
  right: 0;
  bottom: 0;
  width: 62%;
  height: 390px;
}

.family-photo-david img {
  object-position: 64% center;
}

.family-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 42px 18px 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(10,14,13,.88));
}

.family-photo figcaption strong {
  font-family: "Lora", Georgia, serif;
  font-size: 1.08rem;
}

.family-photo figcaption span {
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.family-copy h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.family-copy p {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.72;
}

.family-copy .family-lead {
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--burgundy);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 44px;
}

.section h2,
.book-section h2,
.request-section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lecture-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lecture-card {
  position: relative;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 1px 0 rgba(25, 23, 20, 0.04);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lecture-card:hover {
  transform: translateY(-4px);
  border-color: #cfc3b0;
  box-shadow: var(--shadow-soft);
}

.lecture-card.featured {
  grid-row: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.card-number {
  position: absolute;
  right: 24px;
  bottom: 10px;
  color: rgba(23, 61, 54, .055);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
}

.lecture-card > *:not(.card-number) {
  position: relative;
  z-index: 1;
}

.lecture-in-action {
  position: relative;
  min-height: 520px;
  margin: 24px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.lecture-in-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,17,15,.86) 0%, rgba(12,17,15,.38) 48%, transparent 78%), linear-gradient(0deg, rgba(12,17,15,.5), transparent 45%);
}

.lecture-in-action > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
}

.lecture-in-action figcaption {
  position: absolute;
  z-index: 1;
  bottom: clamp(24px, 5vw, 58px);
  left: clamp(24px, 5vw, 58px);
  display: grid;
  max-width: 560px;
  color: #fff;
}

.lecture-in-action figcaption .eyebrow {
  margin-bottom: 12px;
}

.lecture-in-action figcaption strong {
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.65rem, 3.4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.lecture-in-action figcaption small {
  margin-top: 18px;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 700;
}

.lecture-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.lecture-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(123, 40, 53, 0.18);
  border-radius: 999px;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
}

.lecture-card h3 {
  margin: 0 0 18px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.lecture-card p,
.book-copy p,
.about-copy p,
.request-section p,
.contact-box p {
  color: var(--muted);
  line-height: 1.72;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #393631;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--burgundy);
}

.book-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.book-copy p,
.about-copy p,
.request-section > div > p {
  max-width: 66ch;
}

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

.timeline div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, color 180ms ease;
}

.timeline div:hover {
  padding-left: 10px;
}

.timeline span {
  color: var(--burgundy);
  font-weight: 800;
}

.timeline p {
  margin: 0;
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.35;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.portrait-panel {
  position: sticky;
  top: 96px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.portrait-panel > img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: 62% center;
}

.initials {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: "Lora", Georgia, serif;
  font-size: 2rem;
  background: rgba(255,255,255,.04);
}

.portrait-panel p {
  margin: 0;
  padding: 24px 28px 28px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
}

.portrait-panel p strong {
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: 1.25rem;
}

.reviews-section {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100% - 1160px) / 2));
  padding-left: max(18px, calc((100% - 1160px) / 2));
  background: var(--forest);
  color: #fff;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.reviews-heading h2 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.reviews-heading > p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

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

.review-card {
  min-height: 260px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}

.review-card-featured {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ivory);
  color: var(--ink);
}

.review-card p {
  margin: 22px 0 34px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.45;
}

.review-card-featured p {
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  line-height: .6;
}

.stars {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .18em;
}

.review-card footer {
  display: grid;
  gap: 3px;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
}

.review-card-featured footer {
  color: var(--muted);
}

.review-card footer strong {
  color: currentColor;
  font-size: .92rem;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 6vw, 84px);
  align-items: start;
  padding-top: clamp(46px, 7vw, 84px);
}

.contact-box,
.contact-form {
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius);
  background: var(--charcoal);
  color: #fff;
}

.contact-link {
  display: inline-block;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

.contact-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.contact-form select option {
  color: var(--ink);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 139, 60, 0.22);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 17, 0.68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: var(--ivory);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
}

.modal-card h2 {
  margin: 0 0 10px;
  font-family: "Lora", Georgia, serif;
  font-size: 1.9rem;
}

.modal-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-identity {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-mark {
  width: 78px;
  height: 58px;
}

.footer-mark img {
  width: 90px;
  height: 90px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 78px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 24px;
    padding: 84px 28px 36px;
    background: var(--ivory);
    color: var(--ink);
    font-size: 1.6rem;
    transform: translateY(-100%);
    transition: transform 210ms ease;
  }

  .site-header.nav-active .site-nav {
    transform: translateY(0);
  }

  .hero {
    min-height: 92svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 17, 16, 0.96), rgba(18, 22, 20, 0.7)),
      linear-gradient(0deg, rgba(10, 12, 11, 0.68), rgba(10, 12, 11, 0.08));
  }

  .hero-content {
    margin: 0 auto;
    padding-bottom: 110px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .section-heading,
  .lecture-list,
  .book-section,
  .about-section,
  .request-section,
  .family-section,
  .reviews-heading,
  .reviews-grid,
  .archive-section {
    grid-template-columns: 1fr;
  }

  .archive-visual {
    min-height: 560px;
    margin-top: 10px;
  }

  .family-portraits {
    min-height: 540px;
  }

  .review-card-featured {
    grid-row: auto;
  }

  .lecture-card,
  .lecture-card.featured {
    min-height: 0;
    grid-row: auto;
  }

  .portrait-panel {
    position: static;
  }

  .hero-scroll {
    right: 18px;
    bottom: 22px;
  }

  .hero-scroll span {
    display: none;
  }

  .hero-tilda {
    right: -7%;
    width: 56vw;
    height: 68%;
    opacity: .62;
  }

  .hero-document-recu {
    top: 14%;
    right: 17%;
    width: 46vw;
    opacity: .3;
  }

  .hero-document-list {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(2.32rem, 14vw, 3.6rem);
  }

  .hero-text,
  .lecture-card p,
  .book-copy p,
  .about-copy p,
  .request-section p {
    font-size: 0.98rem;
  }

  .lecture-meta {
    align-items: flex-start;
  }

  .lecture-in-action {
    min-height: 520px;
  }

  .lecture-in-action::after {
    background: linear-gradient(0deg, rgba(12,17,15,.94) 0%, rgba(12,17,15,.38) 70%, transparent 100%);
  }

  .lecture-in-action > img {
    object-position: 38% center;
  }

  .timeline div {
    grid-template-columns: 42px 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .family-portraits {
    min-height: 430px;
  }

  .family-photo-tilda {
    width: 62%;
    height: 320px;
  }

  .family-photo-david {
    width: 65%;
    height: 280px;
  }

  .brand {
    gap: 8px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 70px;
    height: 54px;
  }

  .brand-mark img {
    width: 82px;
    height: 82px;
  }

  .archive-visual {
    min-height: 410px;
  }

  .document-frame {
    width: 94%;
    padding: 10px 10px 8px;
  }

  .archive-secondary {
    width: 48%;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
