:root {
  --mint: #8cc8c0;
  --mint-dark: #61afa7;
  --mint-soft: #eaf6f4;
  --peach: #f39d82;
  --peach-soft: #fff0eb;
  --yellow: #f7c262;
  --yellow-soft: #fff7e3;
  --navy: #2c3e4e;
  --navy-soft: #5c6b77;
  --ink: #263642;
  --white: #ffffff;
  --paper: #fffdf9;
  --line: #dfe8e5;
  --shadow: 0 18px 48px rgba(44, 62, 78, 0.09);
  --shadow-soft: 0 10px 30px rgba(44, 62, 78, 0.07);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--mint-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.035em; }
h3 { font-size: 1.5rem; }
p { margin-top: 0; }

.section { padding: 92px 0; }
main section[id] { scroll-margin-top: var(--section-scroll-offset, 108px); }
.section--tight { padding: 64px 0; }
.section--mint { background: linear-gradient(180deg, #f5fbfa 0%, #ecf7f5 100%); }
.section--warm { background: linear-gradient(180deg, #fffdf9 0%, #fff6ef 100%); }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading p { max-width: 620px; margin-bottom: 4px; color: var(--navy-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--mint-dark);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(97, 175, 167, .24); }
.btn:focus-visible, .nav-link:focus-visible, .menu-toggle:focus-visible, .text-link:focus-visible {
  outline: 3px solid rgba(247, 194, 98, .7);
  outline-offset: 4px;
}
.btn--outline { background: transparent; color: var(--navy); border-color: #98cfc9; box-shadow: none; }
.btn--outline:hover { background: var(--mint-soft); box-shadow: none; }
.btn--peach { background: var(--peach); }
.btn--small { min-height: 42px; padding: 9px 17px; font-size: .92rem; }
.text-link { font-weight: 750; color: var(--navy); text-underline-offset: 5px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223, 232, 229, .85);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: block; width: 168px; text-decoration: none; }
.brand img { width: 100%; height: 68px; object-fit: contain; }
.site-nav { display: flex; justify-content: center; gap: 24px; }
.nav-link { position: relative; font-size: .94rem; font-weight: 700; text-decoration: none; color: #425460; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--mint-dark);
  transition: right .2s ease;
}
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--navy);
  transition: .2s ease;
}

.hero {
  position: relative;
  padding: 76px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(140,200,192,.32), transparent 30%),
    radial-gradient(circle at 65% 76%, rgba(243,157,130,.22), transparent 26%),
    linear-gradient(120deg, #fffdfa, #f8fbfa 72%, #fff6ec);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 55% 45% 60% 40%;
  transform: rotate(-24deg);
  opacity: .9;
  pointer-events: none;
}
.hero::before { width: 280px; height: 110px; right: 7%; top: 20%; background: rgba(140,200,192,.38); }
.hero::after { width: 210px; height: 88px; right: 16%; bottom: 12%; background: rgba(247,194,98,.28); transform: rotate(18deg); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 64px; align-items: center; }
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero h1 span { color: var(--peach); }
.hero-lead { max-width: 640px; margin-bottom: 28px; color: #51626e; font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-quote { margin-top: 34px; display: inline-flex; align-items: center; gap: 12px; color: var(--navy-soft); font-family: Georgia, serif; font-style: italic; }
.hero-quote::before { content: "✦"; color: var(--yellow); font-style: normal; font-size: 1.3rem; }
.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 490px;
  display: grid;
  place-items: center;
}
.hero-logo-card {
  width: min(440px, 100%);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 42px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.hero-logo-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.hero-float {
  position: absolute;
  padding: 12px 16px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--navy);
  font-size: .93rem;
  font-weight: 750;
}
.hero-float--one { left: 0; top: 17%; }
.hero-float--two { right: -18px; bottom: 12%; }
.hero-float .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; background: var(--mint); }

.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.support-card {
  position: relative;
  min-height: 248px;
  padding: 28px;
  border: 1px solid rgba(44, 62, 78, .06);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.support-card:nth-child(1) { background: #eff8f2; }
.support-card:nth-child(2) { background: #fff0ed; }
.support-card:nth-child(3) { background: #edf7fa; }
.support-card:nth-child(4) { background: #fff6e8; }
.support-number { font-size: .75rem; letter-spacing: .16em; font-weight: 850; color: var(--navy-soft); }
.support-card h3 { margin: 36px 0 12px; }
.support-card p { margin-bottom: 0; color: #5b6b76; }
.support-card::after { content: ""; position: absolute; width: 90px; height: 90px; border: 18px solid rgba(255,255,255,.55); border-radius: 50%; right: -40px; bottom: -40px; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: center; }
.about-art {
  position: relative;
  min-height: 430px;
  border-radius: 44% 56% 48% 52% / 58% 40% 60% 42%;
  background: linear-gradient(145deg, var(--mint-soft), #fff8ed);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(44,62,78,.05);
}
.about-art img { width: 75%; aspect-ratio: 1; object-fit: contain; border-radius: 34px; background: #fff; box-shadow: var(--shadow-soft); }
.about-art::before { content: ""; position: absolute; width: 180px; height: 70px; border-radius: 100%; background: rgba(243,157,130,.32); top: 38px; right: -40px; transform: rotate(-18deg); }
.about-copy p { color: #546671; }
.about-highlight { padding: 20px 22px; margin-top: 24px; border-left: 4px solid var(--yellow); background: var(--yellow-soft); border-radius: 0 16px 16px 0; color: var(--navy); font-family: Georgia, serif; font-size: 1.2rem; }

.specialists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.specialist-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 24px rgba(44,62,78,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.specialist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.specialist-media { position: relative; aspect-ratio: 4/5; background: linear-gradient(145deg, #edf8f6, #fff2ed); overflow: hidden; }
.specialist-media img { width: 100%; height: 100%; object-fit: cover; }
.specialist-media .photo-placeholder { position: absolute; inset: 0; }
.photo-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: #6f7c84;
  background:
    radial-gradient(circle at 30% 30%, rgba(140,200,192,.4), transparent 24%),
    radial-gradient(circle at 75% 70%, rgba(243,157,130,.28), transparent 24%),
    #f8fbfa;
}
.photo-placeholder strong { display: block; margin-bottom: 5px; color: var(--navy); }
.specialist-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.specialist-name { margin-bottom: 4px; font-size: 1.42rem; }
.specialist-role { margin-bottom: 14px; color: var(--mint-dark); font-weight: 800; }
.specialist-description { color: #60707a; flex: 1; }
.specialist-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { padding: 30px; border-radius: var(--radius-md); border: 1px solid rgba(44,62,78,.06); }
.audience-card:nth-child(1) { background: var(--yellow-soft); }
.audience-card:nth-child(2) { background: var(--mint-soft); }
.audience-card:nth-child(3) { background: var(--peach-soft); }
.audience-card p { margin-bottom: 0; color: #5e6d77; }

.values-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.value-item { padding: 20px 12px; text-align: center; border-radius: 18px; }
.value-icon { width: 46px; height: 46px; margin: 0 auto 12px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--mint-dark); font-weight: 900; }
.value-item strong { display: block; color: var(--navy); font-size: .94rem; line-height: 1.35; }

.contact-band { padding: 64px 0; background: linear-gradient(90deg, #edf8f6, #fff1ec); }
.contact-band-grid { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; }
.contact-band h2 { margin-bottom: 10px; }
.contact-band p { margin-bottom: 0; color: #5c6b75; }

.page-hero { padding: 78px 0 64px; background: linear-gradient(120deg, #f0f9f7, #fff8ef); }
.page-hero .container { max-width: 980px; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.6rem, 5vw, 4.5rem); }
.page-hero p { max-width: 760px; color: #586873; font-size: 1.1rem; }

.foundation-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); gap: 56px; align-items: start; }
.prose { max-width: 800px; }
.prose h2 { margin-top: 54px; margin-bottom: 22px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #4f606c; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 7px; }
.prose-signature { margin-top: 38px; padding: 24px; border-radius: 18px; background: var(--mint-soft); color: var(--navy) !important; }
.foundation-gallery { position: sticky; top: 112px; display: grid; gap: 18px; }
.media-slot { position: relative; min-height: 330px; overflow: hidden; border-radius: 30px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); }
.media-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.media-slot .photo-placeholder { position: absolute; inset: 0; z-index: 1; }

.contact-intro { max-width: 760px; margin-bottom: 36px; color: #5b6a75; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card { scroll-margin-top: 110px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 22px rgba(44,62,78,.04); }
.contact-card:target { border-color: var(--mint-dark); box-shadow: 0 0 0 4px rgba(140,200,192,.18), var(--shadow-soft); }
.contact-card-head { display: grid; grid-template-columns: 86px 1fr; gap: 18px; align-items: center; margin-bottom: 20px; }
.contact-avatar { position: relative; width: 86px; height: 86px; border-radius: 20px; overflow: hidden; background: var(--mint-soft); }
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-avatar .photo-placeholder { position: absolute; inset: 0; padding: 8px; font-size: 0; }
.contact-avatar .photo-placeholder::after { content: "✦"; color: var(--mint-dark); font-size: 1.3rem; }
.contact-card h3 { margin-bottom: 4px; }
.contact-role { color: var(--mint-dark); font-weight: 800; }
.contact-details { display: grid; gap: 10px; margin: 0; }
.contact-row { display: grid; grid-template-columns: 95px 1fr; gap: 8px; }
.contact-row dt { color: #7a8790; }
.contact-row dd { margin: 0; color: var(--navy); font-weight: 650; overflow-wrap: anywhere; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.muted-note { padding: 12px 14px; border-radius: 12px; background: #f6f8f8; color: #6d7a83; font-size: .94rem; }

.profile-shell { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 54px; align-items: start; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 30px; }
.profile-pill { padding: 7px 12px; border-radius: 999px; background: var(--mint-soft); color: var(--navy); font-weight: 750; font-size: .92rem; }
.profile-gallery { display: grid; gap: 16px; position: sticky; top: 110px; }
.profile-gallery .media-slot { min-height: 0; aspect-ratio: 4/5; }
.profile-gallery .media-slot:only-child { grid-column: 1 / -1; }
.profile-support { margin-top: 30px; padding: 24px; border-radius: 22px; background: #f8fbfa; border: 1px solid var(--line); }
.profile-support h3 { margin-bottom: 14px; }
.profile-support ul { margin-bottom: 0; padding-left: 1.2rem; }

.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-main { display: grid; grid-template-columns: 230px 1fr auto; gap: 34px; align-items: center; padding: 38px 0; }
.footer-logo { width: 190px; }
.footer-logo img { width: 100%; height: 100px; object-fit: contain; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-nav a { color: #53636e; text-decoration: none; font-size: .92rem; }
.footer-nav a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.footer-note { max-width: 280px; text-align: right; color: #74818a; font-size: .88rem; }
.footer-bottom { padding: 18px 0 24px; border-top: 1px solid #edf1f0; color: #7a868e; font-size: .84rem; text-align: center; }

@media (max-width: 1050px) {
  .header-inner { grid-template-columns: 150px 1fr auto; gap: 18px; }
  .brand { width: 145px; }
  .site-nav { gap: 16px; }
  .nav-link { font-size: .88rem; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 36px; }
  .hero-visual { min-height: 420px; }
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 74px; grid-template-columns: 145px 1fr auto; }
  .brand img { height: 60px; }
  .menu-toggle { display: block; }
  .header-actions > .btn { display: none; }
  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: 14px 4px; border-bottom: 1px solid #eef2f1; font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-link.is-active {
    text-decoration: underline;
    text-decoration-color: var(--mint-dark);
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
  }
  .hero { padding: 56px 0 66px; }
  .hero-grid, .about-grid, .foundation-layout, .profile-shell { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-visual { min-height: 0; }
  .hero-logo-card { width: min(410px, 92%); }
  .hero-float--one { left: 1%; top: 6%; }
  .hero-float--two { right: 0; bottom: 6%; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
  .foundation-gallery, .profile-gallery { position: static; grid-template-columns: repeat(2, 1fr); }
  .media-slot { min-height: 280px; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .footer-note { max-width: none; text-align: center; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2.45rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .section { padding: 58px 0; }
  .section-heading { display: block; margin-bottom: 24px; }
  .section-heading p { margin-top: 12px; }
  .hero { padding-top: 42px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-quote { margin-top: 24px; }
  .hero-logo-card { padding: 20px; border-radius: 28px; }
  .hero-float { display: none; }
  .support-grid, .specialists-grid, .values-grid, .foundation-gallery { grid-template-columns: 1fr; }
  .support-card { min-height: 220px; }
  .specialist-actions { grid-template-columns: 1fr; }
  .values-grid { gap: 4px; }
  .value-item { display: grid; grid-template-columns: 50px 1fr; text-align: left; align-items: center; gap: 12px; }
  .value-icon { margin: 0; }
  .contact-band-grid { grid-template-columns: 1fr; }
  .contact-band .btn { width: 100%; }
  .page-hero { padding: 52px 0 44px; }
  .contact-card { padding: 22px; }
  .contact-card-head { grid-template-columns: 70px 1fr; }
  .contact-avatar { width: 70px; height: 70px; }
  .contact-row { grid-template-columns: 1fr; gap: 2px; }
  .contact-actions .btn { width: 100%; }
  .media-slot { min-height: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
