:root {
  --ink: #24312f;
  --muted: #66716d;
  --paper: #fffaf5;
  --paper-2: #f6efe9;
  --mint: #b8ded0;
  --mint-dark: #39766c;
  --coral: #ed8975;
  --lavender: #c8b7e6;
  --sun: #f6c96d;
  --line: rgba(36, 49, 47, 0.14);
  --shadow: 0 24px 70px rgba(56, 62, 58, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(184, 222, 208, 0.28), transparent 440px),
    var(--paper);
}

a {
  color: inherit;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--mint-dark);
}

.hero {
  position: relative;
  min-height: clamp(640px, 86vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 6vw, 82px);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(0deg, var(--paper), transparent);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.96) 0%, rgba(255, 250, 245, 0.82) 37%, rgba(255, 250, 245, 0.32) 67%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.12), rgba(255, 250, 245, 0.36));
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 7.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy {
  max-width: 620px;
  color: #4d5955;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.primary {
  color: #fff;
  background: var(--mint-dark);
  box-shadow: 0 12px 28px rgba(57, 118, 108, 0.24);
}

.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(36, 49, 47, 0.14);
}

.intro-band {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -24px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-band div {
  min-height: 158px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.intro-band span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-heading {
  margin-bottom: 34px;
}

.credentials {
  padding-top: clamp(82px, 10vw, 130px);
}

.feature-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 350px);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.feature-heading .section-heading {
  margin-bottom: 0;
}

.graduation-photo,
.portrait-card {
  margin: 0;
}

.graduation-photo {
  justify-self: end;
  max-width: 350px;
}

.graduation-photo img,
.portrait-card img {
  display: block;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(36, 49, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(56, 62, 58, 0.14);
}

.graduation-photo img {
  aspect-ratio: 4 / 5;
  object-position: center 24%;
}

.graduation-photo figcaption,
.portrait-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.credential-grid article,
.approach-grid article,
.steps article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credential-grid article:nth-child(2),
.approach-grid article:nth-child(2) {
  background: rgba(200, 183, 230, 0.26);
}

.credential-grid article:nth-child(3),
.approach-grid article:nth-child(3) {
  background: rgba(246, 201, 109, 0.22);
}

.credential-grid span,
.approach-grid span,
.steps span {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 86px);
  border-top: 1px solid var(--line);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 98px;
}

.copy-stack p {
  color: #4c5753;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.portrait-card {
  width: min(100%, 420px);
  margin-bottom: 30px;
}

.portrait-card img {
  aspect-ratio: 1 / 1.08;
  object-position: center 18%;
}

.copy-stack p + p {
  margin-top: 24px;
}

.approach {
  border-top: 1px solid var(--line);
}

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

.process {
  padding-top: 34px;
}

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

.steps article {
  min-height: 210px;
  background: #fff;
}

.lily-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.lily-copy p {
  max-width: 480px;
  color: #4c5753;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.lily-photo {
  width: min(100%, 520px);
  justify-self: end;
}

.lily-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
  object-position: center 44%;
  border: 1px solid rgba(36, 49, 47, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(56, 62, 58, 0.13);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 48px);
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px);
  background:
    linear-gradient(135deg, rgba(184, 222, 208, 0.78), rgba(200, 183, 230, 0.36)),
    #fff;
  border: 1px solid rgba(36, 49, 47, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-copy {
  align-self: center;
}

.booking-copy p {
  color: #40504c;
}

.calendly-frame {
  min-height: 680px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calendly-frame iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 72px);
}

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

details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-size: 1.2rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: #fff;
  background: var(--ink);
}

footer p {
  margin: 0;
  color: #fff;
  font-weight: 850;
}

footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1040px) {
  .feature-heading {
    grid-template-columns: 1fr;
  }

  .graduation-photo {
    justify-self: start;
    max-width: 420px;
  }

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

  .credential-grid article:last-child {
    grid-column: 1 / -1;
  }

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

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

  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 20px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 690px;
    padding-top: 62px;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 245, 0.96) 0%, rgba(255, 250, 245, 0.82) 48%, rgba(255, 250, 245, 0.22) 100%),
      linear-gradient(90deg, rgba(255, 250, 245, 0.72), transparent);
  }

  .intro-band,
  .approach-grid,
  .steps,
  .split,
  .lily-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }

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

  .credential-grid article:last-child {
    grid-column: auto;
  }

  .booking {
    width: min(100% - 28px, 1220px);
    padding: 28px 18px;
  }

  .lily-photo {
    justify-self: start;
  }

  .calendly-frame,
  .calendly-frame iframe {
    min-height: 720px;
    height: 720px;
  }

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

@media (max-width: 460px) {
  .brand {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 210px;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .section {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }
}
