:root {
  --cream: #fff8e5;
  --peach: #f5d3bb;
  --peach-deep: #fac49a;
  --orange: #ff812f;
  --orange-dark: #df6a23;
  --brown: #88431f;
  --brown-soft: #a45f35;
  --white: #fffdfa;
  --shadow: 0 13px 28px rgb(130 72 35 / 12%);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--brown);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 20px 24px 10px;
  pointer-events: none;
}

.navbar {
  display: flex;
  width: min(830px, 100%);
  min-height: 58px;
  margin-inline: auto;
  padding: 7px 12px 7px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgb(255 129 47 / 14%);
  border-radius: 999px;
  background: rgb(255 253 250 / 94%);
  box-shadow: 0 8px 28px rgb(122 68 31 / 9%);
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 122px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  padding: 7px 0;
  transition: color 180ms ease, transform 180ms ease;
}

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

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--orange-dark);
}

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

.hero {
  margin-top: -78px;
  padding-top: 86px;
}

.hero-grid {
  display: grid;
  min-height: min(790px, calc(100svh - 8px));
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  gap: clamp(34px, 5vw, 78px);
  padding-block: 70px 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-kicker,
.script-label {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  line-height: 1;
}

.hero-kicker strong,
.script-label {
  color: var(--orange-dark);
  font-style: italic;
}

.hero h1 {
  margin: -6px 0 24px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 7vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-description {
  max-width: 610px;
  font-size: clamp(0.94rem, 1.1vw, 1.04rem);
  line-height: 1.35;
}

.hero-description p {
  margin: 0 0 12px;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  padding: 11px 26px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  isolation: isolate;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.button::before {
  position: absolute;
  z-index: -1;
  top: -40%;
  left: -55%;
  width: 40%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 45%), transparent);
  transform: rotate(18deg);
  transition: left 520ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 12px 24px rgb(139 72 29 / 18%);
}

.button:hover::before,
.button:focus-visible::before {
  left: 115%;
}

.button:active {
  transform: translateY(-1px) scale(0.99);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-light {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 7px 22px rgb(125 65 25 / 8%);
}

.button-light span {
  color: var(--orange);
  font-size: 1.3em;
  transition: transform 180ms ease;
}

.button-light:hover span {
  transform: translateX(4px);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  align-self: end;
}

.hero-arch {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 470px);
  height: 600px;
  border-radius: 240px 240px 0 0;
  background: var(--peach-deep);
}

.hero-visual img {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 0;
  width: min(100%, 414px);
  max-height: 680px;
  object-fit: contain;
  object-position: bottom;
}

.about {
  position: relative;
  min-height: clamp(980px, 65.625vw, 1260px);
  overflow: hidden;
  padding-top: clamp(60px, 4.6875vw, 90px);
}

.about-grid {
  position: relative;
  display: grid;
  min-height: clamp(890px, 57.3vw, 1100px);
  align-items: start;
  grid-template-columns: minmax(420px, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(44px, 5vw, 90px);
}

.about-photo {
  position: relative;
  z-index: 1;
  height: clamp(890px, 57.3vw, 1100px);
  align-self: end;
}

.about-photo img {
  position: absolute;
  z-index: 1;
  top: clamp(42px, 3.9vw, 75px);
  bottom: auto;
  left: calc(19.53125vw - max(24px, (100vw - 1160px) / 2));
  width: min(50.1vw, 961px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: top left;
}

.about-copy {
  position: relative;
  z-index: 3;
  padding-top: 34px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.section-title {
  margin: 0 0 24px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1.1;
}

.section-title-line {
  padding-bottom: 12px;
  border-bottom: 2px solid rgb(255 129 47 / 52%);
}

.about-copy > p {
  margin: 0 0 22px;
}

.about-highlights {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlight {
  min-height: 154px;
  padding: 14px 8px 11px;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffd2bb, #ffa06d);
  color: var(--white);
  text-align: center;
  box-shadow: 0 8px 18px rgb(153 73 27 / 10%);
}

.highlight img {
  width: auto;
  height: 64px;
  margin: 0 auto 5px;
  object-fit: contain;
}

.highlight p,
.highlight span {
  display: block;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.highlight span {
  font-size: 0.58rem;
  font-weight: 500;
}

.about-copy blockquote {
  position: relative;
  margin: 22px 0 0 86px;
  padding: 20px 22px;
  border-radius: 10px;
  background: #ffa677;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.35;
}

.about-copy blockquote::before {
  position: absolute;
  top: 22px;
  left: -18px;
  border-width: 10px 18px 10px 0;
  border-style: solid;
  border-color: transparent #ffa677 transparent transparent;
  content: "";
}

.about-copy cite {
  display: block;
  margin-top: 6px;
  font-size: 0.82em;
  text-align: right;
}

.about-desk {
  position: absolute;
  z-index: 2;
  top: clamp(500px, 33.49vw, 643px);
  bottom: auto;
  left: 36.2%;
  width: min(176.46vw, 3388px);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.clinical {
  position: relative;
  z-index: 5;
  padding: 0 0 90px;
}

.clinical-panel {
  padding: 70px clamp(30px, 6vw, 84px) 74px;
  border-radius: 64px;
  background: var(--peach);
}

.clinical-heading {
  text-align: center;
}

.clinical-heading .script-label {
  color: var(--brown-soft);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.clinical-heading h2,
.services-heading h2,
.services-heading p,
.mentorship-heading h2,
.contact h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.45rem);
  line-height: 1.05;
}

.clinical-explanation {
  display: grid;
  margin-top: 54px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 38px 68px;
}

.explanation-copy {
  font-size: 0.92rem;
  line-height: 1.45;
}

.explanation-copy p {
  margin: 0 0 17px;
}

.bears {
  width: min(100%, 350px);
  margin-inline: auto;
}

.birds {
  width: min(100%, 365px);
  margin-inline: auto;
}

.services-heading {
  margin: 62px 0 34px;
  text-align: center;
}

.services-heading h2 {
  font-size: clamp(2.45rem, 4vw, 3.35rem);
}

.services-heading p {
  margin-top: 3px;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 450px;
  padding: 34px 22px 14px;
  flex-direction: column;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 7px 9px 0 rgb(151 90 51 / 12%);
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 8px 15px 25px rgb(151 90 51 / 16%);
}

.service-shape {
  position: absolute;
  top: 16px;
  left: 16px;
  display: block;
  width: 20px;
  height: 20px;
  background: var(--orange);
}

.service-shape.circle {
  border-radius: 50%;
}

.service-shape.triangle {
  width: 0;
  height: 0;
  border-right: 11px solid transparent;
  border-bottom: 20px solid var(--orange);
  border-left: 11px solid transparent;
  background: transparent;
}

.service-card h3 {
  min-height: 50px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.83rem;
  line-height: 1.25;
}

.service-card > p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
}

.price {
  display: flex;
  margin: auto 0 14px;
  color: var(--orange);
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  font-family: Georgia, "Times New Roman", serif;
}

.price span {
  margin-right: 5px;
  font-size: 0.92rem;
  font-weight: 700;
}

.price strong {
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  flex: 0 0 100%;
  color: #b99d8a;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.62rem;
}

.service-button {
  width: 100%;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
}

.service-button:hover,
.service-button:focus-visible {
  background: var(--orange-dark);
}

.mentorship {
  padding: 20px 0 110px;
}

.mentorship-heading {
  margin: 0 0 58px 8%;
}

.mentorship-heading .script-label {
  color: var(--orange);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.mentorship-heading h2 {
  color: var(--orange);
}

.mentorship-intro {
  display: grid;
  max-width: 980px;
  margin: 0 auto 80px;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  gap: 58px;
}

.mentorship-intro p {
  margin: 0 0 19px;
  font-size: 0.94rem;
  line-height: 1.48;
}

.mentorship-intro img {
  width: min(100%, 340px);
  margin-inline: auto;
}

.mentorship-box {
  display: grid;
  max-width: 980px;
  margin-inline: auto;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff8e3c, #ff7723);
  color: var(--white);
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  box-shadow: 0 18px 38px rgb(153 76 26 / 13%);
}

.program-copy {
  padding: 12px 8px 7px;
}

.program-copy h3 {
  margin: 0 0 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
}

.program-copy > p {
  margin: 0 0 18px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.program-copy h4 {
  margin: 0 0 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.program-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 6px;
}

.program-steps li {
  display: flex;
  min-height: 34px;
  padding: 5px 10px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(255 255 255 / 65%);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
}

.program-steps span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
}

.included-card {
  display: flex;
  padding: 20px 20px 14px;
  flex-direction: column;
  border-radius: 16px;
  background: var(--white);
  color: #8b6e5b;
}

.included-card h3 {
  margin: 0 0 11px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.included-card ul {
  margin: 0;
  padding-left: 19px;
  font-size: 0.73rem;
  line-height: 1.45;
}

.mentorship-price {
  margin: auto 0 12px;
}

.contact {
  padding: 0 16px;
}

.contact-panel {
  width: min(1260px, 100%);
  min-height: 560px;
  padding: 66px 36px 26px;
  border-radius: 64px 64px 0 0;
  background: var(--peach);
}

.contact h2 {
  margin: 0 0 55px;
  text-align: center;
}

.contact-grid {
  display: grid;
  max-width: 760px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-column {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  min-height: 88px;
  padding: 12px 18px;
  align-items: center;
  border: 1px solid rgb(145 74 34 / 6%);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 20px rgb(145 74 34 / 7%);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgb(145 74 34 / 14%);
}

.text-card {
  flex-direction: column;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.text-card span,
.icon-card b {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
}

.text-card strong,
.icon-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.icon-card {
  gap: 15px;
  font-family: Georgia, "Times New Roman", serif;
}

.icon-card img {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  object-fit: contain;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 9vw, 5.8rem);
  }

  .hero-visual,
  .hero-arch {
    min-height: 570px;
    height: 570px;
  }

  .hero-visual img {
    max-height: 620px;
  }

  .about-grid {
    grid-template-columns: minmax(360px, 0.95fr) minmax(390px, 1.05fr);
    gap: 30px;
  }

  .clinical-panel {
    width: calc(100% - 30px);
  }

  .service-card {
    padding-inline: 15px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 14px;
  }

  .navbar {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .navbar::-webkit-scrollbar {
    display: none;
  }

  .brand img {
    width: 106px;
  }

  .nav-links {
    gap: 20px;
    font-size: 0.82rem;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 120px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-visual {
    min-height: 580px;
    width: min(100%, 470px);
    height: 580px;
    margin: -30px auto 0;
  }

  .hero-arch {
    min-height: 0;
    height: 520px;
  }

  .hero-visual img {
    max-height: 590px;
  }

  .about {
    min-height: 0;
    padding-top: 70px;
  }

  .about-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .about-copy {
    order: 1;
    padding-top: 0;
  }

  .about-photo {
    z-index: 1;
    order: 2;
    height: 680px;
  }

  .about-photo img {
    top: 0;
    bottom: auto;
    left: 50%;
    width: auto;
    height: 680px;
    transform: translateX(-50%);
  }

  .about-desk {
    top: auto;
    bottom: -10px;
    left: 36.2%;
    width: 176.46vw;
    height: auto;
  }

  .clinical {
    padding-top: 0;
  }

  .clinical-explanation {
    grid-template-columns: 1fr 250px;
    gap: 24px;
  }

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

  .service-card {
    min-height: 390px;
  }

  .mentorship-intro,
  .mentorship-box {
    grid-template-columns: 1fr;
  }

  .mentorship-intro img {
    width: min(75%, 340px);
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .hero-grid {
    padding-top: 110px;
  }

  .hero-kicker {
    font-size: 1.55rem;
  }

  .hero h1 {
    margin-top: 2px;
    font-size: clamp(4rem, 20vw, 5rem);
  }

  .hero-visual {
    min-height: 500px;
    height: 500px;
  }

  .hero-arch {
    width: 92%;
    height: 450px;
  }

  .hero-visual img {
    right: 0;
    max-height: 510px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .highlight {
    display: grid;
    min-height: 96px;
    padding: 10px 18px;
    align-items: center;
    grid-template-columns: 70px 1fr;
    text-align: left;
  }

  .highlight img {
    grid-row: 1 / 3;
    margin: auto;
  }

  .highlight p,
  .highlight span {
    font-size: 0.8rem;
  }

  .about-copy blockquote {
    margin-left: 18px;
  }

  .about-photo,
  .about-photo img {
    height: 510px;
  }

  .about-desk {
    width: 176.46vw;
    height: auto;
  }

  .clinical-panel {
    width: calc(100% - 16px);
    padding: 52px 22px 58px;
    border-radius: 38px;
  }

  .clinical-explanation {
    grid-template-columns: 1fr;
  }

  .bears {
    width: min(82%, 330px);
  }

  .birds {
    width: min(90%, 350px);
  }

  .second-copy {
    order: 4;
  }

  .services-heading {
    margin-top: 48px;
  }

  .mentorship {
    padding-bottom: 80px;
  }

  .mentorship-heading {
    margin-left: 0;
  }

  .mentorship-intro {
    margin-bottom: 55px;
    gap: 24px;
  }

  .mentorship-box {
    padding: 14px;
    border-radius: 20px;
  }

  .program-copy h3 {
    font-size: 2rem;
  }

  .contact {
    padding-inline: 8px;
  }

  .contact-panel {
    padding: 52px 15px 24px;
    border-radius: 38px 38px 0 0;
  }

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

  .contact h2 {
    margin-bottom: 36px;
  }
}

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

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