:root {
  --bg: #f4efe7;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdfa;
  --line: rgba(74, 99, 93, 0.16);
  --line-strong: rgba(47, 75, 71, 0.26);
  --text: #1f2b29;
  --text-muted: #5a6865;
  --accent: #617f77;
  --accent-deep: #2f4b47;
  --accent-soft: #dbe5df;
  --accent-warm: #efe2d2;
  --accent-sage-strong: #7c9b92;
  --shadow: 0 26px 62px rgba(32, 44, 41, 0.08);
  --container: 1160px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --font-sans: Aptos, "Segoe UI Variable", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-serif: "Iowan Old Style", Baskerville, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(219, 229, 223, 0.94), transparent 35%),
    radial-gradient(circle at right 14%, rgba(97, 127, 119, 0.12), transparent 22%),
    linear-gradient(180deg, #faf6f0 0%, #f1ebe3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 84%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(97, 127, 119, 0.5);
  outline-offset: 4px;
}

.site-shell {
  position: relative;
}

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

.section {
  padding: clamp(3.25rem, 8vw, 5.4rem) 0;
}

.section + .section {
  padding-top: 0;
}

.section-card,
.contact-panel,
.page-hero__shell,
.site-footer__inner,
.site-header__inner {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.section-card,
.contact-panel,
.page-hero__shell,
.site-footer__inner,
.not-found-card {
  border-radius: var(--radius-xl);
}

.section-card,
.page-hero__shell {
  padding: clamp(1.4rem, 2vw, 1.9rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 var(--space-3);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.35rem;
  height: 1px;
  background: var(--accent);
}

.section-title,
.hero-title,
.card-title,
.page-hero__title,
.subtle-card h3,
.support-card h3,
.info-card h3,
.legal-block h2,
.contact-note h2,
.profile-copy h2,
.process-step h3 {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  color: var(--accent-deep);
}

.hero-title,
.section-title,
.page-hero__title,
.support-spotlight__copy h2 {
  line-height: 0.98;
}

.section-title {
  font-size: clamp(2rem, 3.7vw, 3.45rem);
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(2.65rem, 5vw, 4.55rem);
}

.page-hero__title {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.section-lead,
.body-copy,
.muted,
.hero__lead,
.hero__body,
.support-spotlight__copy p,
.subtle-card p,
.support-card p,
.info-card p,
.legal-block p,
.legal-block li,
.profile-copy p,
.contact-note p,
.process-step p {
  color: var(--text-muted);
  line-height: 1.78;
}

.section-lead {
  max-width: 48rem;
  margin: 1rem 0 0;
}

.section-lead--tight {
  margin-top: 0.9rem;
}

.body-copy,
.hero__body,
.support-spotlight__copy p,
.subtle-card p,
.support-card p,
.info-card p,
.legal-block p,
.profile-copy p,
.contact-note p,
.process-step p {
  margin: 0.9rem 0 0;
}

.hero__lead {
  max-width: 40rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.08rem);
}

.hero__body {
  max-width: 38rem;
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

.stack {
  display: grid;
  gap: 1rem;
}

.section-split {
  align-items: start;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: 30px;
  background: rgba(251, 248, 243, 0.88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
}

.brand::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  flex: 0 0 0.7rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-sage-strong), var(--accent));
  box-shadow: 0 0 0 6px rgba(124, 155, 146, 0.12);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__text strong {
  font-size: 1.06rem;
  font-weight: 800;
}

.brand__text small {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
  min-width: 0;
}

.nav a {
  padding: 0.8rem 1.12rem;
  border-radius: 999px;
  border: 1px solid rgba(97, 127, 119, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 239, 231, 0.92));
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent-deep);
  background: linear-gradient(180deg, rgba(239, 226, 210, 0.9), rgba(219, 229, 223, 0.96));
  border-color: rgba(97, 127, 119, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero {
  padding: clamp(2rem, 5vw, 3rem) 0 var(--space-7);
}

.hero__grid,
.editorial-split,
.contact-panel,
.legal-layout,
.profile-intro,
.support-spotlight,
.contact-page-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.hero__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 420px);
  align-items: center;
}

.hero__content {
  min-width: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

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

.button--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent-deep);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.68rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(239, 226, 210, 0.65), rgba(255, 255, 255, 0.82));
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.hero__visual,
.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 236, 228, 0.84)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero__visual {
  justify-self: end;
  width: 100%;
  max-width: 392px;
  padding: 0.85rem;
}

.hero__portrait,
.media-frame img {
  border-radius: 22px;
}

.hero__portrait {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.hero__portrait img {
  height: 100%;
  max-height: 530px;
  object-fit: cover;
  object-position: center 16%;
}

.section-header {
  max-width: 56rem;
}

.feature-grid,
.support-grid,
.contact-links,
.contact-list,
.legal-layout,
.process-strip {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  align-self: stretch;
}

.feature-grid,
.support-grid,
.legal-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-grid--home {
  margin-top: 2rem;
}

.subtle-card,
.support-card,
.info-card,
.contact-item,
.legal-block,
.process-step,
.contact-note {
  height: 100%;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.subtle-card,
.support-card,
.info-card,
.process-step {
  display: flex;
  flex-direction: column;
}

.subtle-card h3,
.support-card h3,
.info-card h3,
.contact-note h2,
.profile-copy h2,
.process-step h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.95rem);
  line-height: 1.04;
}

.list-clean {
  display: grid;
  gap: 0.85rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.list-clean li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.support-card {
  justify-content: space-between;
  min-height: 100%;
}

.mini-link,
.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.page-hero {
  padding: 2rem 0 0;
}

.page-hero__shell {
  background: rgba(255, 255, 255, 0.78);
}

.profile-intro {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 410px);
  align-items: center;
}

.media-frame {
  padding: 0.85rem;
}

.media-frame {
  justify-self: end;
  width: 100%;
  max-width: 410px;
}

.media-frame img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.editorial-split,
.support-spotlight {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 430px);
  align-items: start;
}

.context-panel,
.focus-panel {
  align-self: stretch;
}

.support-spotlight__copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  color: var(--accent-deep);
}

.support-spotlight__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.support-spotlight__tags span {
  padding: 0.65rem 0.92rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: start;
  padding: clamp(1.4rem, 2vw, 2rem);
  border-color: var(--line-strong);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.84), rgba(243, 238, 229, 0.9)),
    var(--surface-strong);
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  min-width: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 75, 71, 0.34);
  background: rgba(255, 255, 255, 0.94);
}

.contact-link span {
  font-weight: 700;
}

.contact-link--primary,
.contact-item--primary {
  border-color: rgba(47, 75, 71, 0.28);
  background:
    linear-gradient(155deg, rgba(47, 75, 71, 0.96), rgba(72, 108, 101, 0.92)),
    var(--accent-deep);
  color: white;
  box-shadow: 0 18px 32px rgba(47, 75, 71, 0.16);
}

.contact-link--primary span,
.contact-item--primary span,
.contact-link--primary small,
.contact-item--primary a {
  color: white;
}

.contact-link--secondary,
.contact-item--secondary {
  border-color: rgba(97, 127, 119, 0.28);
  background:
    linear-gradient(180deg, rgba(219, 229, 223, 0.86), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.84);
}

.contact-link small,
.contact-item a {
  overflow-wrap: anywhere;
}

.process-strip {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.35rem;
}

.process-step strong {
  display: block;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-top: 0.85rem;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: start;
}

.contact-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a {
  display: inline-block;
  margin-top: 0.55rem;
  color: var(--accent-deep);
  font-size: 1.03rem;
  font-weight: 700;
}

.contact-note {
  padding: 1.35rem;
}

.legal-block ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 1.25rem;
  padding: 1.45rem;
}

.site-footer__title {
  margin: 0;
  font-weight: 800;
}

.site-footer__copy {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--text-muted);
  line-height: 1.74;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-content: start;
}

.site-footer__links a {
  color: var(--accent-deep);
}

.not-found-card {
  max-width: 52rem;
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  }

  .feature-grid,
  .support-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .grid-two,
  .hero__grid,
  .editorial-split,
  .contact-panel,
  .legal-layout,
  .profile-intro,
  .support-spotlight,
  .contact-page-grid,
  .site-footer__inner,
  .feature-grid,
  .support-grid,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: var(--space-6);
  }

  .hero__visual,
  .media-frame {
    justify-self: center;
  }

  .hero__visual {
    max-width: min(100%, 430px);
  }

  .hero-title {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
    border-radius: 24px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav a {
    padding: 0.68rem 0.95rem;
    font-size: 0.92rem;
  }

  .section-card,
  .contact-panel,
  .page-hero__shell,
  .site-footer__inner,
  .not-found-card {
    padding: 1.25rem;
  }

  .site-footer__inner {
    gap: 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section {
    padding: 3rem 0;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9vw, 2.9rem);
  }

  .page-hero__title,
  .section-title,
  .support-spotlight__copy h2 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
  }

  .hero__lead,
  .section-lead {
    font-size: 0.98rem;
  }

  .actions,
  .pill-row {
    gap: 0.65rem;
  }

  .button,
  .pill {
    width: 100%;
  }

  .hero__visual {
    max-width: min(100%, 340px);
    padding: 0.75rem;
  }

  .subtle-card,
  .support-card,
  .info-card,
  .contact-item,
  .legal-block,
  .process-step,
  .contact-note {
    padding: 1rem;
  }
}
