/*
Theme Name: Seattle Nature Cure Clinic
Theme URI: https://seattlencc.com
Author: Seattle Nature Cure Clinic
Description: Custom theme for Seattle Nature Cure Clinic. Providers, services and clinic notices are managed as post types; clinic details live in Appearance > Customize > Clinic information.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: sncc
*/

/* Seattle Nature Cure Clinic — site styles
   Tokens first, then base, layout, components, pages. */

:root {
  --fir: #1F3D2B;
  --fir-deep: #14291D;
  --moss: #4A6B4F;
  --lichen: #C59B3B;
  --lichen-deep: #A37F2B;
  --mist: #E6ECE6;
  --mist-light: #F0F4F0;
  --paper: #F7F9F6;
  --white: #FFFFFF;
  --ink: #171C18;
  --stone: #5F6963;
  --line: #CCD5CE;

  --font-display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;

  --measure: 62ch;
  --wrap: 1120px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(56px, 8vw, 104px);
  --radius: 4px;
  --radius-img: 6px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--fir); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--fir-deep); }
:focus-visible { outline: 3px solid var(--lichen); outline-offset: 2px; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fir-deep);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.375rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.25em; margin: 0 0 1em; max-width: var(--measure); }
li { margin-bottom: 0.35em; }
small, .small { font-size: 0.9375rem; }
.muted { color: var(--stone); }
.lede { font-size: 1.25rem; line-height: 1.5; max-width: 52ch; }
.display { font-family: var(--font-display); }

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section + .section { padding-top: 0; }
.band { background: var(--mist); }
.band.section, .band + .section { padding-top: var(--section); }
.band-deep { background: var(--fir); color: var(--paper); }
.band-deep h1, .band-deep h2, .band-deep h3 { color: var(--white); }
.band-deep a { color: var(--paper); }
.band-deep .muted { color: #B9C7BC; }
.grid { display: grid; gap: clamp(24px, 4vw, 48px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.split { display: grid; gap: clamp(32px, 6vw, 80px); grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
.split > .aside { position: sticky; top: 96px; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } .split > .aside { position: static; } }
.section-head { margin-bottom: clamp(28px, 4vw, 44px); }
.section-head h2 { margin-bottom: 0.3em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 0.85em 1.25em; border-radius: var(--radius); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease;
}
.btn-primary { background: var(--lichen); border-color: var(--lichen); color: var(--fir-deep); }
.btn-primary:hover { background: var(--lichen-deep); border-color: var(--lichen-deep); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--fir); color: var(--fir); }
.btn-outline:hover { background: var(--fir); color: var(--white); }
.band-deep .btn-outline { border-color: var(--paper); color: var(--paper); }
.band-deep .btn-outline:hover { background: var(--paper); color: var(--fir); }
.btn svg { width: 1em; height: 1em; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--fir-deep); color: var(--paper);
  font-family: var(--font-display); font-size: 0.9375rem; text-align: center;
  padding: 0.55em var(--gutter);
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--fir-deep); }
.brand svg { width: 34px; height: 34px; flex: none; }
/* Uploaded logo (Customize > Site Identity). Height is capped so a large upload can't blow up the header. */
.brand img { width: auto; height: 44px; max-width: 200px; object-fit: contain; flex: none; }
.site-footer .brand img { height: 52px; }
/* A square mark (like a seal) sits on a light disc so dark artwork stays legible on the dark footer. */
.site-footer .brand img.is-square { background: var(--paper); border-radius: 50%; padding: 3px; }
@media (max-width: 480px) { .brand img { height: 38px; } }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; line-height: 1.1; letter-spacing: -0.01em; }
.brand-name span { display: block; font-weight: 500; font-size: 0.8125rem; color: var(--stone); letter-spacing: 0; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; max-width: none; }
.nav > ul > li { position: relative; margin: 0; }
.nav a, .nav button {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: var(--fir-deep);
  text-decoration: none; padding: 0.6em 0.8em; border-radius: var(--radius); background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.35em;
}
.nav a:hover, .nav button:hover, .nav a[aria-current="page"] { background: var(--mist); }
.nav button svg { width: 0.8em; height: 0.8em; transition: transform 120ms ease; }
.nav li.open > button svg { transform: rotate(180deg); }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px; margin: 6px 0 0; list-style: none;
  box-shadow: 0 12px 32px -12px rgba(20, 41, 29, 0.25);
  display: none; z-index: 50;
}
.nav li.open > .submenu { display: block; }
.submenu li { margin: 0; }
.submenu a { display: block; font-weight: 500; padding: 0.5em 0.75em; width: 100%; }
.header-call { margin-left: 8px; }
.nav a.btn { background: var(--lichen); border: 1.5px solid var(--lichen); color: var(--fir-deep); padding: 0.85em 1.25em; font-size: 1rem; justify-content: center; }
.nav a.btn:hover { background: var(--lichen-deep); border-color: var(--lichen-deep); color: var(--white); }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--fir); border-radius: var(--radius); padding: 8px; color: var(--fir); cursor: pointer; }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav .header-call { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; gap: 0; }
  .nav a, .nav button { width: 100%; justify-content: space-between; font-size: 1.0625rem; padding: 0.75em 0.5em; }
  .submenu { position: static; box-shadow: none; background: transparent; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 0 0 8px 12px; padding: 0 0 0 8px; min-width: 0; }
  .nav-call-mobile { margin-top: 12px; }
}
@media (min-width: 961px) { .nav .nav-call-mobile { display: none; } }
@media (max-width: 480px) { .brand-name span { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(56px, 9vw, 120px) clamp(48px, 7vw, 96px); }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
.hero h1 { max-width: 14ch; margin-bottom: 0.4em; }
.hero .lede { margin-bottom: 1.6em; color: #2C3A31; }
.hero-fern { justify-self: center; align-self: center; width: min(100%, 440px); color: var(--fir); opacity: 0.9; }
.hero-fern svg { width: 100%; height: auto; }
.hero-meta { margin-top: 2.25em; font-family: var(--font-display); font-size: 0.9375rem; color: var(--stone); max-width: 48ch; }
@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-fern { position: absolute; right: -60px; top: -40px; width: 260px; opacity: 0.16; pointer-events: none; z-index: 0; }
  .hero-copy { position: relative; z-index: 1; }
}

/* ---------- Quick links strip ---------- */
.quick { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.quick ul { list-style: none; margin: 0; padding: 0; max-width: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.quick li { margin: 0; border-left: 1px solid var(--line); }
.quick li:first-child { border-left: 0; }
.quick a { display: block; padding: 20px 22px; text-decoration: none; color: var(--fir-deep); }
.quick a:hover { background: var(--mist-light); }
.quick strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; margin-bottom: 0.2em; }
.quick span { color: var(--stone); font-size: 0.9375rem; }
@media (max-width: 700px) { .quick li { border-left: 0; border-top: 1px solid var(--line); } .quick li:first-child { border-top: 0; } }

/* ---------- Definition / rule lists ---------- */
.rule-list { list-style: none; margin: 0; padding: 0; max-width: none; border-top: 1px solid var(--line); }
.rule-list > li { margin: 0; padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 8px 32px; align-items: baseline; }
.rule-list h3, .rule-list h4 { margin: 0; }
.rule-list p { margin: 0; }
.rule-list a.row-link { text-decoration: none; }
.rule-list a.row-link:hover { text-decoration: underline; }
@media (max-width: 640px) { .rule-list > li { grid-template-columns: 1fr; } }

.price-list { list-style: none; margin: 0; padding: 0; max-width: 560px; border-top: 1px solid var(--line); }
.price-list li { margin: 0; display: flex; justify-content: space-between; gap: 24px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.price-list li span:last-child { font-family: var(--font-display); font-weight: 600; white-space: nowrap; }

.check-list { list-style: none; padding: 0; margin: 0 0 1em; }
.check-list li { padding-left: 1.5em; position: relative; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 0.7em; height: 0.7em; border-radius: 50%; background: var(--lichen); }

.two-col { columns: 2; column-gap: 40px; }
@media (max-width: 640px) { .two-col { columns: 1; } }

/* ---------- Notices ---------- */
.notices { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notice { padding: 28px 28px 28px 0; border-right: 1px solid var(--line); margin-right: 28px; }
.notice:last-child { border-right: 0; margin-right: 0; }
.notice h3 { font-size: 1.25rem; }
.notice a { font-family: var(--font-display); font-weight: 600; text-decoration: none; }
.notice a:hover { text-decoration: underline; }
@media (max-width: 900px) { .notice { border-right: 0; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); } .notice:last-child { border-bottom: 0; } }

/* ---------- People ---------- */
.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 40px 28px; }
.person { display: block; }
.person figure { margin: 0 0 14px; }
.avatar {
  aspect-ratio: 4 / 5; width: 100%; border-radius: var(--radius-img); object-fit: cover; object-position: top;
  background: var(--mist);
}
.avatar-fallback {
  aspect-ratio: 4 / 5; width: 100%; border-radius: var(--radius-img);
  background: var(--mist); color: var(--moss);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 2.5rem; letter-spacing: 0.02em;
}
.avatar-fallback.sm { aspect-ratio: 1; font-size: 1.5rem; }
.band .avatar-fallback, .band .avatar { background: #D6DFD7; }
.person h3 { font-size: 1.25rem; margin-bottom: 0.15em; }
.person h3 a { text-decoration: none; }
.person h3 a:hover { text-decoration: underline; }
.person .creds { font-family: var(--font-display); font-weight: 500; color: var(--stone); font-size: 0.9375rem; margin-bottom: 0.5em; }
.person .spec { font-size: 0.9375rem; color: #2C3A31; }
.person .booking { margin-top: 0.6em; font-family: var(--font-display); font-size: 0.875rem; font-weight: 600; color: var(--moss); }
.leads { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 40px; }
.lead { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: start; }
.lead figure { margin: 0; }
.lead .avatar, .lead .avatar-fallback { aspect-ratio: 4 / 5; }
.lead .avatar-fallback { font-size: 1.75rem; }
@media (max-width: 480px) { .lead { grid-template-columns: 96px 1fr; } }

.staff-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 150px), 1fr)); gap: 24px; }
.staff-row figure { margin: 0 0 10px; }
.staff-row .avatar, .staff-row .avatar-fallback { aspect-ratio: 1; border-radius: 50%; }
.staff-row strong { display: block; font-family: var(--font-display); }
.staff-row span { color: var(--stone); font-size: 0.9375rem; }

/* Provider page */
.provider-hero { display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.provider-hero figure { margin: 0; }
.provider-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.provider-hero .creds { font-family: var(--font-display); font-size: 1.125rem; color: var(--stone); margin-bottom: 1.25em; }
.tags { list-style: none; padding: 0; margin: 0 0 1.5em; display: flex; flex-wrap: wrap; gap: 8px; max-width: none; }
.tags li { margin: 0; font-family: var(--font-display); font-size: 0.875rem; font-weight: 500; padding: 0.35em 0.7em; border: 1px solid var(--line); border-radius: 999px; color: var(--fir-deep); background: var(--white); }
@media (max-width: 720px) { .provider-hero { grid-template-columns: 1fr; } .provider-hero figure { max-width: 260px; } }

/* ---------- Service page ---------- */
.principles { list-style: none; padding: 0; margin: 0; max-width: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 12px 24px; }
.principles li { margin: 0; padding: 14px 0 14px 18px; border-left: 2px solid var(--lichen); font-family: var(--font-display); font-weight: 600; }
.aside-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: var(--white); }
.aside-box h3 { font-size: 1.125rem; margin-bottom: 0.75em; }
.aside-box ul { list-style: none; padding: 0; margin: 0; }
.aside-box li { padding: 6px 0; border-top: 1px solid var(--line); }
.aside-box li:first-child { border-top: 0; padding-top: 0; }
.aside-box li a { text-decoration: none; }
.aside-box li a:hover { text-decoration: underline; }
.aside > .aside-box + .aside-box { margin-top: 20px; }

/* ---------- Page header ---------- */
.page-head { padding-block: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 44px); }
.page-head h1 { margin-bottom: 0.3em; }
.page-head + .section { padding-top: clamp(8px, 2vw, 24px); }
.page-head + .section.band { padding-top: var(--section); }
.crumbs { font-family: var(--font-display); font-size: 0.875rem; color: var(--stone); margin-bottom: 1.25em; }
.crumbs a { color: var(--stone); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 0.5em; }

/* ---------- Scheduling ---------- */
.sched { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .sched { grid-template-columns: 1fr; } }
.sched-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px 28px; background: var(--white); display: flex; flex-direction: column; gap: 14px; }
.sched-item h3 { margin: 0; font-size: 1.25rem; }
.sched-item p { flex: 1; }
.callout { border-left: 4px solid var(--lichen); background: var(--white); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; max-width: 72ch; }
.callout p { max-width: none; }
.callout strong { font-family: var(--font-display); }

/* ---------- Contact ---------- */
.form { display: grid; gap: 16px; max-width: 560px; }
.form label { display: grid; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; }
.form input, .form textarea {
  font: inherit; font-family: var(--font-body); font-size: 1rem; padding: 0.7em 0.85em;
  border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); width: 100%;
}
.form input:focus, .form textarea:focus { border-color: var(--moss); outline: 3px solid color-mix(in srgb, var(--lichen) 40%, transparent); outline-offset: 0; }
.form textarea { min-height: 140px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; }
.contact-list { list-style: none; padding: 0; margin: 0; max-width: none; }
.contact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); margin: 0; }
.contact-list li:first-child { border-top: 0; }
.contact-list li > span:first-child { font-family: var(--font-display); font-weight: 600; color: var(--stone); font-size: 0.9375rem; }
.hours { list-style: none; padding: 0; margin: 0 0 0.75em; max-width: 400px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-top: 1px solid var(--line); margin: 0; }
.hours li:first-child { border-top: 0; }
.map { border: 1px solid var(--line); border-radius: var(--radius-img); overflow: hidden; background: var(--mist); }
.map iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Blog ---------- */
.post-list { list-style: none; padding: 0; margin: 0; max-width: none; }
.post-list li { margin: 0; padding: 26px 0; border-top: 1px solid var(--line); }
.post-list time { font-family: var(--font-display); font-size: 0.875rem; color: var(--stone); }
.post-list h3 { margin: 0.25em 0 0.3em; }
.post-list h3 a { text-decoration: none; }
.post-list h3 a:hover { text-decoration: underline; }
.empty { border: 1px dashed var(--line); border-radius: var(--radius); padding: 32px; max-width: 640px; }
.prose { max-width: var(--measure); }
.wrap.prose { max-width: none; }
.prose h2, .prose h3 { max-width: var(--measure); }
.prose h2 { font-size: 1.5rem; margin-top: 1.5em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--fir-deep); color: #C9D4CB; padding-block: clamp(48px, 6vw, 72px) 32px; margin-top: var(--section); }
.site-footer a { color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.75em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4em; }
.site-footer .brand { color: var(--white); margin-bottom: 16px; }
.site-footer .brand-name span { color: #B9C7BC; }
.site-footer .hours li { flex-direction: column; gap: 0; }
.site-footer .hours li span:last-child { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 40px; padding-top: 20px; font-family: var(--font-display); font-size: 0.875rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.footer-bottom a { color: #C9D4CB; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.skip { position: absolute; left: -9999px; top: 8px; background: var(--lichen); color: var(--fir-deep); padding: 10px 14px; border-radius: var(--radius); font-family: var(--font-display); font-weight: 600; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- WordPress specifics ---------- */
.entry-content > p, .entry-content > h1, .entry-content > h2, .entry-content > h3, .entry-content > h4,
.entry-content > ul:not([class]), .entry-content > ol:not([class]), .entry-content > blockquote,
.entry-content > .wp-block-quote, .entry-content > .wp-block-list { max-width: var(--measure); }
.entry-content > h2 { margin-top: 1.6em; }
.entry-content > h2:first-child { margin-top: 0; }
.entry-content img { border-radius: var(--radius-img); }
.entry-content .wp-block-table table { border-collapse: collapse; width: 100%; }
.entry-content .wp-block-table td, .entry-content .wp-block-table th { border-bottom: 1px solid var(--line); padding: 10px 12px 10px 0; text-align: left; }
.entry-content blockquote { border-left: 3px solid var(--lichen); margin: 1.5em 0; padding-left: 1.25em; color: var(--stone); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.sticky, .bypostauthor { display: block; }
.wp-block-button__link { font-family: var(--font-display); font-weight: 600; background: var(--lichen); color: var(--fir-deep); border-radius: var(--radius); }
.form-notice { border-left: 4px solid var(--moss); background: var(--white); padding: 14px 18px; margin-bottom: 20px; font-family: var(--font-display); }
.form-notice.error { border-left-color: #B3402A; }
.post-meta { font-family: var(--font-display); font-size: 0.9375rem; color: var(--stone); margin-bottom: 1.5em; }
.pagination { margin-top: 32px; font-family: var(--font-display); font-weight: 600; display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers { padding: 0.5em 0.9em; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; }
.pagination .page-numbers.current { background: var(--fir); color: var(--white); border-color: var(--fir); }

/* Horizontal clinic banner (homepage hero + footer) */
.hero-banner { width: min(100%, 460px); height: auto; margin: 0 0 28px; }
.site-footer .footer-banner { width: min(100%, 340px); height: auto; margin: 0 0 20px; }
@media (max-width: 800px) { .hero-banner { width: min(100%, 380px); } }

/* Wide header logo (replaces seal + name). Sized by height; header stays compact. */
.brand-logo { gap: 0; }
.header-logo-img { height: 46px; width: auto; max-width: min(56vw, 440px); object-fit: contain; display: block; }
@media (max-width: 600px) { .header-logo-img { height: 38px; max-width: 62vw; } }

/* Footer uses the same wide logo as the header, slightly larger for the wider column */
.site-footer .header-logo-img { height: 52px; max-width: min(100%, 360px); }
