:root {
  --ivory: #fff8f1;
  --paper: #fffdf9;
  --aubergine: #3f102b;
  --plum: #6f173f;
  --clay: #df3f92;
  --pink-soft: #f7cde2;
  --pink-mist: #fce8f2;
  --gold: #c69a4b;
  --sage: #7c806c;
  --ink: #2c2026;
  --muted: #74656c;
  --line: rgba(111, 23, 63, 0.17);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  align-items: center;
  background: rgba(248, 243, 233, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(22px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.wordmark {
  color: var(--aubergine);
  font-family: var(--serif);
  font-size: 21px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 48px;
  overflow: hidden;
  position: relative;
  width: 205px;
}

.brand-logo img {
  height: 205px;
  left: 0;
  object-fit: cover;
  object-position: 50% 46%;
  position: absolute;
  top: -79px;
  width: 205px;
}

nav {
  align-items: center;
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta {
  border-bottom: 2px solid var(--clay);
  color: var(--clay);
  padding-bottom: 4px;
}

.menu-button {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 8% 15%, rgba(223, 63, 146, 0.09) 0 2px, transparent 3px) 0 0 / 22px 22px,
    var(--ivory);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: calc(100vh - 76px);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: clamp(70px, 10vw, 150px) clamp(28px, 7vw, 110px);
}

.eyebrow,
.section-label {
  color: var(--clay);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--aubergine);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(58px, 7vw, 106px);
  margin: 24px 0 30px;
  max-width: 850px;
}

h2 {
  font-size: clamp(42px, 5vw, 72px);
  margin: 14px 0 28px;
}

h3 {
  font-size: 30px;
  margin: 12px 0 14px;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 720px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  border: 1px solid var(--aubergine);
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 22px;
  text-decoration: none;
}

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

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

.button-secondary:hover {
  background: rgba(53, 31, 52, 0.06);
}

.hero-portrait {
  background: var(--plum);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 70px);
  position: relative;
}

.hero-portrait img {
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
  z-index: 1;
}

.portrait-orbit {
  border: 1px solid rgba(247, 205, 226, 0.6);
  border-radius: 50%;
  height: min(28vw, 390px);
  position: absolute;
  right: -11%;
  top: 7%;
  width: min(28vw, 390px);
}

.portrait-orbit::after {
  border: 1px solid rgba(198, 154, 75, 0.7);
  border-radius: 50%;
  content: "";
  inset: 12%;
  position: absolute;
}

.hero-portrait blockquote {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(23px, 2.4vw, 35px);
  line-height: 1.25;
  margin: 35px 0 0;
  position: relative;
  z-index: 2;
}

.belief-band {
  background: var(--clay);
  color: white;
  padding: clamp(55px, 7vw, 95px) clamp(28px, 12vw, 190px);
}

.belief-band p {
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 56px);
  line-height: 1.25;
  margin: 0;
  max-width: 1200px;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(28px, 7vw, 110px);
}

.about-grid,
.speaking,
.contact {
  display: grid;
  gap: clamp(45px, 8vw, 130px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
}

.body-copy {
  color: var(--muted);
  font-size: 19px;
}

.work {
  background:
    linear-gradient(135deg, transparent 48%, rgba(223, 63, 146, 0.045) 49% 51%, transparent 52%) 0 0 / 54px 54px,
    var(--paper);
}

.section-heading {
  max-width: 900px;
}

.work-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}

.work-card {
  background: rgba(255, 253, 249, 0.86);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 330px;
  padding: 35px;
}

.card-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.work-card > span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
}

.work-card p,
.idea p,
.speaking-copy > p,
.contact-copy > p {
  color: var(--muted);
}

.card-top > span {
  color: var(--clay);
  font-size: 13px;
  font-weight: 600;
}

.work-icon {
  fill: none;
  height: 42px;
  stroke: var(--clay);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 42px;
}

.milestones {
  background: var(--pink-mist);
  overflow: hidden;
  position: relative;
}

.milestones::before {
  border: 1px solid rgba(111, 23, 63, 0.14);
  border-radius: 50% 50% 0 0;
  content: "";
  height: 360px;
  position: absolute;
  right: -90px;
  top: -120px;
  width: 300px;
}

.milestone-heading {
  display: grid;
  gap: 30px;
  grid-template-columns: 0.9fr 1.5fr 0.8fr;
  position: relative;
  z-index: 1;
}

.milestone-heading h2,
.milestone-heading p {
  margin-top: 0;
}

.milestone-heading > p:last-child {
  color: var(--muted);
}

.milestone-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, minmax(260px, 36vw));
  margin-top: 65px;
}

.milestone-photo {
  margin: 0;
  overflow: hidden;
}

.milestone-photo-main {
  grid-row: 1 / 3;
}

.milestone-photo-portrait {
  grid-column: 3;
  grid-row: 1 / 3;
}

.milestone-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

.milestone-photo:hover img {
  transform: scale(1.025);
}

.milestone-photo-main img {
  object-position: 50% 22%;
}

.milestone-photo-portrait img {
  object-position: 50% 35%;
}

.ideas {
  background: var(--aubergine);
  color: white;
}

.ideas h2,
.ideas h3 {
  color: white;
}

.ideas {
  background:
    radial-gradient(circle at 92% 12%, transparent 0 108px, rgba(247, 205, 226, 0.16) 109px 110px, transparent 111px),
    radial-gradient(circle at 92% 12%, transparent 0 156px, rgba(198, 154, 75, 0.2) 157px 158px, transparent 159px),
    var(--aubergine);
}

.idea-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 55px 0 40px;
}

.idea {
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 40px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 26px 0;
}

.idea h3 {
  font-size: clamp(25px, 3vw, 40px);
  margin: 0;
}

.idea p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.text-link {
  color: #f2c571;
  font-weight: 600;
}

.speaking {
  align-items: center;
}

.speaking-image {
  background: var(--gold);
  padding: clamp(14px, 2vw, 24px);
  transform: rotate(1.5deg);
}

.speaking-image img {
  aspect-ratio: 4 / 5;
  display: block;
  filter: sepia(0.08);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.proof-strip {
  align-items: stretch;
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.proof-strip figure {
  margin: 0;
  min-height: 520px;
}

.proof-strip img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  width: 100%;
}

.proof-copy {
  align-self: center;
  padding: clamp(55px, 9vw, 140px);
}

.proof-copy > p:last-child {
  color: var(--aubergine);
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 66px);
  line-height: 1.17;
  margin: 20px 0 0;
}

.contact {
  background:
    radial-gradient(circle at 12% 85%, rgba(223, 63, 146, 0.12) 0 2px, transparent 3px) 0 0 / 24px 24px,
    #f2e3dc;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  color: var(--aubergine);
  display: grid;
  font-size: 13px;
  font-weight: 600;
  gap: 7px;
}

input,
select,
textarea {
  background: var(--paper);
  border: 1px solid rgba(53, 31, 52, 0.25);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aubergine);
}

textarea {
  resize: vertical;
}

button.button {
  cursor: pointer;
  justify-self: start;
}

footer {
  align-items: center;
  background: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding: 36px clamp(28px, 7vw, 110px);
}

.brand-logo-footer {
  height: 42px;
  width: 180px;
}

.brand-logo-footer img {
  height: 180px;
  top: -69px;
  width: 180px;
}

footer p,
.social-links a {
  color: var(--muted);
  font-size: 13px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .menu-button {
    background: transparent;
    border: 0;
    color: var(--aubergine);
    display: block;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
  }

  nav {
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 25px;
    position: absolute;
    right: 0;
    top: 69px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 6px 0;
  }

  .hero,
  .about-grid,
  .speaking,
  .contact,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    min-height: 620px;
  }

  .proof-strip figure {
    min-height: 680px;
  }

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

  .milestone-heading {
    grid-template-columns: 1fr;
  }

  .milestone-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 440px);
  }

  .milestone-photo-main,
  .milestone-photo-portrait {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .wordmark {
    font-size: 17px;
  }

  .brand-logo {
    height: 39px;
    width: 165px;
  }

  .brand-logo img {
    height: 165px;
    top: -63px;
    width: 165px;
  }

  h1 {
    font-size: clamp(43px, 12.5vw, 49px);
    overflow-wrap: anywhere;
  }

  .hero-copy {
    min-width: 0;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 80px;
  }

  .button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-portrait {
    min-height: auto;
  }

  .hero-portrait img {
    object-position: 50% 25%;
  }

  .proof-strip figure {
    min-height: 480px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

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

  .milestone-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .milestone-photo {
    height: 430px;
  }

  .idea {
    gap: 10px;
    grid-template-columns: 1fr;
  }

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