:root {
  --basalt: #20302f;
  --cedar: #315f41;
  --fir: #173f34;
  --river: #0f7e8f;
  --sky: #dcefeb;
  --salmon: #c86752;
  --sun: #f2c864;
  --cream: #fbf8ee;
  --paper: #fffef8;
  --mist: #eef7f3;
  --ink: #172522;
  --muted: #5f6f68;
  --line: rgba(32, 48, 47, 0.16);
  --shadow: 0 18px 60px rgba(17, 35, 32, 0.16);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

main,
.site-header,
.hero,
.notice,
.section,
.site-footer {
  max-width: 100vw;
}

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

a {
  color: var(--river);
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--fir);
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 20;
  transform: translateY(-120%);
  background: var(--sun);
  color: var(--ink);
  padding: 0.75rem 1rem;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.75rem 5vw;
  background: rgba(255, 254, 248, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--fir);
  min-width: 0;
}

.brand img {
  width: 66px;
  height: 48px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  border-radius: 8px;
  color: var(--basalt);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
  color: var(--fir);
  outline: none;
}

.site-nav .nav-call {
  background: var(--fir);
  color: #fff;
  margin-left: 0.35rem;
}

.site-nav .nav-call:hover,
.site-nav .nav-call:focus-visible {
  background: var(--river);
  color: #fff;
}

.tablet-call {
  display: none;
  flex: 0 0 auto;
  order: 2;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--fir);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  background: var(--fir);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  order: 3;
  width: 44px;
  height: 44px;
  border: 2px solid var(--fir);
  border-radius: 8px;
  background: var(--sun);
  color: var(--fir);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 0 auto;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 560px;
  max-height: 760px;
  padding: 2.75rem 5vw 3rem;
  overflow: hidden;
  background: var(--basalt);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 21, 0.8) 0%, rgba(8, 24, 21, 0.62) 45%, rgba(8, 24, 21, 0.18) 100%),
    linear-gradient(0deg, rgba(32, 48, 47, 0.2), rgba(32, 48, 47, 0));
}

.hero-content {
  width: min(760px, 100%);
  min-width: 0;
  color: #fff;
}

.hero-logo {
  width: 128px;
  height: auto;
  margin-bottom: 0.9rem;
  padding: 0.45rem;
  background: rgba(255, 254, 248, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--salmon);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

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

h1,
h2,
h3 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 730px;
  margin-bottom: 1rem;
  font-size: 2.45rem;
}

h2 {
  margin-bottom: 1rem;
  color: var(--fir);
  font-size: 2.25rem;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--fir);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.hero-actions,
.contact-methods,
.resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--sun);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd978;
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--fir);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--river);
  color: var(--river);
}

.notice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.notice div {
  background: var(--fir);
  color: #fff;
  padding: 1rem 5vw;
}

.notice strong {
  color: var(--sun);
}

.section {
  padding: 5rem 5vw;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-heading p,
.split p,
.contact-layout p,
.location-layout p {
  color: var(--muted);
}

.answer-section {
  background: var(--paper);
  padding-bottom: 3rem;
}

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

.answer-grid article {
  min-height: 154px;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(17, 35, 32, 0.06);
}

.answer-grid h3 {
  font-size: 1.1rem;
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.answer-grid a {
  color: var(--river);
}

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

.care-card {
  min-height: 260px;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(17, 35, 32, 0.08);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  background: var(--mist);
  border: 1px solid rgba(15, 126, 143, 0.2);
  border-radius: 50%;
  color: var(--river);
  font-size: 1.35rem;
  font-weight: 900;
}

.section-warm {
  background:
    linear-gradient(180deg, rgba(251, 248, 238, 0.88), rgba(238, 247, 243, 0.9)),
    var(--cream);
}

.split,
.contact-layout,
.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 3rem;
  align-items: start;
}

.about-panel,
.hours-panel,
.contact-form {
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel img {
  width: 210px;
  height: auto;
  margin: 0 auto 1rem;
}

dl {
  margin: 0;
}

.about-panel dl > div,
.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--ink);
  text-align: right;
}

.resources {
  background: var(--paper);
}

.resource-list {
  align-items: stretch;
}

.resource-list a {
  flex: 1 1 250px;
  min-height: 132px;
  padding: 1.15rem;
  background: var(--mist);
  border: 1px solid rgba(49, 95, 65, 0.18);
  border-radius: 8px;
  color: var(--fir);
  font-weight: 900;
  text-decoration: none;
}

.resource-list a:hover,
.resource-list a:focus-visible {
  border-color: var(--river);
  background: #fff;
}

.resource-list span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

.blog-shell {
  width: min(860px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.blog-archive,
.blog-post {
  background: var(--paper);
}

.blog-archive h1,
.blog-post h1 {
  max-width: 780px;
  margin-bottom: 0.65rem;
  color: var(--fir);
}

.archive-intro {
  max-width: 720px;
  color: var(--muted);
}

.archive-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.archive-card {
  min-width: 0;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 34px rgba(17, 35, 32, 0.06);
}

.archive-card h2 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
}

.archive-card h2 a,
.back-link,
.post-content a {
  color: var(--river);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.archive-card h2 a:hover,
.archive-card h2 a:focus-visible,
.back-link:hover,
.back-link:focus-visible,
.post-content a:hover,
.post-content a:focus-visible,
.policy-shell a:hover,
.policy-shell a:focus-visible {
  color: var(--fir);
  box-shadow: inset 0 -2px 0 rgba(242, 200, 100, 0.72);
}

.archive-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.archive-card p {
  overflow-wrap: anywhere;
}

.post-meta {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.archive-notice {
  margin: 1.25rem 0 2rem;
  padding: 1rem;
  background: var(--mist);
  border: 1px solid rgba(15, 126, 143, 0.22);
  border-radius: 8px;
  color: var(--fir);
  font-weight: 700;
}

.post-content {
  color: var(--ink);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content blockquote {
  margin-bottom: 1.15rem;
}

.post-content img {
  width: auto;
  max-height: 720px;
  margin: 1.5rem auto;
  border-radius: 8px;
  box-shadow: 0 12px 38px rgba(17, 35, 32, 0.12);
}

.post-content blockquote {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--sun);
  color: var(--muted);
}

.post-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.post-nav-link,
.post-nav-all {
  min-width: 0;
  min-height: 118px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--fir);
  text-decoration: none;
}

.post-nav-link:hover,
.post-nav-link:focus-visible,
.post-nav-all:hover,
.post-nav-all:focus-visible {
  border-color: var(--river);
  color: var(--river);
}

.post-nav-link span,
.post-nav-link small {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.post-nav-link strong {
  display: block;
  margin: 0.35rem 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.post-nav-all {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-align: center;
}

.section-contact {
  background: var(--basalt);
  color: #fff;
}

.section-contact h2,
.section-contact h3 {
  color: #fff;
}

.section-contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-methods {
  margin: 1.5rem 0;
}

.contact-methods a {
  flex: 1 1 200px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.contact-methods span {
  display: block;
  color: var(--sun);
}

.fine-print {
  font-size: 0.93rem;
}

.contact-form {
  color: var(--ink);
}

.contact-form h3 {
  color: var(--fir);
}

.contact-form p {
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0;
  color: var(--fir);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 48, 47, 0.22);
  border-radius: 8px;
  padding: 0.75rem;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--river);
  box-shadow: 0 0 0 4px rgba(15, 126, 143, 0.14);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.hp {
  display: none !important;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.section-location {
  background: var(--cream);
}

address {
  margin: 1.4rem 0;
  font-style: normal;
  color: var(--ink);
}

.hours-panel h3 {
  margin-bottom: 0.5rem;
}

.hours-panel p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  background: #16352e;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(150px, 0.75fr) minmax(130px, 0.65fr) minmax(240px, 1fr);
  gap: 2.25rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 2.6rem 5vw;
}

.footer-practice p {
  max-width: 430px;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  text-decoration: none;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  color: #fff;
}

.footer-brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
  padding: 0.25rem;
  background: rgba(255, 254, 248, 0.94);
  border-radius: 8px;
}

.footer-brand span,
.footer-brand strong,
.footer-brand small,
.footer-section span {
  display: block;
}

.footer-brand strong {
  max-width: 300px;
  color: #fff;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.footer-brand small,
.footer-section span,
.footer-credit {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.footer-credit {
  max-width: 380px;
  font-size: 0.78rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
}

.footer-section h2 {
  margin: 0 0 0.45rem;
  color: var(--sun);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-section a,
.footer-credit a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.footer-section a:hover,
.footer-section a:focus-visible,
.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(242, 200, 100, 0.68);
}

.policy-page {
  background: var(--paper);
}

.policy-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.policy-shell h1 {
  max-width: 760px;
  color: var(--fir);
}

.policy-shell h2 {
  margin-top: 2.25rem;
  font-size: 1.7rem;
}

.policy-shell h3 {
  margin-top: 1.5rem;
}

.policy-shell p,
.policy-shell li {
  color: var(--muted);
}

.policy-shell p,
.policy-shell li,
.archive-intro,
.post-content {
  max-width: 74ch;
}

.policy-shell strong {
  color: var(--ink);
}

.policy-list {
  display: grid;
  gap: 0.85rem;
  padding-left: 1.2rem;
}

.policy-callout {
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--mist);
  border: 1px solid rgba(15, 126, 143, 0.22);
  border-radius: 8px;
  color: var(--fir);
  font-weight: 700;
}

@media (min-width: 760px) {
  h1 {
    font-size: 3.65rem;
  }
}

@media (max-width: 900px) {
  .tablet-call {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 5vw;
    left: 5vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-call {
    margin-left: 0;
  }

  .notice,
  .care-grid,
  .split,
  .contact-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.8fr);
  }

  .footer-notices {
    grid-column: 1 / -1;
  }

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

  .footer-notices h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .tablet-call {
    display: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 68px;
    padding-inline: 1rem;
  }

  .brand,
  .brand span {
    min-width: 0;
  }

  .nav-toggle {
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
  }

  .brand img {
    width: 54px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 510px;
    padding: 3.5rem 1rem;
  }

  .hero-content,
  .section-heading,
  .answer-grid,
  .care-grid,
  .split,
  .contact-layout,
  .location-layout,
  .footer-inner {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 24, 21, 0.86) 0%, rgba(8, 24, 21, 0.72) 60%, rgba(8, 24, 21, 0.46) 100%),
      linear-gradient(0deg, rgba(32, 48, 47, 0.26), rgba(32, 48, 47, 0));
  }

  .hero-logo {
    width: 130px;
  }

  .hero h1 {
    font-size: 2.04rem;
    max-width: 11ch;
  }

  h2 {
    font-size: 1.82rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .notice div {
    padding-inline: 1rem;
  }

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

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

  .footer-inner,
  .footer-notices {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 1.6rem;
    padding-block: 2.2rem;
  }

  .about-panel dl > div,
  .hours-list > div {
    display: grid;
    gap: 0.2rem;
  }

  dd {
    text-align: left;
  }
}

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