:root {
  color-scheme: light;

  /* Core light-mode brand system */
  --forest: #29452F;
  --forest-deep: #1D3324;
  --forest-soft: #3B5D43;
  --sage: #8D9D78;
  --sage-light: #B7C2A4;
  --tan: #D8B77F;
  --gold: #C99F5E;
  --gold-deep: #A97F42;
  --cream: #F9E8C0;
  --cream-soft: #FBF2DF;
  --cream-deep: #F1DFBC;
  --paper: #FBF5E9;
  --paper-soft: #F4E8D1;
  --paper-raised: #FFFCF6;
  --ink: #203126;
  --muted: #667267;
  --line: rgba(41, 69, 47, 0.12);
  --line-strong: rgba(41, 69, 47, 0.24);
  --shadow: 0 26px 70px rgba(29, 51, 36, 0.10);
  --shadow-soft: 0 14px 36px rgba(29, 51, 36, 0.06);
  --max: 1320px;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --transition: 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #132218;
  --paper-soft: #1A2D20;
  --paper-raised: #1F3425;
  --ink: #F5EAD2;
  --muted: #B3BFB5;
  --line: rgba(245, 234, 210, 0.10);
  --line-strong: rgba(245, 234, 210, 0.24);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 14px 36px rgba(0, 0, 0, 0.22);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 2%, rgba(216, 183, 127, .18), transparent 27rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color var(--transition), color var(--transition);
}
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition); }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition); }

.skip-link {
  position: fixed;
  left: 2rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1.5rem;
  background: var(--forest);
  color: var(--cream);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
}
.skip-link:focus { top: 1.25rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold), var(--forest));
  opacity: .9;
}
.header-inner {
  width: min(var(--max), calc(100% - 4rem));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--line-strong);
  padding: 3px;
}
.brand:hover img { transform: rotate(5deg) scale(1.03); }
.brand-text { display: grid; line-height: 1.02; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -.015em;
}
html[data-theme="dark"] .brand-name { color: var(--cream); }
.brand-sub {
  margin-top: .24rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; justify-content: center; gap: 2rem; align-items: center; }
.desktop-nav a {
  position: relative;
  color: var(--forest);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .78;
}
html[data-theme="dark"] .desktop-nav a { color: var(--cream); }
.desktop-nav a:hover { opacity: 1; color: var(--gold-deep); }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.55rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform var(--transition);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; gap: .6rem; align-items: center; }
.icon-button, .menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: color-mix(in srgb, var(--paper-raised) 82%, transparent);
  color: var(--forest);
  border-radius: 50%;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: .77rem;
  font-weight: 800;
}
html[data-theme="dark"] .icon-button,
html[data-theme="dark"] .menu-button { color: var(--cream); }
.icon-button:hover, .menu-button:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); transform: translateY(-2px); }
.menu-button { display: none; }

/* Editorial hero: cream-first light mode */
.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 9vw, 8rem) clamp(2rem, 6vw, 6rem) clamp(5rem, 9vw, 8rem) max(2rem, calc((100vw - var(--max)) / 2 + 2rem));
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 183, 127, .22), transparent 23rem),
    linear-gradient(135deg, var(--cream-soft), var(--paper));
}
.hero-copy::after {
  content: "";
  position: absolute;
  width: 23rem;
  aspect-ratio: 1;
  right: -9rem;
  bottom: -10rem;
  border: 1px solid rgba(41, 69, 47, .09);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(41,69,47,.025), 0 0 0 6rem rgba(41,69,47,.018);
  z-index: -1;
}
.eyebrow {
  display: flex;
  gap: .85rem;
  align-items: center;
  color: var(--gold-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.05; }
h1 {
  max-width: 780px;
  margin-top: 1.35rem;
  color: var(--forest);
  font-size: clamp(4rem, 7vw, 6.7rem);
  letter-spacing: -.045em;
}
html[data-theme="dark"] h1 { color: var(--cream); }
.hero-copy p {
  max-width: 44rem;
  margin: 1.8rem 0 0;
  color: color-mix(in srgb, var(--ink) 76%, transparent);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  font-weight: 400;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2.65rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.65rem;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.button-primary { background: var(--forest); color: var(--cream); }
.button-primary:hover { background: var(--forest-deep); transform: translateY(-3px); box-shadow: 0 13px 30px rgba(29,51,36,.17); }
.button-secondary { border-color: var(--line-strong); color: var(--forest); background: rgba(255,255,255,.22); }
.button-secondary:hover { border-color: var(--forest); background: var(--paper-raised); transform: translateY(-3px); }
html[data-theme="dark"] .button-secondary { color: var(--cream); border-color: rgba(249,232,192,.3); background: transparent; }
.hero-notes { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 3rem; color: var(--muted); font-size: .75rem; letter-spacing: .06em; }
.hero-notes span { display: inline-flex; gap: .55rem; align-items: center; }
.hero-notes span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: clamp(2rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 50% 46%, rgba(141,157,120,.25), transparent 18rem),
    linear-gradient(150deg, var(--forest), var(--forest-deep));
  overflow: hidden;
}
.hero-headshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
linear-gradient(
  180deg,
  rgba(29, 51, 36, 0.02) 0%,
  rgba(29, 51, 36, 0.10) 55%,
  rgba(29, 51, 36, 0.32) 100%
);
  pointer-events: none;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 1.4rem;
  z-index: 1;
  border: 1px solid rgba(249,232,192,.16);
  pointer-events: none;
}
.hero-card {
  position: absolute;
  right: clamp(1.8rem, 6vw, 4rem);
  bottom: clamp(1.8rem, 6vw, 4rem);
  z-index: 2;
  width: min(78%, 390px);
  padding: 1.45rem 1.55rem;
  background: rgba(29,51,36,.76);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(249,232,192,.18);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.hero-card strong { display: block; color: var(--cream); font-family: var(--serif); font-size: 1.65rem; font-weight: 600; line-height: 1; }
.hero-card span { display: block; margin-top: .65rem; color: rgba(249,232,192,.76); font-size: .76rem; line-height: 1.6; letter-spacing: .03em; }

/* Sections */
.section { padding: clamp(6rem, 11vw, 9.5rem) 2rem; }
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.section-kicker { color: var(--gold-deep); font-size: .68rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.section-heading { margin-top: .8rem; color: var(--forest); font-size: clamp(2.8rem, 5vw, 4.8rem); letter-spacing: -.035em; }
html[data-theme="dark"] .section-heading { color: var(--cream); }
.section-intro { max-width: 54rem; margin: 1.45rem 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.82; }

/* About */
.intro-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.intro-quote {
  margin: 2rem 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 1px solid var(--gold);
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.2;
  font-style: italic;
}
html[data-theme="dark"] .intro-quote { color: var(--cream); }
.intro-body { padding-top: 4rem; }
.intro-body p { color: var(--muted); font-size: 1.04rem; line-height: 1.85; margin: 0 0 1.5rem; }
.text-link { display: inline-flex; gap: .7rem; align-items: center; color: var(--forest); font-size: .68rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
html[data-theme="dark"] .text-link { color: var(--tan); }
.text-link:hover { color: var(--gold-deep); transform: translateX(5px); }

/* Services */
.services { background: color-mix(in srgb, var(--cream-deep) 46%, var(--paper)); border-block: 1px solid var(--line); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.service-card {
  min-height: 310px;
  padding: 2.35rem 2rem;
  background: color-mix(in srgb, var(--paper-raised) 95%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(201,159,94,.7); }
.service-number { color: var(--gold-deep); font-family: var(--serif); font-size: 1.45rem; font-style: italic; }
.service-card h3 { margin-top: 2.4rem; color: var(--forest); font-size: 2.05rem; letter-spacing: -.02em; }
html[data-theme="dark"] .service-card h3 { color: var(--cream); }
.service-card p { color: var(--muted); margin: 1rem 0 0; font-size: .92rem; line-height: 1.85; }

/* Approach */
.approach-layout { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.brand-art {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(circle, rgba(216,183,127,.28), rgba(249,232,192,.18) 47%, transparent 48%),
    var(--paper-soft);
  border: 1px solid var(--line);
}
.brand-art::after { content: ""; position: absolute; inset: 1rem; border: 1px solid rgba(41,69,47,.10); }
.brand-art img { position: relative; z-index: 1; width: 92%; height: 92%; object-fit: contain; opacity: .96; }
.approach-list { display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.approach-item { display: grid; grid-template-columns: 10rem 1fr; gap: 1.5rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.approach-item strong { color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
html[data-theme="dark"] .approach-item strong { color: var(--tan); }
.approach-item span { color: var(--muted); font-size: .95rem; }

/* Focus */
.focus { position: relative; overflow: hidden; background: var(--forest); color: var(--cream); }
.focus::after { content: ""; position: absolute; right: -12rem; bottom: -14rem; width: 38rem; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(249,232,192,.07); box-shadow: 0 0 0 5rem rgba(249,232,192,.018), 0 0 0 10rem rgba(249,232,192,.012); }
.focus .section-inner { position: relative; z-index: 1; }
.focus .section-kicker { color: var(--tan); }
.focus .section-heading { color: var(--cream); }
.focus .section-intro { color: rgba(249,232,192,.74); }
.focus-list { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2.6rem; }
.focus-list span { padding: .64rem 1rem; border: 1px solid rgba(249,232,192,.18); background: rgba(250,250,250,.018); color: rgba(249,232,192,.92); font-size: .82rem; letter-spacing: .02em; }

/* Details */
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.detail { padding: 2rem 1.9rem; background: color-mix(in srgb, var(--paper-raised) 95%, transparent); border: 1px solid var(--line); }
.detail h3 { color: var(--forest); font-size: 1.65rem; letter-spacing: -.015em; margin: 0 0 .7rem; }
html[data-theme="dark"] .detail h3 { color: var(--cream); }
.detail p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.8; }

/* Footer */
footer { background: var(--forest-deep); color: rgba(249,232,192,.68); border-top: 1px solid rgba(249,232,192,.07); }
.footer-inner { width: min(var(--max), calc(100% - 4rem)); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .9fr .9fr; gap: 4rem; padding: 5rem 0; }
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-brand img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; background: rgba(250,250,250,.045); padding: 5px; }
.footer-brand strong { display: block; color: var(--cream); font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.footer-brand span { color: rgba(249,232,192,.52); font-size: .62rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.footer-title { color: var(--tan); font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer-copy, .footer-links { margin-top: 1rem; font-size: .88rem; line-height: 1.9; }
.footer-links { display: grid; gap: .25rem; }
.footer-links a { opacity: .82; }
.footer-links a:hover { opacity: 1; color: var(--tan); }
.footer-bottom { border-top: 1px solid rgba(249,232,192,.07); padding: 1.5rem 1rem; text-align: center; color: rgba(249,232,192,.42); font-size: .68rem; letter-spacing: .06em; }

/* Mobile */
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--paper-raised); }
.mobile-nav[data-open="true"] { display: grid; }
.mobile-nav a { padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

/* Reveal motion */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 800ms cubic-bezier(.16,1,.3,1), transform 800ms cubic-bezier(.16,1,.3,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 1.25rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 560px; }
  .intro-grid, .approach-layout, .contact .section-inner { grid-template-columns: 1fr; gap: 3rem; }
  .intro-body { padding-top: 0; }
  .contact-actions { justify-self: start; }
}
@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-grid; }
  .header-inner { width: min(var(--max), calc(100% - 2rem)); min-height: 78px; gap: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .brand img { width: 42px; height: 42px; }
  .brand-name { font-size: 1.28rem; }
  .brand-sub { display: none; }
  .icon-button, .menu-button { width: 38px; height: 38px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-copy { padding: 4.5rem 1.25rem; }
  .hero-art { min-height: 400px; padding: 1.25rem; }
  .hero-art::after { inset: .75rem; }
  .hero-card { right: 1.3rem; bottom: 1.3rem; width: calc(100% - 2.6rem); }
  .section { padding: 4.8rem 1.25rem; }
  .details-grid { grid-template-columns: 1fr; }
  .approach-item { grid-template-columns: 1fr; gap: .25rem; }
  .contact { padding: 4.8rem 1.25rem; }
  .footer-inner { width: calc(100% - 2.5rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}


/* Homepage polish pass: texture, depth, and stronger reveal motion */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.58'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}
html[data-theme="dark"] body::before {
  opacity: .065;
  mix-blend-mode: soft-light;
}

.hero-copy {
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(216, 183, 127, .28), transparent 22rem),
    radial-gradient(circle at 86% 82%, rgba(141, 157, 120, .20), transparent 26rem),
    linear-gradient(135deg, var(--cream-soft), var(--paper));
}
.hero-copy > * {
  position: relative;
  z-index: 2;
}
.hero-copy::before {
  content: "";
  position: absolute;
  left: -10rem;
  top: 50%;
  z-index: 1;
  width: min(48vw, 43rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("../img/the-oaks-compact-mark-transparent.png") center / contain no-repeat;
  opacity: .065;
  pointer-events: none;
}
.hero-copy::after { z-index: 1; }
html[data-theme="dark"] .hero-copy::before {
  opacity: .11;
  filter: brightness(1.9) saturate(.7);
}

.hero-card {
  width: min(86%, 500px);
  padding: 1.8rem 2rem;
  background: rgba(29, 51, 36, .80);
  border-color: rgba(249, 232, 192, .28);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .23);
}
.hero-card strong { font-size: 1.95rem; }
.hero-card span { margin-top: .75rem; font-size: .82rem; }

.services {
  background:
    radial-gradient(circle at 90% 6%, rgba(201, 159, 94, .14), transparent 24rem),
    radial-gradient(circle at 8% 96%, rgba(141, 157, 120, .13), transparent 23rem),
    linear-gradient(145deg, color-mix(in srgb, var(--cream-deep) 54%, var(--paper)), var(--paper));
}
.practice-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid rgba(169, 127, 66, .28);
  background: rgba(169, 127, 66, .22);
  box-shadow: var(--shadow-soft);
}
.practice-highlight {
  min-height: 150px;
  padding: 1.45rem 1.55rem;
  background: color-mix(in srgb, var(--paper-raised) 92%, transparent);
}
.practice-highlight-label {
  color: var(--gold-deep);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.practice-highlight p {
  margin: .7rem 0 0;
  color: var(--ink);
  font-size: .94rem;
  line-height: 1.7;
}

#approach {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 24%, rgba(201, 159, 94, .14), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(141, 157, 120, .11), transparent 28rem),
    linear-gradient(145deg, #13291C, var(--forest-deep));
  color: var(--cream);
  border-block: 1px solid rgba(249, 232, 192, .09);
}
#approach .section-kicker { color: var(--gold); }
#approach .section-heading { color: var(--cream); }
#approach .section-intro,
#approach .approach-item span { color: rgba(249, 232, 192, .72); }
#approach .approach-list,
#approach .approach-item { border-color: rgba(249, 232, 192, .13); }
#approach .approach-item strong { color: var(--tan); }

.brand-art {
  background:
    radial-gradient(circle, rgba(201, 159, 94, .17), rgba(201, 159, 94, .055) 49%, transparent 50%),
    linear-gradient(145deg, rgba(29, 51, 36, .86), rgba(19, 41, 28, .94));
  border-color: rgba(201, 159, 94, .76);
  box-shadow:
    inset 0 0 0 1rem rgba(201, 159, 94, .028),
    0 24px 54px rgba(0, 0, 0, .18);
}
.brand-art::after { border-color: rgba(201, 159, 94, .34); }
.brand-art img { opacity: .98; }

.focus {
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 183, 127, .12), transparent 27rem),
    radial-gradient(circle at 8% 92%, rgba(141, 157, 120, .13), transparent 26rem),
    linear-gradient(145deg, var(--forest-soft), var(--forest));
}
.contact {
  background:
    radial-gradient(circle at 82% 22%, rgba(201, 159, 94, .20), transparent 21rem),
    radial-gradient(circle at 7% 92%, rgba(141, 157, 120, .14), transparent 22rem),
    linear-gradient(145deg, var(--cream-deep), var(--cream-soft));
}

[data-reveal] {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(4px);
  transition:
    opacity 950ms cubic-bezier(.16, 1, .3, 1),
    transform 950ms cubic-bezier(.16, 1, .3, 1),
    filter 950ms cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform, filter;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.section-heading[data-reveal] { transition-delay: 80ms; }
.section-intro[data-reveal] { transition-delay: 150ms; }
.practice-highlights[data-reveal],
.focus-list[data-reveal],
.details-grid[data-reveal],
.contact-actions[data-reveal] { transition-delay: 210ms; }
.service-card:nth-child(2)[data-reveal] { transition-delay: 100ms; }
.service-card:nth-child(3)[data-reveal] { transition-delay: 200ms; }

@media (max-width: 900px) {
  .practice-highlights { grid-template-columns: 1fr; }
  .practice-highlight { min-height: 0; }
}
@media (max-width: 640px) {
  .hero-copy::before {
    left: -9rem;
    width: 30rem;
    opacity: .05;
  }
  .hero-card { padding: 1.45rem 1.5rem; }
  .hero-card strong { font-size: 1.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { filter: none; }
}


/* Homepage polish tuning pass: stronger texture, hero mark, and circular approach art */
body::before {
  opacity: .095;
  background-size: 145px 145px;
}
html[data-theme="dark"] body::before { opacity: .12; }

.hero-copy {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .034) 0 1px, transparent 1px 15px),
    radial-gradient(circle at 13% 18%, rgba(216, 183, 127, .30), transparent 22rem),
    radial-gradient(circle at 86% 82%, rgba(141, 157, 120, .22), transparent 26rem),
    linear-gradient(135deg, var(--cream-soft), var(--paper));
}
.hero-copy::before {
  left: -19rem;
  top: 53%;
  width: min(67vw, 60rem);
  opacity: .135;
}
.hero .eyebrow {
  font-size: clamp(.79rem, .9vw, .92rem);
  letter-spacing: .2em;
}
.hero .eyebrow::before { width: 2.75rem; }

.services {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .026) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 90% 6%, rgba(201, 159, 94, .16), transparent 24rem),
    radial-gradient(circle at 8% 96%, rgba(141, 157, 120, .15), transparent 23rem),
    linear-gradient(145deg, color-mix(in srgb, var(--cream-deep) 58%, var(--paper)), var(--paper));
}

#about,
#details {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .022) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 90% 8%, rgba(216, 183, 127, .10), transparent 26rem),
    var(--paper);
}

#approach {
  background:
    repeating-linear-gradient(112deg, rgba(249, 232, 192, .032) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 13% 24%, rgba(201, 159, 94, .17), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(141, 157, 120, .13), transparent 28rem),
    linear-gradient(145deg, #13291C, var(--forest-deep));
}
.brand-art {
  width: min(100%, 35rem);
  justify-self: center;
  padding: clamp(1rem, 2.4vw, 1.8rem);
  background: transparent;
  border: 0;
  box-shadow: none;
}
.brand-art::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201, 159, 94, .72);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(201, 159, 94, .12), rgba(201, 159, 94, .045) 56%, transparent 57%);
  box-shadow:
    0 0 0 1.05rem rgba(201, 159, 94, .035),
    0 0 0 1px rgba(201, 159, 94, .18),
    inset 0 0 46px rgba(201, 159, 94, .055),
    0 22px 54px rgba(0, 0, 0, .14);
  pointer-events: none;
}
.brand-art::after { content: none; }
.brand-art img {
  width: 92%;
  height: 92%;
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .16));
}

.focus {
  background:
    repeating-linear-gradient(112deg, rgba(249, 232, 192, .026) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 90% 10%, rgba(216, 183, 127, .15), transparent 27rem),
    radial-gradient(circle at 8% 92%, rgba(141, 157, 120, .16), transparent 26rem),
    linear-gradient(145deg, var(--forest-soft), var(--forest));
}
.contact {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .025) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 82% 22%, rgba(201, 159, 94, .23), transparent 21rem),
    radial-gradient(circle at 7% 92%, rgba(141, 157, 120, .16), transparent 22rem),
    linear-gradient(145deg, var(--cream-deep), var(--cream-soft));
}

@media (max-width: 900px) {
  .hero-copy::before {
    left: -15rem;
    width: min(92vw, 48rem);
    opacity: .11;
  }
  .brand-art { width: min(100%, 30rem); }
}
@media (max-width: 640px) {
  .hero-copy::before {
    left: -13rem;
    width: 38rem;
    opacity: .085;
  }
  .hero .eyebrow { font-size: .72rem; }
  .brand-art img { transform: scale(1.06); }
}


/* Homepage polish correction: light-mode approach and focus sections */
#approach {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .024) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 13% 24%, rgba(201, 159, 94, .18), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(141, 157, 120, .14), transparent 28rem),
    linear-gradient(145deg, var(--cream-soft), var(--paper));
  color: var(--ink);
  border-block: 1px solid var(--line);
}
#approach .section-kicker { color: var(--gold-deep); }
#approach .section-heading { color: var(--forest-deep); }
#approach .section-intro,
#approach .approach-item span { color: var(--muted); }
#approach .approach-list,
#approach .approach-item { border-color: var(--line); }
#approach .approach-item strong { color: var(--gold-deep); }

.brand-art::before {
  border-color: rgba(201, 159, 94, .78);
  background:
    radial-gradient(circle, rgba(29, 51, 36, .98) 0 62%, rgba(29, 51, 36, .93) 63%, transparent 64%);
  box-shadow:
    0 0 0 1.05rem rgba(201, 159, 94, .045),
    0 0 0 1px rgba(201, 159, 94, .22),
    inset 0 0 46px rgba(201, 159, 94, .08),
    0 22px 54px rgba(29, 51, 36, .13);
}

.focus {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .026) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 90% 10%, rgba(216, 183, 127, .18), transparent 27rem),
    radial-gradient(circle at 8% 92%, rgba(141, 157, 120, .18), transparent 26rem),
    linear-gradient(145deg, color-mix(in srgb, var(--sage-light) 42%, var(--cream-soft)), var(--cream-deep));
  color: var(--ink);
  border-block: 1px solid var(--line);
}
.focus::after {
  border-color: rgba(41, 69, 47, .08);
  box-shadow: 0 0 0 5rem rgba(41, 69, 47, .018), 0 0 0 10rem rgba(41, 69, 47, .012);
}
.focus .section-kicker { color: var(--gold-deep); }
.focus .section-heading { color: var(--forest-deep); }
.focus .section-intro { color: var(--muted); }
.focus-list span {
  border-color: rgba(41, 69, 47, .20);
  background: rgba(255, 252, 246, .42);
  color: var(--forest-deep);
}

html[data-theme="dark"] #approach {
  background:
    repeating-linear-gradient(112deg, rgba(249, 232, 192, .032) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 13% 24%, rgba(201, 159, 94, .17), transparent 24rem),
    radial-gradient(circle at 92% 88%, rgba(141, 157, 120, .13), transparent 28rem),
    linear-gradient(145deg, #13291C, var(--forest-deep));
  color: var(--cream);
  border-block-color: rgba(249, 232, 192, .09);
}
html[data-theme="dark"] #approach .section-kicker { color: var(--gold); }
html[data-theme="dark"] #approach .section-heading { color: var(--cream); }
html[data-theme="dark"] #approach .section-intro,
html[data-theme="dark"] #approach .approach-item span { color: rgba(249, 232, 192, .72); }
html[data-theme="dark"] #approach .approach-list,
html[data-theme="dark"] #approach .approach-item { border-color: rgba(249, 232, 192, .13); }
html[data-theme="dark"] #approach .approach-item strong { color: var(--tan); }
html[data-theme="dark"] .brand-art::before {
  border-color: rgba(201, 159, 94, .72);
  background:
    radial-gradient(circle, rgba(201, 159, 94, .12), rgba(201, 159, 94, .045) 56%, transparent 57%);
  box-shadow:
    0 0 0 1.05rem rgba(201, 159, 94, .035),
    0 0 0 1px rgba(201, 159, 94, .18),
    inset 0 0 46px rgba(201, 159, 94, .055),
    0 22px 54px rgba(0, 0, 0, .14);
}

html[data-theme="dark"] .focus {
  background:
    repeating-linear-gradient(112deg, rgba(249, 232, 192, .026) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 90% 10%, rgba(216, 183, 127, .15), transparent 27rem),
    radial-gradient(circle at 8% 92%, rgba(141, 157, 120, .16), transparent 26rem),
    linear-gradient(145deg, var(--forest-soft), var(--forest));
  color: var(--cream);
  border-block-color: rgba(249, 232, 192, .09);
}
html[data-theme="dark"] .focus::after {
  border-color: rgba(249, 232, 192, .07);
  box-shadow: 0 0 0 5rem rgba(249, 232, 192, .018), 0 0 0 10rem rgba(249, 232, 192, .012);
}
html[data-theme="dark"] .focus .section-kicker { color: var(--tan); }
html[data-theme="dark"] .focus .section-heading { color: var(--cream); }
html[data-theme="dark"] .focus .section-intro { color: rgba(249, 232, 192, .74); }
html[data-theme="dark"] .focus-list span {
  border-color: rgba(249, 232, 192, .18);
  background: rgba(250, 250, 250, .018);
  color: rgba(249, 232, 192, .92);
}

/* Consultation CTA and prominent affirmation band */
.affirmation-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.8rem, 8vw, 7.5rem) 2rem;
  color: var(--cream-soft);
  background:
    radial-gradient(circle at 12% 24%, rgba(216, 183, 127, .24), transparent 26rem),
    radial-gradient(circle at 82% 72%, rgba(141, 157, 120, .16), transparent 27rem),
    repeating-linear-gradient(118deg, rgba(249, 232, 192, .025) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, var(--forest), var(--forest-deep));
  border-block: 1px solid rgba(249, 232, 192, .16);
}
.affirmation-band::before {
  content: "";
  position: absolute;
  right: clamp(-8rem, -5vw, -3rem);
  top: 50%;
  width: clamp(18rem, 32vw, 32rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  background: url("../img/the-oaks-compact-mark-gold.png") center / contain no-repeat;
  opacity: .11;
  pointer-events: none;
  z-index: -1;
}
.affirmation-band::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(249, 232, 192, .12);
  pointer-events: none;
}
.affirmation-inner {
  position: relative;
  z-index: 1;
}
.affirmation-band .section-kicker {
  color: var(--tan);
}
.affirmation-band h2 {
  max-width: 68rem;
  margin-top: .85rem;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}
.affirmation-band p {
  max-width: 48rem;
  margin: 1.5rem 0 0;
  color: rgba(249, 232, 192, .78);
  font-size: 1.04rem;
  line-height: 1.85;
}
.quiet-link,
.footer-cta,
.footer-profile-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.quiet-link:hover,
.footer-cta:hover,
.footer-profile-link:hover {
  transform: translateX(5px);
}
.footer-cta {
  margin-top: 1rem;
  color: var(--tan);
}
.footer-profile-link {
  margin-top: .55rem;
  color: rgba(249, 232, 192, .56);
}
.footer-profile-link:hover {
  color: var(--tan);
}

@media (max-width: 640px) {
  .affirmation-band {
    padding: 4.8rem 1.25rem;
  }
  .affirmation-band::after {
    inset: .75rem;
  }
  .affirmation-band::before {
    right: -7rem;
    width: 20rem;
  }
}


/* Final homepage cleanup: remove redundant contact band and invert approach medallion in dark mode */
.brand-art-mark-dark {
  display: none;
}

html[data-theme="dark"] .brand-art-mark-light {
  display: none;
}

html[data-theme="dark"] .brand-art-mark-dark {
  display: block;
}

html[data-theme="dark"] .brand-art::before {
  border-color: rgba(169, 127, 66, .88);
  background:
    radial-gradient(
      circle,
      rgba(216, 183, 127, .96) 0 62%,
      rgba(201, 159, 94, .92) 63%,
      transparent 64%
    );
  box-shadow:
    0 0 0 1.05rem rgba(201, 159, 94, .05),
    0 0 0 1px rgba(169, 127, 66, .34),
    inset 0 0 46px rgba(29, 51, 36, .08),
    0 22px 54px rgba(0, 0, 0, .18);
}


/* Progress Pride ribbon accent */
.affirmation-flag {
  position: absolute;
  right: clamp(2.25rem, 5vw, 5.5rem);
  top: clamp(2.2rem, 4vw, 4rem);
  z-index: 2;
  width: clamp(9.5rem, 14vw, 11.75rem);
  padding: .38rem;
  background: rgba(249, 232, 192, .10);
  border: 1px solid rgba(216, 183, 127, .72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
  backdrop-filter: blur(8px);
}

.affirmation-flag::after {
  content: "";
  position: absolute;
  inset: .38rem;
  border: 1px solid rgba(255, 252, 246, .16);
  pointer-events: none;
}

.affirmation-flag img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .affirmation-band h2 {
    max-width: 58rem;
  }

  .affirmation-flag {
    right: 2rem;
    top: 2rem;
    width: 9.25rem;
  }
}

@media (max-width: 760px) {
  .affirmation-flag {
    position: relative;
    right: auto;
    top: auto;
    width: 9rem;
    margin-top: 1.5rem;
  }
}


/* Integrated Progress Pride artwork */
.affirmation-band::before {
  background: none;
  opacity: 0;
}

.affirmation-inner {
  padding-right: clamp(17rem, 23vw, 24rem);
}

.affirmation-flag {
  position: absolute;
  right: clamp(2rem, 4.5vw, 5rem);
  top: 50%;
  z-index: 2;
  width: clamp(14rem, 19vw, 20rem);
  margin: 0;
  padding: 0;
  overflow: hidden;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(216, 183, 127, .66);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
  backdrop-filter: none;
}

.affirmation-flag::after {
  display: none;
}

.affirmation-flag img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.88) brightness(.94);
}

@media (max-width: 1120px) {
  .affirmation-inner {
    padding-right: 14rem;
  }

  .affirmation-flag {
    right: 2rem;
    width: 12rem;
  }
}

@media (max-width: 760px) {
  .affirmation-inner {
    padding-right: 0;
  }

  .affirmation-flag {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 15rem);
    margin-top: 1.75rem;
    transform: none;
  }
}


/* Affirmation grid separation refinement */
.affirmation-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(15rem, 18vw, 19rem);
  column-gap: clamp(4rem, 7vw, 8rem);
  align-items: center;
  padding-right: 0;
}

.affirmation-band .section-kicker,
.affirmation-band h2,
.affirmation-band p {
  grid-column: 1;
}

.affirmation-band h2 {
  max-width: 54rem;
}

.affirmation-band p {
  max-width: 44rem;
}

.affirmation-flag {
  position: relative;
  right: auto;
  top: auto;
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 19rem;
  margin: 0;
  transform: none;
}

@media (max-width: 1120px) {
  .affirmation-inner {
    grid-template-columns: minmax(0, 1fr) 13rem;
    column-gap: 3rem;
    padding-right: 0;
  }

  .affirmation-flag {
    right: auto;
    width: 100%;
    max-width: 13rem;
  }
}

@media (max-width: 760px) {
  .affirmation-inner {
    display: block;
    padding-right: 0;
  }

  .affirmation-flag {
    width: min(100%, 15rem);
    max-width: none;
    margin-top: 1.75rem;
  }
}


/* Practical details card enhancements */
.detail {
  min-height: 13.6rem;
}

.detail-location {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(14rem, 1.26fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.detail-location-copy {
  padding: 2rem 0 2rem 1.9rem;
}

.detail-map {
  min-height: 13.6rem;
  border-left: 1px solid var(--line);
  background: var(--paper-soft);
}

.detail-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 13.6rem;
  border: 0;
  filter: saturate(.78) contrast(.94);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.2rem;
}

.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: .72rem .92rem;
  border: 1px solid transparent;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.detail-button-primary {
  color: var(--cream);
  background: var(--forest);
  border-color: var(--forest);
}

.detail-button-primary:hover {
  color: var(--cream);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
}

.detail-button-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, .22);
  border-color: var(--line-strong);
}

.detail-button-secondary:hover {
  color: var(--forest-deep);
  background: var(--paper-raised);
  border-color: var(--forest);
  transform: translateY(-2px);
}

html[data-theme="dark"] .detail-button-secondary {
  color: var(--cream);
  background: rgba(255, 255, 255, .025);
  border-color: rgba(249, 232, 192, .28);
}

html[data-theme="dark"] .detail-button-secondary:hover {
  color: var(--cream);
  background: rgba(249, 232, 192, .08);
  border-color: rgba(249, 232, 192, .5);
}

@media (max-width: 760px) {
  .detail-location {
    grid-template-columns: 1fr;
  }

  .detail-location-copy {
    padding: 2rem 1.9rem 1.4rem;
  }

  .detail-map {
    min-height: 13rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-map iframe {
    min-height: 13rem;
  }

  .detail-actions {
    display: grid;
  }

  .detail-button {
    width: 100%;
  }
}


/* Mobile-first modernization pass */
@media (max-width: 760px) {
  body {
    font-size: 15px;
    line-height: 1.64;
  }

  /* Compact mobile header */
  .header-inner {
    width: calc(100% - 1rem);
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .5rem;
  }

  .brand {
    min-width: 0;
    gap: .55rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
    padding: 2px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-name {
    overflow: hidden;
    font-size: 1.18rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-sub {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: .3rem;
  }

  .icon-button,
  .menu-button {
    width: 34px;
    height: 34px;
    font-size: .66rem;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: .5rem;
    left: .5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .mobile-nav a {
    padding: .9rem .8rem;
    font-size: .62rem;
    text-align: center;
  }

  .mobile-nav a:last-child {
    grid-column: 1 / -1;
  }

  /* Hero: compact CTA hierarchy and deliberate portrait crop */
  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 3.15rem 1rem 2.15rem;
  }

  .hero-copy::before {
    left: -11rem;
    width: 31rem;
    opacity: .075;
  }

  .hero .eyebrow {
    gap: .55rem;
    font-size: .59rem;
    letter-spacing: .16em;
  }

  .hero .eyebrow::before {
    width: 1.35rem;
  }

  h1 {
    max-width: 22rem;
    margin-top: .9rem;
    font-size: clamp(3.15rem, 14vw, 4.5rem);
    line-height: .96;
  }

  .hero-copy p {
    margin-top: 1.15rem;
    font-size: .94rem;
    line-height: 1.7;
  }

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

  .hero-actions .button {
    min-height: 42px;
    padding: .65rem .35rem;
    font-size: .53rem;
    letter-spacing: .095em;
    line-height: 1.25;
    text-align: center;
  }

  .hero-actions .button-primary {
    grid-column: 1 / -1;
    min-height: 48px;
    font-size: .59rem;
  }

  .hero-notes {
    gap: .75rem 1rem;
    margin-top: 1.45rem;
    font-size: .63rem;
    letter-spacing: .035em;
  }

  .hero-notes span {
    gap: .38rem;
  }

  .hero-notes span::before {
    width: 4px;
    height: 4px;
  }

  .hero-art {
    min-height: clamp(21rem, 82vw, 28rem);
    padding: 1rem;
  }

  .hero-headshot {
    object-position: center top;
  }

  .hero-art::after {
    inset: .65rem;
  }

  .hero-card {
    right: .9rem;
    bottom: .9rem;
    width: calc(100% - 1.8rem);
    padding: .95rem 1rem;
  }

  .hero-card strong {
    font-size: 1.34rem;
  }

  .hero-card span {
    margin-top: .42rem;
    font-size: .65rem;
    line-height: 1.45;
  }

  /* Overall section pacing */
  .section {
    padding: 3.65rem 1rem;
  }

  .section-kicker {
    font-size: .59rem;
    letter-spacing: .18em;
  }

  .section-heading {
    margin-top: .58rem;
    font-size: clamp(2.45rem, 10.5vw, 3.45rem);
    line-height: .98;
  }

  .section-intro {
    margin-top: 1rem;
    font-size: .94rem;
    line-height: 1.72;
  }

  /* About */
  .intro-grid {
    gap: 2rem;
  }

  .intro-quote {
    margin-top: 1.3rem;
    padding-left: 1rem;
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .intro-body p {
    margin-bottom: 1rem;
    font-size: .94rem;
    line-height: 1.72;
  }

  .text-link {
    margin-top: .15rem;
    font-size: .6rem;
    letter-spacing: .14em;
  }

  /* Pride affirmation: keep the flag integrated but compact */
  .affirmation-band {
    padding: 3.6rem 1rem;
  }

  .affirmation-band::after {
    inset: .65rem;
  }

  .affirmation-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8.2rem;
    column-gap: 1.05rem;
    align-items: end;
  }

  .affirmation-band .section-kicker,
  .affirmation-band h2 {
    grid-column: 1 / -1;
  }

  .affirmation-band h2 {
    margin-top: .58rem;
    font-size: clamp(2.55rem, 11.5vw, 3.65rem);
    line-height: .97;
  }

  .affirmation-band p {
    grid-column: 1;
    margin-top: 1.1rem;
    font-size: .88rem;
    line-height: 1.7;
  }

  .affirmation-flag {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    width: 100%;
    margin: 0;
  }

  /* Services: compact highlight grid and swipeable editorial cards */
  .practice-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.55rem;
  }

  .practice-highlight {
    min-height: 0;
    padding: .95rem;
  }

  .practice-highlight:nth-child(3) {
    grid-column: 1 / -1;
  }

  .practice-highlight-label {
    font-size: .54rem;
    letter-spacing: .13em;
  }

  .practice-highlight p {
    margin-top: .48rem;
    font-size: .79rem;
    line-height: 1.55;
  }

  .card-grid {
    display: flex;
    gap: .72rem;
    margin-top: 1.75rem;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .card-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 min(79vw, 19rem);
    min-height: 16rem;
    padding: 1.3rem 1.2rem;
    scroll-snap-align: start;
  }

  .service-number {
    font-size: 1.15rem;
  }

  .service-card h3 {
    margin-top: 1.25rem;
    font-size: 1.7rem;
  }

  .service-card p {
    margin-top: .72rem;
    font-size: .82rem;
    line-height: 1.65;
  }

  /* Approach: small medallion and compact two-column modality tiles */
  .approach-layout {
    gap: 1.2rem;
  }

  .brand-art {
    width: 9rem;
    justify-self: start;
    margin-bottom: .1rem;
    padding: .35rem;
  }

  .brand-art img {
    transform: scale(1.04);
  }

  .approach-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .48rem;
    margin-top: 1.25rem;
    border-top: 0;
  }

  .approach-item {
    display: block;
    padding: .78rem;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--paper-raised) 58%, transparent);
  }

  .approach-item strong {
    display: block;
    font-size: .62rem;
    letter-spacing: .13em;
  }

  .approach-item span {
    display: block;
    margin-top: .32rem;
    font-size: .73rem;
    line-height: 1.45;
  }

  html[data-theme="dark"] .approach-item {
    border-color: rgba(249, 232, 192, .13);
    background: rgba(249, 232, 192, .025);
  }

  /* Focus: denser chip layout */
  .focus-list {
    gap: .4rem;
    margin-top: 1.3rem;
  }

  .focus-list span {
    padding: .46rem .65rem;
    font-size: .71rem;
    line-height: 1.3;
  }

  /* Details: mixed-width mobile dashboard instead of four stacked blocks */
  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .62rem;
    margin-top: 1.6rem;
  }

  .detail {
    min-height: 0;
    padding: 1rem;
  }

  .detail-location,
  .detail:last-child {
    grid-column: 1 / -1;
  }

  .detail-location {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

  .detail-location-copy {
    padding: 1rem 0 1rem 1rem;
  }

  .detail h3 {
    margin-bottom: .42rem;
    font-size: 1.32rem;
  }

  .detail p {
    font-size: .78rem;
    line-height: 1.6;
  }

  .detail-map,
  .detail-map iframe {
    min-height: 9.8rem;
  }

  .detail-actions {
    display: grid;
    gap: .42rem;
    margin-top: .85rem;
  }

  .detail-button {
    min-height: 2.3rem;
    width: 100%;
    padding: .55rem .55rem;
    font-size: .53rem;
    letter-spacing: .1em;
  }

  /* Footer: compact two-column site ending */
  .footer-inner {
    width: calc(100% - 2rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    padding: 2.5rem 0 2.15rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    gap: .7rem;
  }

  .footer-brand img {
    width: 46px;
    height: 46px;
    padding: 3px;
  }

  .footer-brand strong {
    font-size: 1.48rem;
  }

  .footer-brand span,
  .footer-title {
    font-size: .55rem;
    letter-spacing: .13em;
  }

  .footer-copy,
  .footer-links {
    margin-top: .68rem;
    font-size: .76rem;
    line-height: 1.72;
  }

  .footer-cta,
  .footer-profile-link {
    font-size: .55rem;
    letter-spacing: .1em;
  }

  .footer-bottom {
    padding: 1rem .75rem;
    font-size: .59rem;
  }

  /* Mobile motion: still visible, but less expensive and less theatrical */
  [data-reveal] {
    transform: translateY(26px);
    filter: blur(2px);
    transition-duration: 760ms;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary:last-child {
    grid-column: 1 / -1;
  }

  .affirmation-inner {
    grid-template-columns: minmax(0, 1fr) 7.2rem;
    column-gap: .8rem;
  }

  .affirmation-band p {
    font-size: .84rem;
  }

  .service-card {
    flex-basis: min(83vw, 18rem);
  }

  .detail-location {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 380px) {
  .brand-name {
    max-width: 9rem;
    font-size: 1.08rem;
  }

  .hero-copy {
    padding-right: .85rem;
    padding-left: .85rem;
  }

  .section,
  .affirmation-band {
    padding-right: .85rem;
    padding-left: .85rem;
  }

  .affirmation-inner {
    display: block;
  }

  .affirmation-flag {
    width: 8.2rem;
    margin-top: 1rem;
  }

  .practice-highlights,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .practice-highlight:nth-child(3),
  .detail-location,
  .detail:last-child {
    grid-column: auto;
  }

  .detail-location {
    grid-template-columns: 1fr;
  }

  .detail-location-copy {
    padding: 1rem;
  }

  .detail-map {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}


/* Mobile footer cleanup and reveal performance refinement */
[data-reveal] {
  will-change: auto;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.32fr) minmax(6.4rem, .68fr);
    gap: 1rem .8rem;
    padding: 1.7rem 0 1.35rem;
  }

  .footer-inner > div {
    min-width: 0;
  }

  .footer-brand {
    margin-bottom: .15rem;
  }

  .footer-copy,
  .footer-links {
    margin-top: .58rem;
    font-size: .72rem;
    line-height: 1.62;
  }

  .footer-copy a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .footer-cta,
  .footer-profile-link {
    display: block;
    max-width: 100%;
    font-size: .52rem;
    letter-spacing: .085em;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .footer-cta {
    margin-top: .78rem;
  }

  .footer-profile-link {
    margin-top: .48rem;
  }

  .footer-bottom {
    padding: .85rem .7rem;
  }
}

@media (max-width: 380px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.42fr) minmax(5.5rem, .58fr);
    gap: .9rem .65rem;
  }

  .footer-copy,
  .footer-links {
    font-size: .69rem;
  }
}


/* Resources page and crisis-support feature */
.desktop-nav a[aria-current="page"],
.mobile-nav a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--gold-deep);
  opacity: 1;
}

.crisis-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 2rem;
  color: var(--cream);
  background:
    radial-gradient(circle at 9% 16%, rgba(216, 183, 127, .20), transparent 25rem),
    radial-gradient(circle at 90% 82%, rgba(141, 157, 120, .18), transparent 27rem),
    repeating-linear-gradient(112deg, rgba(249, 232, 192, .027) 0 1px, transparent 1px 15px),
    linear-gradient(145deg, var(--forest), var(--forest-deep));
  border-bottom: 1px solid rgba(249, 232, 192, .16);
}

.crisis-hero::before {
  content: "";
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid rgba(249, 232, 192, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(249, 232, 192, .018),
    0 0 0 8rem rgba(249, 232, 192, .012);
  pointer-events: none;
}

.crisis-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(16rem, .72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.crisis-hero .section-kicker {
  color: var(--tan);
}

.crisis-hero h1 {
  max-width: 48rem;
  margin-top: .85rem;
  color: var(--cream);
  font-size: clamp(4.5rem, 8vw, 7.4rem);
}

.crisis-copy > p {
  max-width: 52rem;
  margin: 1.4rem 0 0;
  color: rgba(249, 232, 192, .84);
  font-size: 1.04rem;
  line-height: 1.84;
}

.crisis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.8rem;
}

.crisis-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .74rem 1rem;
  border: 1px solid transparent;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.crisis-button-primary {
  color: var(--cream);
  background: rgba(249, 232, 192, .10);
  border-color: rgba(249, 232, 192, .38);
}

.crisis-button-secondary {
  color: var(--cream);
  background: transparent;
  border-color: rgba(249, 232, 192, .24);
}

.crisis-button:hover {
  transform: translateY(-2px);
  border-color: var(--cream);
}

.crisis-note {
  color: rgba(249, 232, 192, .68) !important;
  font-size: .82rem !important;
}

.crisis-side {
  display: grid;
  place-items: center;
  min-height: 22rem;
  padding: 2rem;
  background: rgba(29, 51, 36, .54);
  border: 1px solid rgba(249, 232, 192, .18);
  box-shadow: 0 22px 52px rgba(0, 0, 0, .16);
  backdrop-filter: blur(16px);
}

.crisis-number {
  color: var(--tan);
  font-family: var(--serif);
  font-size: clamp(7rem, 13vw, 11rem);
  font-weight: 600;
  letter-spacing: -.08em;
  line-height: .75;
}

.crisis-side-copy {
  margin-top: 1rem;
  color: rgba(249, 232, 192, .76);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .21em;
  text-transform: uppercase;
}

.resources-intro {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .022) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 90% 8%, rgba(216, 183, 127, .10), transparent 26rem),
    var(--paper);
}

.resources-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: end;
}

.resources-intro-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.84;
}

.faq-section {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .026) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 90% 8%, rgba(201, 159, 94, .13), transparent 26rem),
    linear-gradient(145deg, color-mix(in srgb, var(--cream-deep) 58%, var(--paper)), var(--paper));
  border-block: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: .65rem;
}

.faq-item {
  overflow: hidden;
  background: color-mix(in srgb, var(--paper-raised) 94%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 1rem 3.3rem 1rem 1.2rem;
  color: var(--forest);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.5;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-53%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.78;
}

.faq-answer .text-link {
  margin-top: 1rem;
}

html[data-theme="dark"] .faq-item {
  background: color-mix(in srgb, var(--paper-raised) 92%, transparent);
}

html[data-theme="dark"] .faq-item summary {
  color: var(--cream);
}

.resources-cta {
  padding: clamp(4rem, 7vw, 6rem) 2rem;
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .025) 0 1px, transparent 1px 17px),
    linear-gradient(145deg, var(--cream-deep), var(--cream-soft));
}

.resources-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.resources-cta h2 {
  margin-top: .65rem;
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.resources-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .65rem;
}

@media (max-width: 900px) {
  .crisis-layout,
  .resources-intro-grid,
  .faq-layout,
  .resources-cta-inner {
    grid-template-columns: 1fr;
  }

  .crisis-side {
    min-height: 13rem;
  }

  .resources-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .crisis-hero {
    padding: 3.35rem 1rem;
  }

  .crisis-layout {
    gap: 1.5rem;
  }

  .crisis-hero h1 {
    margin-top: .55rem;
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .crisis-copy > p {
    margin-top: 1rem;
    font-size: .9rem;
    line-height: 1.7;
  }

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

  .crisis-button {
    min-height: 2.65rem;
    padding: .62rem .45rem;
    font-size: .56rem;
    letter-spacing: .1em;
  }

  .crisis-side {
    min-height: 8.5rem;
    padding: 1.2rem;
  }

  .crisis-number {
    font-size: 6.8rem;
  }

  .resources-intro-grid,
  .faq-layout {
    gap: 1.7rem;
  }

  .faq-list {
    gap: .48rem;
  }

  .faq-item summary {
    min-height: 3.7rem;
    padding: .85rem 2.7rem .85rem .9rem;
    font-size: .69rem;
    letter-spacing: .055em;
  }

  .faq-item summary::after {
    right: .9rem;
    font-size: 1.55rem;
  }

  .faq-answer {
    padding: 0 .9rem .95rem;
  }

  .faq-answer p {
    margin-top: .8rem;
    font-size: .84rem;
    line-height: 1.68;
  }

  .resources-cta {
    padding: 3rem 1rem;
  }

  .resources-cta h2 {
    font-size: 2.75rem;
  }

  .resources-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .48rem;
  }
}


/* Coastal Georgia local-support resources */
.gcal-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  max-width: 55rem;
  margin-top: 1.25rem;
  padding: 1rem 1.05rem;
  background: rgba(249, 232, 192, .07);
  border: 1px solid rgba(249, 232, 192, .18);
}

.gcal-callout strong,
.gcal-callout span {
  display: block;
}

.gcal-callout strong {
  color: var(--tan);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.05;
}

.gcal-callout span {
  margin-top: .35rem;
  color: rgba(249, 232, 192, .76);
  font-size: .8rem;
  line-height: 1.6;
}

.local-support {
  background:
    repeating-linear-gradient(112deg, rgba(41, 69, 47, .024) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 92% 8%, rgba(201, 159, 94, .14), transparent 27rem),
    radial-gradient(circle at 8% 94%, rgba(141, 157, 120, .12), transparent 24rem),
    linear-gradient(145deg, var(--cream-soft), var(--paper));
  border-bottom: 1px solid var(--line);
}

.local-support-header {
  max-width: 60rem;
}

.local-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-top: 2.5rem;
}

.local-resource-card {
  display: flex;
  flex-direction: column;
  min-height: 18rem;
  padding: 1.45rem;
  background: color-mix(in srgb, var(--paper-raised) 95%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.local-resource-card-featured {
  border-color: rgba(169, 127, 66, .42);
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 159, 94, .10), transparent 12rem),
    color-mix(in srgb, var(--paper-raised) 95%, transparent);
}

.local-resource-label {
  color: var(--gold-deep);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.local-resource-card h3 {
  margin-top: .72rem;
  color: var(--forest);
  font-size: 1.75rem;
  line-height: 1;
}

html[data-theme="dark"] .local-resource-card h3 {
  color: var(--cream);
}

.local-resource-card p {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
}

.local-resource-address {
  color: color-mix(in srgb, var(--ink) 78%, transparent) !important;
  font-size: .78rem !important;
}

.local-resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .8rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
}

.local-resource-phone,
.local-resource-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.local-resource-phone {
  padding: .52rem .7rem;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid var(--forest);
}

.local-resource-phone:hover {
  color: var(--cream);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
}

.local-resource-link {
  color: var(--forest);
}

.local-resource-link:hover {
  color: var(--gold-deep);
  transform: translateX(4px);
}

html[data-theme="dark"] .local-resource-link {
  color: var(--tan);
}

@media (max-width: 1060px) {
  .local-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gcal-callout {
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: .9rem;
  }

  .gcal-callout strong {
    font-size: 1.25rem;
  }

  .gcal-callout .crisis-button {
    width: 100%;
  }

  .local-resource-grid {
    display: flex;
    gap: .65rem;
    margin-top: 1.55rem;
    margin-right: -1rem;
    padding-right: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .local-resource-grid::-webkit-scrollbar {
    display: none;
  }

  .local-resource-card {
    flex: 0 0 min(82vw, 19rem);
    min-height: 17rem;
    padding: 1.15rem;
    scroll-snap-align: start;
  }

  .local-resource-card h3 {
    font-size: 1.5rem;
  }

  .local-resource-card p {
    font-size: .79rem;
  }
}


/* Local-support dark-mode contrast correction */
.local-support .section-heading {
  color: var(--forest-deep);
}

.local-support .section-intro {
  color: var(--muted);
}

html[data-theme="dark"] .local-support {
  background:
    repeating-linear-gradient(112deg, rgba(249, 232, 192, .026) 0 1px, transparent 1px 17px),
    radial-gradient(circle at 92% 8%, rgba(201, 159, 94, .14), transparent 27rem),
    radial-gradient(circle at 8% 94%, rgba(141, 157, 120, .12), transparent 24rem),
    linear-gradient(145deg, var(--paper-soft), var(--paper));
  border-bottom-color: rgba(249, 232, 192, .10);
}

html[data-theme="dark"] .local-support .section-heading {
  color: var(--cream);
}

html[data-theme="dark"] .local-support .section-intro {
  color: rgba(249, 232, 192, .74);
}

html[data-theme="dark"] .local-resource-card {
  background:
    radial-gradient(circle at 92% 8%, rgba(201, 159, 94, .06), transparent 12rem),
    color-mix(in srgb, var(--paper-raised) 94%, transparent);
  border-color: rgba(249, 232, 192, .11);
}

html[data-theme="dark"] .local-resource-card-featured {
  border-color: rgba(201, 159, 94, .34);
}


/* Remove 911 references from crisis resources */


/* Featured urgent-help FAQ directory */
.faq-item-urgent {
  border-color: rgba(169, 127, 66, .58);
  box-shadow: 0 16px 36px rgba(29, 51, 36, .10);
}

.faq-item-urgent summary {
  color: var(--forest-deep);
  background:
    radial-gradient(circle at 92% 16%, rgba(201, 159, 94, .11), transparent 13rem),
    color-mix(in srgb, var(--cream-deep) 48%, var(--paper-raised));
}

.faq-answer-urgent {
  padding-bottom: 1.25rem;
}

.crisis-directory {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: crisis-option;
}

.crisis-directory li {
  position: relative;
  min-height: 5.25rem;
  padding: .9rem .9rem .9rem 3.2rem;
  background: color-mix(in srgb, var(--paper-raised) 96%, transparent);
  border: 1px solid var(--line);
  counter-increment: crisis-option;
}

.crisis-directory li::before {
  content: counter(crisis-option, decimal-leading-zero);
  position: absolute;
  left: .9rem;
  top: .92rem;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.crisis-directory strong,
.crisis-directory span {
  display: block;
}

.crisis-directory strong {
  color: var(--forest-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.45;
  text-transform: uppercase;
}

.crisis-directory span {
  margin-top: .25rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.crisis-directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .65rem;
}

.crisis-directory-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: .47rem .62rem;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid var(--forest);
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.crisis-directory-actions a:hover {
  color: var(--cream);
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-2px);
}

html[data-theme="dark"] .faq-item-urgent {
  border-color: rgba(201, 159, 94, .42);
}

html[data-theme="dark"] .faq-item-urgent summary {
  color: var(--cream);
  background:
    radial-gradient(circle at 92% 16%, rgba(201, 159, 94, .10), transparent 13rem),
    color-mix(in srgb, var(--paper-raised) 94%, transparent);
}

html[data-theme="dark"] .crisis-directory li {
  background: rgba(249, 232, 192, .025);
  border-color: rgba(249, 232, 192, .12);
}

html[data-theme="dark"] .crisis-directory strong {
  color: var(--cream);
}

@media (max-width: 760px) {
  .faq-answer-urgent {
    padding-bottom: .95rem;
  }

  .crisis-directory {
    gap: .52rem;
    margin-top: .8rem;
  }

  .crisis-directory li {
    min-height: 0;
    padding: .76rem .72rem .76rem 2.6rem;
  }

  .crisis-directory li::before {
    left: .72rem;
    top: .78rem;
    font-size: 1.25rem;
  }

  .crisis-directory strong {
    font-size: .66rem;
  }

  .crisis-directory span {
    font-size: .76rem;
  }

  .crisis-directory-actions {
    gap: .38rem;
    margin-top: .55rem;
  }

  .crisis-directory-actions a {
    min-height: 1.95rem;
    padding: .42rem .52rem;
    font-size: .51rem;
  }
}


/* Mas Paz linked mentions and Maylin accent correction v2 */
.brand-sub a,
.footer-brand span a {
  color: inherit;
}

.brand-sub a:hover,
.footer-brand span a:hover {
  color: var(--gold-deep);
}

.inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(169, 127, 66, .58);
  text-decoration-thickness: 1px;
  text-underline-offset: .16em;
}

.inline-link:hover {
  color: var(--gold-deep);
  text-decoration-color: currentColor;
}

.hero-origin .inline-link {
  color: var(--forest);
  font-weight: 700;
}

html[data-theme="dark"] .brand-sub a:hover,
html[data-theme="dark"] .footer-brand span a:hover,
html[data-theme="dark"] .inline-link,
html[data-theme="dark"] .hero-origin .inline-link {
  color: var(--tan);
}
