@import url("https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@500;600;700&family=Inter+Tight:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #2b4858;
  --forest: #2b4858;
  --olive: #41738e;
  --olive-soft: #696e6f;
  --sage: #d4dadb;
  --mist: #f5e2d3;
  --pearl: #fffdf9;
  --cream: #f5e2d3;
  --gold: #c28d5d;
  --sand: #e6b488;
  --taupe: #a48b80;
  --taupe-soft: #e3d8d7;
  --blue: #75bbe2;
  --blue-soft: #bdddf0;
  --blue-mid: #5695b7;
  --muted: #696e6f;
  --line: rgba(43, 72, 88, 0.14);
  --white: #ffffff;
  --shadow: 0 34px 90px rgba(43, 72, 88, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg,
video {
  display: block;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

h1,
h2 {
  margin-bottom: 0;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5.8vw, 6.35rem);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.nowrap {
  white-space: nowrap;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}

main {
  overflow: hidden;
  background: var(--pearl);
}

section[id],
article[id] {
  scroll-margin-top: 116px;
}

#contact {
  scroll-margin-top: 116px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 64px);
  padding: 22px clamp(28px, 7vw, 112px);
  color: var(--ink);
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: none;
  backdrop-filter: blur(18px);
  transform: none;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(43, 72, 88, 0.08);
  background: rgba(255, 253, 249, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: clamp(230px, 28vw, 430px);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand img {
  width: clamp(230px, 28vw, 430px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.8vw, 22px);
}

.site-nav a,
.nav-link {
  color: rgba(43, 72, 88, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--forest);
  outline: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  background: rgba(117, 190, 226, 0.1);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown.is-open .nav-link {
  background: rgba(117, 190, 226, 0.18);
}

.nav-dropdown-toggle span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 250px;
  margin-top: 18px;
  padding: 10px;
  border: 1px solid rgba(43, 72, 88, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 30;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px;
  color: var(--ink);
  border-radius: 12px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--forest);
  background: var(--sage);
}

.site-nav .nav-cta {
  padding: 17px 26px;
  color: var(--cream);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-mid), var(--olive));
  box-shadow: 0 18px 34px rgba(43, 72, 88, 0.16);
}

.site-nav .nav-donate {
  padding: 17px 24px;
  color: var(--ink);
  border-radius: 8px;
  background: var(--gold);
  box-shadow: 0 18px 34px rgba(194, 141, 93, 0.18);
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate:focus-visible {
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(194, 141, 93, 0.28);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(43, 72, 88, 0.22);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
}

.hero-stage {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--pearl);
  isolation: isolate;
}

.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  opacity: 0.34;
  filter: saturate(0.86) blur(1px);
}

.hero-media video,
.hero-media img {
  object-fit: cover;
}

.hero-media video {
  z-index: 1;
}

.hero-media img {
  z-index: 0;
}

.hero-shell {
  position: relative;
  width: 100%;
  min-height: min(720px, calc(100svh - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, 0.48fr) minmax(540px, 0.52fr);
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: clamp(50px, 6vw, 88px) clamp(36px, 5.8vw, 92px) clamp(36px, 5vw, 68px);
  background:
    radial-gradient(circle at 18% 22%, rgba(189, 221, 240, 0.38), transparent 34%),
    var(--pearl);
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(-120px, -7vw, -80px);
  bottom: 0;
  width: clamp(170px, 14vw, 260px);
  border-radius: 50%;
  background: var(--pearl);
  pointer-events: none;
}

.hero-scene {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero-scene-mobile {
  display: none;
}

.hero-scene img,
.hero-scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.96);
}

.hero-actions,
.hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  gap: 18px;
  margin-top: 28px;
}

.hero-features {
  gap: 0;
  margin-top: 30px;
  color: rgba(43, 72, 88, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-features span {
  position: relative;
  padding: 0 10px;
  white-space: nowrap;
}

.hero-features span:first-child {
  padding-left: 0;
}

.hero-features span + span {
  border-left: 1px solid rgba(43, 72, 88, 0.16);
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 18px 0 18px;
  color: #2b4858;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.75rem, 6.6vw, 7.1rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 590px;
  color: rgba(43, 72, 88, 0.76);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-content {
  display: grid;
  gap: 16px;
}

.pill-row,
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 16px;
  color: var(--forest);
  border: 1px solid rgba(245, 226, 211, 0.72);
  border-radius: 999px;
  background: rgba(245, 226, 211, 0.9);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.hero-logo {
  position: relative;
  width: min(620px, 76vw);
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 720px;
  margin: 0;
  color: var(--cream);
  font-family: "Inter Tight", "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.2rem, 6.4vw, 6.4rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(4, 8, 4, 0.34);
}

.hero-logo img {
  width: 100%;
  max-height: min(46vh, 520px);
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(4, 8, 4, 0.42));
}

.hero-content p {
  max-width: 570px;
  color: rgba(245, 226, 211, 0.84);
  font-size: clamp(0.98rem, 1.25vw, 1.15rem);
  font-weight: 700;
  text-shadow: 0 12px 28px rgba(4, 8, 4, 0.28);
}

.hero-trust {
  width: min(1080px, calc(100% - 64px));
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.4fr;
  overflow: hidden;
  border: 1px solid rgba(245, 226, 211, 0.42);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  color: var(--cream);
  background: rgba(164, 139, 128, 0.36);
  backdrop-filter: blur(18px);
}

.hero-trust div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px 26px;
  border-right: 1px solid rgba(245, 226, 211, 0.22);
}

.hero-trust div:last-child {
  border-right: 0;
}

.hero-trust strong {
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 600;
  line-height: 0.9;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-light {
  color: var(--forest);
  background: var(--cream);
}

.button-dark {
  color: var(--cream);
  background: var(--forest);
}

.button-outline {
  color: #696e6f;
  border: 1px solid rgba(43, 72, 88, 0.36);
  background: transparent;
}

.section-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-section,
.services-section,
.approach-section,
.team-section,
.counselors-section,
.fees-section,
.faq-section,
.contact-section,
.calendar-section {
  padding: clamp(82px, 10vw, 150px) clamp(24px, 6vw, 118px);
}

.about-section {
  text-align: center;
  color: var(--cream);
  background: var(--ink);
}

.about-inner {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 4vw, 42px);
  max-width: 1120px;
  margin: 0 auto;
}

.about-image {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(245, 226, 211, 0.18);
  border-radius: 34px;
  background: rgba(245, 226, 211, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section h2 {
  max-width: 980px;
  color: var(--cream);
}

.about-text {
  max-width: 850px;
  color: rgba(245, 226, 211, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.values-row {
  justify-content: center;
  max-width: 920px;
}

.values-row span {
  padding: 13px 0;
  color: var(--cream);
  border-bottom: 1px solid rgba(245, 226, 211, 0.24);
  font-weight: 800;
}

.services-section {
  background: var(--pearl);
}

.services-intro {
  display: grid;
  gap: 24px;
  margin: 24px 0 56px;
}

.services-intro h2 {
  max-width: 1040px;
}

.services-intro p {
  max-width: 620px;
}

.services-intro p,
.counselors-heading p,
.fees-section p,
.faq-list p {
  color: var(--muted);
}

.services-experience {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.services-image {
  min-height: 720px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.services-image img,
.approach-image img,
.team-image img,
.counselor-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-panel {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px 28px;
  align-content: center;
  min-height: 224px;
  padding: 34px;
  color: var(--cream);
  border: 1px solid rgba(245, 226, 211, 0.1);
  border-radius: 30px;
  background: var(--forest);
  box-shadow: 0 22px 52px rgba(43, 72, 88, 0.13);
}

.service-panel span {
  grid-row: span 2;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.service-panel p {
  color: rgba(245, 226, 211, 0.72);
}

.approach-section {
  background: var(--sage);
}

.approach-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 50px);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.approach-copy {
  display: grid;
  gap: 26px;
}

.approach-copy p,
.team-copy p {
  color: var(--muted);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach-list li {
  position: relative;
  min-height: 46px;
  padding: 12px 16px 12px 38px;
  border: 1px solid rgba(117, 187, 226, 0.22);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
  color: var(--ink);
  font-size: clamp(0.95rem, 1.05vw, 1.08rem);
  font-weight: 700;
  line-height: 1.25;
}

.approach-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(194, 141, 93, 0.12);
}

.serve-block {
  display: grid;
  gap: 12px;
}

.serve-block h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pill-row span {
  color: var(--forest);
  background: var(--sage);
}

.approach-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--pearl);
  box-shadow: 0 24px 70px rgba(43, 72, 88, 0.16);
}

.approach-image img {
  position: absolute;
  inset: 0;
  object-position: center;
}

.team-section {
  display: grid;
  gap: clamp(24px, 3vw, 36px);
  padding-top: clamp(64px, 7vw, 98px);
  padding-bottom: clamp(64px, 7vw, 98px);
  background: var(--pearl);
}

.team-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.team-heading p {
  max-width: 720px;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
}

.team-member-card {
  display: grid;
  grid-template-rows: clamp(280px, 26vw, 340px) 1fr;
  overflow: hidden;
  border: 1px solid rgba(43, 72, 88, 0.12);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(43, 72, 88, 0.08);
}

.team-member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.team-member-card div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: clamp(18px, 2vw, 24px);
}

.team-member-card div > p:first-child {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-member-card h3 {
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.team-member-card p {
  color: var(--muted);
  font-size: clamp(0.86rem, 0.92vw, 0.96rem);
  line-height: 1.38;
}

.team-member-card-empty {
  grid-template-rows: 1fr;
  min-height: 520px;
  border-style: dashed;
  background: linear-gradient(145deg, rgba(212, 218, 219, 0.55), rgba(245, 226, 211, 0.5));
}

.counselors-section {
  color: var(--cream);
  background: var(--forest);
}

.counselors-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.5fr);
  gap: 42px;
  align-items: end;
  margin: 24px 0 42px;
}

.counselors-heading h2 {
  color: var(--cream);
}

.counselors-heading p {
  color: rgba(245, 226, 211, 0.68);
}

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

.counselor-grid article {
  overflow: hidden;
  border: 1px solid rgba(245, 226, 211, 0.1);
  border-radius: 30px;
  background: rgba(245, 226, 211, 0.06);
}

.counselor-grid img {
  height: 380px;
}

.counselor-grid div {
  padding: 26px;
}

.counselor-grid p {
  color: rgba(245, 226, 211, 0.66);
  font-weight: 700;
}

.fees-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  background: var(--pearl);
}

.fees-copy {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 24px;
  padding-top: 0;
}

.fees-image {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 100%;
  min-height: clamp(440px, 37vw, 560px);
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(43, 72, 88, 0.16);
}

.fees-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fee-list {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  border-top: 1px solid var(--line);
}

.fee-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.64fr) 1fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.fee-list span {
  font-weight: 900;
}

.fee-list strong {
  color: var(--muted);
  font-weight: 700;
}

.faq-section {
  background: var(--sage);
}

.faq-section h2 {
  margin: 22px 0 40px;
}

.faq-list {
  max-width: 960px;
  border-top: 1px solid rgba(43, 72, 88, 0.18);
}

details {
  border-bottom: 1px solid rgba(43, 72, 88, 0.18);
}

summary {
  cursor: pointer;
  padding: 28px 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 900;
  list-style: none;
}

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

details p {
  max-width: 760px;
  padding-bottom: 28px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  color: var(--cream);
  background: var(--ink);
}

.contact-section h2 {
  color: var(--cream);
}

.contact-section p,
.contact-details {
  color: rgba(245, 226, 211, 0.72);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 26px;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  font-weight: 700;
}

.contact-details a {
  color: var(--cream);
}

.contact-details span {
  color: rgba(245, 226, 211, 0.62);
  font-weight: 400;
  line-height: 1.55;
}

.donation-button {
  justify-self: start;
  width: fit-content;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 18px 38px rgba(194, 141, 93, 0.22);
}

.donation-button:hover,
.donation-button:focus-visible {
  box-shadow: 0 20px 42px rgba(194, 141, 93, 0.32);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(43, 72, 88, 0.1);
  border-radius: 30px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.hero-form {
  align-self: center;
  gap: 12px;
  padding: clamp(18px, 2vw, 26px);
  border-color: rgba(43, 72, 88, 0.1);
  border-radius: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(43, 72, 88, 0.18);
}

.hero-form h2 {
  max-width: 260px;
  margin: 0 0 4px;
  color: var(--ink);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1;
}

.hero-form label {
  gap: 5px;
  color: rgba(43, 72, 88, 0.78);
  font-size: 0.78rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(43, 72, 88, 0.16);
  border-radius: 0;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
}

.hero-form textarea {
  min-height: 76px;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  border-color: var(--ink);
  outline: none;
}

.hero-form .button {
  min-height: 48px;
  margin-top: 4px;
}

.hero-form .form-status {
  min-height: 1.2em;
  color: rgba(43, 72, 88, 0.68);
  font-size: 0.78rem;
}

.form-honey {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(245, 226, 211, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245, 226, 211, 0.22);
  border-radius: 16px;
  padding: 15px;
  color: var(--cream);
  background: rgba(245, 226, 211, 0.08);
}

.contact-form label {
  color: rgba(43, 72, 88, 0.8);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--ink);
  border-color: rgba(43, 72, 88, 0.16);
  background: var(--pearl);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(194, 141, 93, 0.24);
}

.contact-form .button-light {
  color: var(--ink);
  background: var(--gold);
}

.contact-form .button-light:hover,
.contact-form .button-light:focus-visible {
  box-shadow: 0 16px 34px rgba(194, 141, 93, 0.26);
}

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

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cream);
  outline: 3px solid rgba(245, 226, 211, 0.16);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.5em;
  color: rgba(245, 226, 211, 0.84);
  font-weight: 700;
}

.contact-form .form-status {
  color: rgba(43, 72, 88, 0.7);
}

.calendar-section {
  background: var(--pearl);
}

.calendar-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px 52px;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid rgba(43, 72, 88, 0.12);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(189, 221, 240, 0.48), rgba(245, 226, 211, 0.52));
  box-shadow: var(--shadow);
}

.calendar-card > div {
  display: grid;
  gap: 16px;
}

.calendar-card h2 {
  max-width: 720px;
}

.calendar-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.calendar-card .button {
  justify-self: end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(24px, 6vw, 118px);
  color: rgba(245, 226, 211, 0.62);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-header {
    width: 100%;
    padding-inline: 24px;
  }

  .brand {
    min-width: auto;
  }

  .site-nav {
    gap: 12px;
  }

  .brand img {
    width: min(360px, 38vw);
  }

  .site-nav .nav-cta,
  .site-nav .nav-donate {
    padding: 15px 20px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 560px;
    padding-right: clamp(42px, 9vw, 118px);
  }

  .hero-copy::after {
    display: none;
  }

  .hero-scene {
    min-height: 420px;
  }

  .hero-trust,
  .about-grid,
  .services-intro,
  .services-experience,
  .approach-card,
  .team-section,
  .counselors-heading,
  .fees-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .calendar-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .calendar-card .button {
    justify-self: start;
  }

  .hero-trust {
    width: 100%;
    margin-top: -1px;
  }

  .approach-list {
    grid-template-columns: 1fr;
  }

  .fees-image,
  .fees-copy,
  .fee-list {
    grid-column: auto;
    grid-row: auto;
  }

  .about-image,
  .about-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .services-image,
  .team-image {
    min-height: 520px;
  }

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

  .team-member-card {
    grid-template-rows: minmax(320px, 420px) 1fr;
  }

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

@media (max-width: 1040px) {
  .site-header {
    top: 0;
    min-height: 78px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(230px, 62vw);
    max-height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    width: auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a,
  .nav-link {
    width: 100%;
    padding: 12px;
    color: var(--ink);
    border-radius: 14px;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-link {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    transform: none;
  }

  .site-nav .nav-donate,
  .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
    margin-top: 6px;
    padding: 14px 16px;
  }

  .hero-stage {
    padding-top: 78px;
  }
}

@media (max-width: 760px) {
  h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .site-header {
    top: 0;
    min-height: 78px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(230px, 62vw);
    max-height: 54px;
  }

  .brand strong {
    font-size: 0.86rem;
    letter-spacing: 0.15em;
  }

  .brand small {
    font-size: 0.56rem;
    letter-spacing: 0.22em;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    width: auto;
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a,
  .nav-link {
    width: 100%;
    padding: 12px;
    color: var(--ink);
    border-radius: 14px;
  }

  .nav-dropdown {
    display: grid;
    width: 100%;
  }

  .nav-link {
    display: none;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    transform: none;
  }

  .site-nav .nav-donate,
  .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
    margin-top: 6px;
    padding: 14px 16px;
  }

  .hero-stage {
    padding-top: 78px;
  }

  .hero-copy {
    min-height: auto;
    padding: 72px 24px 42px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 18vw, 5rem);
  }

  .hero-scene-desktop {
    display: none;
  }

  .hero-scene-mobile {
    display: block;
    width: 100%;
    min-height: 260px;
    aspect-ratio: 16 / 10;
    margin: 10px 0 8px;
    border-radius: 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-features {
    display: grid;
    gap: 12px;
  }

  .hero-features span {
    padding: 0;
  }

  .hero-features span + span {
    border-left: 0;
  }

  .hero-scene-desktop {
    min-height: 340px;
  }

  .services-intro .nowrap {
    white-space: normal;
  }

  .hero-trust {
    margin-top: -1px;
    grid-template-columns: 1fr;
  }

  .hero-trust div {
    min-height: 74px;
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 226, 211, 0.18);
  }

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

  .service-panel span {
    grid-row: auto;
  }

  .services-image,
  .approach-image,
  .team-image {
    min-height: 360px;
  }

  .team-member-card {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    overflow: hidden;
    width: min(100%, 680px);
    margin-inline: auto;
    border-radius: 34px;
    background: var(--white);
    border-color: rgba(43, 72, 88, 0.12);
    box-shadow: 0 24px 70px rgba(43, 72, 88, 0.12);
  }

  .team-member-card img {
    display: block;
    width: 100%;
    height: clamp(380px, 92vw, 560px);
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center 38%;
  }

  .team-member-card div {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding: clamp(28px, 7vw, 44px);
    background: var(--white);
    color: var(--muted);
  }

  .team-member-card div > p:first-child {
    font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    line-height: 1.45;
  }

  .team-member-card h3 {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .team-member-card p {
    font-size: clamp(1.05rem, 4.6vw, 1.25rem);
    line-height: 1.42;
  }

  .about-image {
    width: 100%;
  }

  .fee-list div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}
