:root {
  --ink: #26332c;
  --muted: #746f67;
  --paper: #f4ece6;
  --surface: #ffffff;
  --cream: #fbf6ef;
  --forest: #1f2f27;
  --forest-soft: #314238;
  --sage: #536b5b;
  --sage-soft: #e8ede6;
  --clay: #bd8c7f;
  --rose: #dfb8ad;
  --rose-soft: #f4e2dc;
  --line: #ded4ca;
  --shadow: 0 20px 60px rgba(39, 49, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(221, 228, 220, 0.82);
  background: rgba(244, 236, 230, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 64px;
  height: 40px;
  border-radius: 8px;
  background: var(--forest);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.8);
}

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

.brand small,
.eyebrow,
.small,
.text-block,
.hero p,
.contact p {
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.nav a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(244, 236, 230, 0.96), rgba(244, 236, 230, 0.76));
}

.hero-media {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 55% 54%;
  filter: saturate(0.82) contrast(0.92);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 47, 39, 0.06), rgba(31, 47, 39, 0.24));
  pointer-events: none;
}


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

.hero-logo {
  display: block;
  width: min(320px, 64vw);
  height: auto;
  margin: 0 0 28px;
  mix-blend-mode: multiply;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 500;
}

p {
  line-height: 1.65;
}

.hero p {
  max-width: 620px;
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button.full {
  width: 100%;
}

.section {
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.intro,
.private-area,
.speaking,
.contact {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.text-block {
  max-width: 760px;
  font-size: 1.04rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(260px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 56% 42%;
  filter: saturate(0.84) contrast(0.95);
}

.service-band {
  background: var(--forest);
  color: #f8eee8;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

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

.topic-list article,
.blog-grid article,
.contact-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.topics {
  background: var(--rose-soft);
}

.blog {
  background: var(--paper);
}

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

.blog-grid article {
  display: grid;
  align-content: start;
  min-height: 300px;
}

.blog-grid span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-grid a {
  align-self: end;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.process-copy {
  display: grid;
  gap: 18px;
  max-width: 980px;
  color: #f8eee8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.42rem, 2.5vw, 2rem);
  line-height: 1.28;
}

.process-copy p {
  margin-bottom: 0;
  color: inherit;
  line-height: inherit;
}

.topic-list article {
  position: relative;
}

.topic-list article::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--clay);
}

.private-area {
  background: var(--forest);
  color: #f8eee8;
}

.private-area .text-block,
.service-band .eyebrow,
.service-grid article p {
  color: #d9c9c0;
}

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

.access-note {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--cream);
}

.resource-library {
  background: var(--rose-soft);
}

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

.resource-grid article {
  display: grid;
  align-content: start;
  min-height: 280px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.resource-grid span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-grid button {
  align-self: end;
  min-height: 40px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
}

.speaking-content {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
}

.speaking-content .actions {
  margin-top: 24px;
}

.notice {
  display: grid;
  gap: 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff8f1;
}

.notice strong,
.notice p {
  max-width: 900px;
}

.notice strong {
  color: #7a4736;
  font-size: 1.1rem;
}

.notice p {
  margin-bottom: 0;
  color: #594f49;
}

.contact-panel {
  max-width: 420px;
  background: var(--forest);
  color: #f8eee8;
}

.contact-panel .secondary {
  margin-top: 10px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f8eee8;
}

.contact-lines {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: #f8eee8;
  font-size: 0.95rem;
}

.contact-panel .small {
  color: #d9c9c0;
}

.small {
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer a {
  font-weight: 800;
  text-decoration: none;
}

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

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 520px;
  }

  .intro,
  .private-area,
  .speaking,
  .contact,
  .about-grid,
  .blog-grid,
  .access-note,
  .resource-grid,
  .topic-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand strong {
    max-width: 230px;
  }

  h1 {
    font-size: 2.7rem;
  }

  .footer {
    flex-direction: column;
  }
}
.image-band {
  height: clamp(360px, 58vw, 680px);
  overflow: hidden;
  background: var(--forest);
}

.image-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0.84;
}
