:root {
  --pico-font-family: "Manrope", Arial, sans-serif;
  --pico-font-size: 106%;
  --pico-line-height: 1.75;
  --pico-border-radius: 1rem;
  --pico-border-color: rgba(23, 49, 58, 0.12);
  --pico-primary: #0f5f6b;
  --pico-primary-background: #0f5f6b;
  --pico-primary-border: #0f5f6b;
  --pico-primary-hover: #15798a;
  --pico-primary-hover-background: #15798a;
  --pico-primary-hover-border: #15798a;
  --pico-secondary: #2cb6c7;
  --pico-secondary-background: #2cb6c7;
  --pico-secondary-border: #2cb6c7;
  --pico-secondary-hover-background: #239bab;
  --pico-secondary-hover-border: #239bab;
  --surface: #ffffff;
  --surface-soft: #f8fbfa;
  --ink: #17313a;
  --muted: #62777d;
  --warm: #d7a56c;
  --line: rgba(23, 49, 58, 0.12);
  --bg: #f4f1ea;
  --hero-a: linear-gradient(135deg, #0f5f6b, #5ab8a8);
  --hero-b: linear-gradient(135deg, #17313a, #d7a56c);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(44, 182, 199, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(215, 165, 108, 0.12), transparent 22%),
    var(--bg);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p,
li,
td,
th {
  font-size: 1rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-shell {
  padding-bottom: 4rem;
}

.trust-bar {
  background: linear-gradient(90deg, #0f5f6b, #0b4e58);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(23, 49, 58, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding: 1rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 18rem;
  gap: 1rem;
  text-decoration: none;
  color: var(--ink);
}

.site-brand__mark {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 0.9rem;
  background:
    linear-gradient(#ffffff, #ffffff) center/1.6rem 0.36rem no-repeat,
    linear-gradient(#ffffff, #ffffff) center/0.36rem 1.6rem no-repeat,
    linear-gradient(135deg, #0f5f6b, #5ab8a8);
  box-shadow: 0 0.8rem 1.6rem rgba(15, 95, 107, 0.22);
}

.site-brand strong,
.site-brand small {
  display: block;
}

.site-brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding-inline: max(1rem, calc((100vw - 1120px) / 2));
  overflow: hidden;
}

.site-nav a,
.site-nav summary {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.78rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav summary:hover,
.site-nav a[aria-current="page"] {
  background: rgba(44, 182, 199, 0.12);
  color: var(--pico-primary);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 14rem;
  padding: 0.6rem;
  display: grid;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 1.2rem 2rem rgba(15, 43, 53, 0.12);
}

.nav-dropdown__menu li {
  list-style: none;
}

.nav-dropdown__menu a {
  width: 100%;
  justify-content: space-between;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.94rem;
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pico-primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-section,
.page-hero,
.pathways-section,
.editorial-section,
.news-section,
.contact-banner,
.location-band,
.split-copy,
.narrow-stack,
.directory-layout {
  margin-top: 2rem;
}

.hero-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 250, 0.92));
  box-shadow: 0 1.5rem 4rem rgba(10, 45, 54, 0.12);
}

.hero-copy__lead,
.page-hero__lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.hero-button,
.inline-link {
  color: var(--pico-primary);
  font-weight: 700;
  text-decoration: none;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat-row article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stat-row strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pico-primary);
}

.hero-stat-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 430px;
}

.hero-media__primary,
.hero-media__secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  box-shadow: 0 1rem 2.5rem rgba(16, 44, 51, 0.18);
}

.hero-media__primary {
  width: 82%;
  margin-left: auto;
}

.hero-media__secondary {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 54%;
  border: 0.55rem solid rgba(255, 255, 255, 0.86);
}

.hero-visual {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: grid;
  place-items: end start;
  padding: 1.4rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual--consult {
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.36), transparent 0 4.4rem, transparent 4.5rem),
    linear-gradient(135deg, rgba(15, 95, 107, 0.92), rgba(90, 184, 168, 0.9));
}

.hero-visual--care {
  min-height: 190px;
  background:
    linear-gradient(#ffffff, #ffffff) 72% 38%/4.2rem 0.7rem no-repeat,
    linear-gradient(#ffffff, #ffffff) 72% 38%/0.7rem 4.2rem no-repeat,
    linear-gradient(135deg, rgba(23, 49, 58, 0.95), rgba(215, 165, 108, 0.92));
}

.section-heading {
  margin-bottom: 1.4rem;
}

.category-prose {
  max-width: 920px;
}

.category-prose table {
  width: 100%;
  display: block;
  overflow-x: auto;
}

.pathways-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pathway-card,
.content-card,
.directory-card,
.accent-card,
.toc-card,
.prose-card,
.sidebar-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 1rem 2rem rgba(16, 44, 51, 0.08);
}

.pathway-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(44, 182, 199, 0.09), rgba(255, 255, 255, 0.98));
}

.pathway-card__icon {
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  padding: 0.85rem;
  margin-bottom: 1rem;
  border-radius: 1.1rem;
  background: rgba(15, 95, 107, 0.08);
  color: var(--pico-primary);
  font-weight: 800;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.editorial-note,
.accent-card {
  padding: 1.4rem;
}

.location-band {
  padding: 3rem 0;
  background:
    linear-gradient(rgba(11, 71, 81, 0.82), rgba(11, 71, 81, 0.82)),
    var(--hero-b);
  color: #f7fbfb;
}

.location-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.location-band h2,
.location-band .eyebrow {
  color: #f7fbfb;
}

.contact-banner {
  padding: 2.5rem 0;
}

.contact-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.8rem;
  color: #f8fcfb;
  background:
    linear-gradient(rgba(15, 95, 107, 0.78), rgba(15, 95, 107, 0.78)),
    var(--hero-a);
}

.page-hero {
  padding: 2.4rem 0 0.6rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.55rem;
}

.prose-layout,
.split-copy {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.5fr);
  gap: 1.5rem;
  align-items: start;
}

.split-copy__intro {
  position: sticky;
  top: 7rem;
}

.prose-card {
  padding: 1.8rem;
}

.prose-card--warm {
  background: linear-gradient(180deg, rgba(215, 165, 108, 0.09), rgba(255, 255, 255, 0.99));
}

.prose-card--minimal,
.prose-card--compact {
  max-width: 760px;
  margin: 0 auto;
}

.prose-card--article {
  max-width: none;
}

.prose-card > *:first-child {
  margin-top: 0;
}

.prose-card > *:last-child {
  margin-bottom: 0;
}

.media-figure {
  margin: 1.4rem 0;
}

.media-figure img,
.content-card__media img,
.article-main-image img {
  width: 100%;
  border-radius: 1rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.content-card,
.directory-card {
  overflow: hidden;
}

.content-card__body,
.directory-card {
  padding: 1.35rem;
}

.content-card__media {
  margin: 0;
}

.content-card--horizontal {
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.1fr);
}

.content-card--minimal {
  border-style: dashed;
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 1.4rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sidebar-panel {
  padding: 1.2rem;
  position: sticky;
  top: 7rem;
}

.sidebar-panel__scroll {
  max-height: 65vh;
  overflow: auto;
}

.sidebar-panel ul,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-panel li,
.footer-links li {
  border-top: 1px solid rgba(23, 49, 58, 0.08);
}

.sidebar-panel li:first-child,
.footer-links li:first-child {
  border-top: 0;
}

.sidebar-panel a,
.footer-links a {
  display: block;
  padding: 0.75rem 0;
  color: var(--ink);
  text-decoration: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

.article-layout--with-aside {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.36fr);
}

.toc-card {
  padding: 1.1rem 1.2rem;
  background: linear-gradient(180deg, rgba(44, 182, 199, 0.06), rgba(255, 255, 255, 0.98));
}

.toc-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
}

.toc-side {
  position: sticky;
  top: 7rem;
}

.article-main-image {
  max-width: 22rem;
  float: right;
  margin: 0 0 1rem 1rem;
}

.category-grid {
  display: grid;
  gap: 1rem;
}

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

.category-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(23, 49, 58, 0.08);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  margin: 0.75rem 0 1rem;
  font-weight: 800;
  color: var(--pico-primary);
}

.muted-copy {
  color: var(--muted);
}

.d-none {
  display: none;
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block;
  }

  .d-lg-none {
    display: none;
  }
}

@media (max-width: 991px) {
  .d-lg-none {
    display: block;
  }

  .hero-section__grid,
  .editorial-section,
  .split-copy,
  .directory-layout,
  .article-layout--with-aside,
  .site-footer__grid,
  .location-band__inner,
  .contact-banner__inner,
  .content-card--horizontal {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media__secondary {
    position: relative;
    bottom: auto;
    width: 62%;
    margin-top: -2.2rem;
  }

  .split-copy__intro,
  .sidebar-panel,
  .toc-side {
    position: static;
  }
}

@media (max-width: 767px) {
  .trust-bar__inner,
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .pathways-grid,
  .news-grid,
  .directory-grid,
  .category-grid-2,
  .category-grid-3,
  .gallery-grid,
  .hero-stat-row {
    grid-template-columns: 1fr;
  }

  .hero-section__grid,
  .contact-banner__inner {
    padding: 1.5rem;
  }

  .article-main-image {
    float: none;
    max-width: none;
    margin: 0 0 1rem;
  }
}

@media print {
  .trust-bar,
  .site-header,
  .site-footer,
  .hero-actions,
  .support-actions,
  .toc-side,
  .sidebar-panel {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .prose-card,
  .content-card,
  .directory-card {
    box-shadow: none;
    border-color: #ddd;
  }
}
