:root {
  --cream: #fbf3e4;
  --cream-2: #f7ead3;
  --paper: #fffaf1;
  --green: #526b35;
  --green-deep: #2f4a2f;
  --green-soft: #718752;
  --orange-brand: #d66f00;
  --orange: #a95000;
  --orange-soft: #d87b18;
  --gold: #c7a064;
  --ink: #263126;
  --muted: #687064;
  --line: rgba(74, 93, 57, .18);
  --shadow: 0 18px 42px rgba(70, 54, 25, .10);
  --radius: 20px;
  --max: 1280px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 44px), var(--max)); margin: 0 auto; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 999;
  padding: 10px 14px; background:#fff; border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { top: 12px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--orange);
}

h1,h2,h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 .65em;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.5rem, 4.25vw, 4rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.9rem, 3vw, 2.85rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.02rem, 1.25vw, 1.16rem); max-width: 690px; color: #3e493c; }
.small { font-size: .9rem; color: var(--muted); }

.button {
  display:inline-flex; align-items:center; gap:.55rem; justify-content:center;
  min-height:48px; padding:.78rem 1.15rem; border-radius:999px;
  text-decoration:none; font-weight:800; border:1px solid transparent;
  transition:.2s ease; cursor:pointer;
}
.button-primary { color:#fff; background: var(--orange); box-shadow: 0 10px 24px rgba(169,80,0,.20); }
.button-primary:hover { transform: translateY(-1px); background:#8f4300; }
.button-green { color:#fff; background: var(--green-deep); }
.button-green:hover { transform: translateY(-1px); background:#263f29; }
.button-ghost { color:var(--green-deep); border-color: rgba(47,74,47,.25); background: rgba(255,255,255,.55); }
.text-link { display:inline-flex; gap:.45rem; align-items:center; font-weight:800; text-decoration:none; color:var(--green-deep); border-bottom:1px solid currentColor; }
.text-link:hover { color: var(--orange); }

.site-header {
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(255,250,241,.94);
  border-bottom:1px solid rgba(74,93,57,.08);
}
.nav-wrap { height:82px; display:flex; align-items:center; gap:24px; }
.brand { margin-right:auto; display:flex; align-items:center; text-decoration:none; }
.brand img { width: 162px; max-height: 62px; object-fit: contain; }
.site-nav { display:flex; align-items:center; gap:16px; font-size:.9rem; }
.site-nav a { text-decoration:none; position:relative; white-space:nowrap; }
.site-nav a:not(.button):hover,
.site-nav a.active:not(.button) { color:var(--orange); }
.nav-toggle { display:none; background:none; border:0; padding:8px; font-size:1.5rem; color:var(--ink); }

/* The hero uses one full-bleed background instead of a split image so the sunset
   keeps its natural proportions on wide desktop screens. */
.hero {
  min-height: 525px;
  display:grid;
  align-items:stretch;
  position:relative;
  overflow:hidden;
  background: var(--cream);
}
.hero::after {
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(90deg,
      rgba(251,243,228,.97) 0%,
      rgba(251,243,228,.92) 25%,
      rgba(251,243,228,.72) 43%,
      rgba(251,243,228,.25) 68%,
      rgba(251,243,228,.05) 100%),
    url('../images/hero-sunset.jpg');
  background-size: cover;
  background-position: center 52%;
}
.hero::before {
  content:''; position:absolute; z-index:1; inset:auto 0 0; height:46px;
  background:linear-gradient(to top, rgba(47,74,47,.09), transparent);
}
.hero-inner { position:relative; z-index:2; display:flex; align-items:center; min-height:525px; }
.hero-copy { width:min(650px, 56%); padding:60px 0 72px; }
.hero-copy h1 { font-size: clamp(2.8rem, 4.6vw, 4.25rem); max-width: 700px; }
.hero-copy p { max-width:535px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:26px; }

.credential-strip { background: var(--green-deep); color:#fff; }
.credential-strip .container { display:grid; grid-template-columns: repeat(3,1fr); text-align:center; }
.credential-strip .container.four-up { grid-template-columns: repeat(4,1fr); }
.credential-item { padding:14px 10px; font-weight:800; border-right:1px solid rgba(255,255,255,.2); }
.credential-item:last-child { border-right:0; }

.section { padding: 78px 0; }
.section-tight { padding: 54px 0; }
.section-cream { background:var(--cream); }
.section-deep { background:var(--green-deep); color:#fff; }
.section-deep h2,.section-deep h3 { color:#fff; }
.grid-2 { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:48px; align-items:center; }
.grid-3 { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:22px; }
.grid-4 { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:20px; }
.card { background:rgba(255,255,255,.66); border:1px solid var(--line); border-radius:var(--radius); padding:25px; box-shadow: 0 12px 28px rgba(74,54,25,.045); }
.card-icon { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; color:var(--green-deep); background:var(--cream-2); font-size:1.25rem; margin-bottom:18px; border:1px solid rgba(199,160,100,.22); }

.intro-grid { display:grid; grid-template-columns: 240px 1fr 220px; gap:42px; align-items:center; }
.portrait-wrap { position:relative; text-align:center; }
.portrait {
  aspect-ratio:1;
  width:220px;
  border-radius:50%;
  object-fit:cover;
  object-position: 50% 38%;
  border:8px solid #fff8e9;
  box-shadow:var(--shadow);
  margin:0 auto 18px;
}
.about-portrait { width:min(420px,100%); height:auto; border-radius:28px; border:8px solid #fff8e9; box-shadow:var(--shadow); margin:0 auto; }
.signature { font-family: var(--serif); color:var(--green-deep); font-size:1.45rem; line-height:1.15; margin-bottom:8px; transform:none; }
.quote-card { background:linear-gradient(150deg,#fff9ee,#f5e7d1); border:1px solid rgba(199,160,100,.2); border-radius:var(--radius); padding:28px; text-align:left; }
.quote-mark { color:var(--orange); font: 3.7rem/1 var(--serif); height:36px; }
.quote-mark-open { text-align:left; }
.quote-mark-close { text-align:right; margin-top:-10px; margin-bottom:2px; }

.approach-grid .card { text-align:center; background:transparent; border:0; border-right:1px solid var(--line); border-radius:0; box-shadow:none; }
.approach-grid .card:last-child { border-right:0; }
.approach-grid .card-icon { margin-left:auto; margin-right:auto; }

.feature-band {
  display:grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  min-height:315px;
  background: linear-gradient(90deg,#fff 0%,var(--paper) 40%,var(--cream) 100%);
}
.feature-image { min-height:315px; overflow:hidden; position:relative; background: var(--cream-2); }
.feature-image img { width:100%; height:100%; object-fit:cover; object-position:center; }
.feature-copy { padding:56px clamp(30px,6vw,84px); align-self:center; }

.service-card { min-height:240px; display:flex; flex-direction:column; }
.service-card .text-link { margin-top:auto; width:max-content; }
.credential-layout { display:grid; grid-template-columns: 180px 1fr 1fr; gap:34px; align-items:center; }
.geha { width:160px; height:auto; margin:auto; }
.check-list { list-style:none; margin:0; padding:0; display:grid; gap:11px; }
.check-list li { padding-left:28px; position:relative; }
.check-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:900; }

.cta-band { background:linear-gradient(135deg,var(--green-deep),#405c32); color:#fff; }
.cta-row { display:flex; justify-content:space-between; align-items:center; gap:24px; padding:34px 0; }
.cta-row h2 { color:#fff; margin-bottom:.25rem; font-size:clamp(1.75rem,2.8vw,2.45rem); }

.page-hero { padding:72px 0 58px; background:linear-gradient(140deg,var(--cream),#fffaf1 62%); border-bottom:1px solid var(--line); }
.page-hero h1 { font-size:clamp(2.45rem,4vw,3.75rem); max-width:920px; }
.page-hero .lead { max-width:760px; }
.page-hero .eyebrow { margin-bottom:12px; display:block; }
.two-col-copy { display:grid; grid-template-columns: .9fr 1.1fr; gap:56px; align-items:start; }
.soft-panel { background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); padding:28px; }

.timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; counter-reset:step; }
.timeline .card { position:relative; padding-top:58px; }
.timeline .card::before { counter-increment:step; content:counter(step); position:absolute; top:18px; left:22px; width:30px; height:30px; border-radius:50%; display:grid; place-items:center; background:var(--green-deep); color:#fff; font-weight:900; }
.topic-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.topic-card { background:#fffdf8; border:1px solid var(--line); border-radius:16px; padding:22px; }
.topic-card h3 { margin-bottom:.4rem; }

.accordion { border-top:1px solid var(--line); }
.accordion details { border-bottom:1px solid var(--line); padding:18px 0; }
.accordion summary { cursor:pointer; font-weight:800; color:var(--green-deep); list-style:none; display:flex; justify-content:space-between; gap:20px; }
.accordion summary::after { content:'+'; color:var(--orange); font-size:1.4rem; }
.accordion details[open] summary::after { content:'–'; }
.accordion details p { padding-top:12px; max-width:900px; color:#4d554b; }

.contact-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap:40px; align-items:start; }
.contact-card { background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); padding:28px; }
.contact-list { list-style:none; padding:0; margin:0; display:grid; gap:20px; }
.contact-list strong { display:block; color:var(--green-deep); }
.contact-link { display:inline-flex; align-items:center; gap:10px; text-decoration:none; }
.contact-link:hover { color:var(--orange); }
.contact-icon {
  width:34px; height:34px; flex:0 0 34px; border-radius:50%;
  display:inline-grid; place-items:center; color:var(--green-deep);
  background:var(--cream-2); border:1px solid rgba(82,107,53,.18);
}
.contact-icon svg { width:17px; height:17px; stroke:currentColor; fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }

.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field { display:grid; gap:7px; }
.form-field.full { grid-column:1 / -1; }
label { font-weight:700; color:var(--green-deep); }
input, select, textarea { width:100%; border:1px solid rgba(47,74,47,.22); border-radius:12px; background:#fff; padding:13px 14px; color:var(--ink); }
input:focus,select:focus,textarea:focus { outline:3px solid rgba(169,80,0,.18); border-color:var(--orange); }
.note { border-left:4px solid var(--orange); background:var(--cream); padding:14px 16px; border-radius:0 12px 12px 0; }

/* Membership page */
.membership-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.membership-card { display:flex; flex-direction:column; min-height:100%; position:relative; overflow:hidden; padding:30px; }
.membership-card.featured { border-color:rgba(169,80,0,.42); box-shadow:0 18px 42px rgba(169,80,0,.10); }
.membership-label { font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); font-weight:900; margin-bottom:8px; }
.membership-card .check-list { margin-bottom:30px; }
.membership-card .button { margin-top:auto; align-self:center; min-width:215px; text-align:center; }
.pricing-note { display:flex; gap:14px; align-items:flex-start; padding:18px 20px; background:#fff7e9; border:1px solid rgba(169,80,0,.20); border-radius:16px; margin-top:28px; }
.compare-wrap { overflow-x:auto; border:1px solid var(--line); border-radius:18px; background:#fffdf8; box-shadow:0 10px 24px rgba(70,54,25,.04); }
.compare-table { width:100%; border-collapse:collapse; min-width:760px; }
.compare-table th,.compare-table td { padding:15px 16px; text-align:center; border-bottom:1px solid var(--line); border-right:1px solid var(--line); }
.compare-table th:first-child,.compare-table td:first-child { text-align:left; font-weight:700; width:30%; }
.compare-table caption { text-align:left; padding:14px 16px; font-weight:800; color:var(--green-deep); background:#fffaf1; border-bottom:1px solid var(--line); }
.compare-table tbody th[scope="row"] { font-family:var(--sans); font-size:1rem; background:#fffdf8; color:var(--ink); }
.compare-table th { background:var(--cream); color:var(--green-deep); font-family:var(--serif); font-size:1.1rem; }
.compare-table th:last-child,.compare-table td:last-child { border-right:0; }
.compare-table tr:last-child td,.compare-table tr:last-child th { border-bottom:0; }
.compare-yes { color:var(--green-deep); font-weight:900; }
.compare-muted { color:var(--muted); }

.policy { max-width:920px; }
.policy h2 { margin-top:2.15rem; font-size:1.68rem; }
.policy h3 { margin-top:1.55rem; font-size:1.2rem; }
.policy ul { padding-left:1.25rem; }
.policy a { color:var(--green-deep); }
.policy-banner { background:#fff7e9; border:1px solid rgba(169,80,0,.20); border-radius:16px; padding:18px 20px; margin-bottom:26px; }

.site-footer { background:#fffaf1; border-top:1px solid var(--line); }
.footer-main { display:grid; grid-template-columns: 1.1fr 1fr 1.05fr; gap:38px; padding:42px 0 28px; }
.footer-brand img { width:168px; margin-bottom:12px; }
.footer-title { font-weight:900; color:var(--green-deep); margin-bottom:10px; }
.footer-contact { display:grid; gap:10px; }
.footer-contact .contact-link { width:max-content; }
.footer-links { display:flex; flex-wrap:wrap; gap:14px 22px; padding:15px 0; border-top:1px solid var(--line); }
.footer-links a { color:#4b5549; font-size:.88rem; }
.footer-bottom { background:var(--green-deep); color:rgba(255,255,255,.87); font-size:.8rem; padding:10px 0; }
.disclaimer-line { font-size:.77rem; color:#666d63; padding:10px 0 17px; max-width:1050px; }

@media (max-width: 1180px) {
  .nav-toggle { display:block; }
  .site-nav { display:none; position:absolute; left:0; right:0; top:82px; background:#fffaf1; padding:22px 20px 26px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .site-nav.open { display:flex; }
  .site-nav .button { width:100%; }
  .hero-copy { width:min(650px, 66%); }
  .hero::after { background-image:linear-gradient(90deg,rgba(251,243,228,.97),rgba(251,243,228,.70) 56%,rgba(251,243,228,.12)),url('../images/hero-sunset.jpg'); }
  .intro-grid { grid-template-columns:220px 1fr; }
  .quote-card { grid-column:1 / -1; max-width:650px; margin:auto; }
  .grid-4,.timeline { grid-template-columns:repeat(2,1fr); }
  .credential-layout { grid-template-columns:150px 1fr; }
  .credential-layout .check-list { grid-column:1 / -1; grid-template-columns:1fr 1fr; }
  .topic-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 760px) {
  .container { width:min(calc(100% - 28px),var(--max)); }
  .brand img { width:145px; }
  .nav-wrap { height:76px; }
  .site-nav { top:76px; }
  h1 { font-size:clamp(2.25rem,10vw,3.15rem); }
  h2 { font-size:clamp(1.75rem,8vw,2.45rem); }
  .page-hero { padding:56px 0 44px; }
  .page-hero h1 { font-size:clamp(2.2rem,10vw,3.1rem); }
  .hero,.hero-inner { min-height:560px; }
  .hero-copy { width:100%; padding:62px 0 68px; }
  .hero-copy h1 { font-size:clamp(2.65rem,11vw,3.75rem); max-width:100%; }
  .hero::after {
    background-image:
      linear-gradient(90deg,rgba(251,243,228,.94),rgba(251,243,228,.70) 63%,rgba(251,243,228,.24)),
      url('../images/hero-sunset.jpg');
    background-position: 58% center;
  }
  .credential-strip .container { grid-template-columns:1fr; }
  .credential-item { border-right:0; border-bottom:1px solid rgba(255,255,255,.17); }
  .credential-item:last-child { border-bottom:0; }
  .section { padding:60px 0; }
  .grid-2,.grid-3,.grid-4,.two-col-copy,.contact-grid,.intro-grid,.credential-layout,.footer-main,.membership-grid { grid-template-columns:1fr; }
  .approach-grid .card { border-right:0; border-bottom:1px solid var(--line); padding:25px 10px; }
  .approach-grid .card:last-child { border-bottom:0; }
  .feature-band { grid-template-columns:1fr; }
  .feature-image { min-height:245px; }
  .feature-copy { padding:42px 28px 48px; }
  .timeline,.topic-grid { grid-template-columns:1fr; }
  .credential-layout .check-list { grid-column:auto; grid-template-columns:1fr; }
  .cta-row { flex-direction:column; align-items:flex-start; }
  .form-grid { grid-template-columns:1fr; }
  .form-field.full { grid-column:auto; }
  .footer-main { gap:23px; }
  .footer-links { gap:10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(169,80,0,.46);
  outline-offset: 3px;
  border-radius: 6px;
}


/* Production polish */
.sr-only {
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}
.portal-link {
  color:var(--green-deep);
  font-weight:800;
  padding-left:2px;
}
.portal-link:hover { color:var(--orange); }

.home-portrait {
  width:250px;
  height:auto;
  border-radius:24px;
  border:7px solid #fff8e9;
  box-shadow:var(--shadow);
  margin:0 auto 18px;
}
.amy-name {
  font-family:var(--serif);
  color:var(--green-deep);
  font-size:1.45rem;
  line-height:1.1;
  margin:0 0 8px;
  letter-spacing:-.015em;
}
.quote-card h3 { margin-bottom:.55rem; }

.booking-layout {
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(520px,1.2fr);
  gap:48px;
  align-items:start;
}
.booking-copy { padding-top:8px; }
.booking-help { display:grid; gap:10px; margin-top:28px; }
.booking-help h3 { margin-bottom:4px; }
.existing-client-card {
  margin-top:30px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fffdf8;
}
.booking-card {
  background:linear-gradient(145deg,#fffdf8,var(--cream));
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}
.better-inline-booking-widget {
  position:relative;
  overflow:hidden;
  width:100%;
  max-width:600px;
  height:820px;
  margin:22px auto 0;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(47,74,47,.12);
}
.better-inline-booking-widget iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border:0;
}

.booking-widget-status {
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:30px;
  text-align:center;
  color:var(--muted);
  background:linear-gradient(145deg,#fff,var(--paper));
  font-weight:700;
}
.booking-widget-status.is-unavailable {
  color:var(--green-deep);
}
.booking-widget-help {
  max-width:600px;
  margin:14px auto 0;
  padding:13px 15px;
  border-radius:12px;
  background:#fff7e9;
  border:1px solid rgba(169,80,0,.20);
  color:#4a5147;
  font-size:.9rem;
}
.booking-widget-help a { color:var(--green-deep); font-weight:700; }
.booking-privacy { margin:16px auto 0; max-width:600px; }
.booking-privacy a { color:var(--green-deep); }

.contact-actions,.inline-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.contact-role-links { margin-top:24px; }
.contact-role-links p { margin-bottom:.55rem; }
.contact-role-links a { color:var(--green-deep); }
.membership-finance-links {
  margin-top:22px;
  padding:16px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.56);
  border:1px solid var(--line);
}
.membership-finance-links p { margin:0; }
.membership-finance-links a { color:var(--green-deep); font-weight:800; }

.patient-resources {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 22px;
  padding:16px 0;
  border-top:1px solid var(--line);
}
.patient-resources .footer-title { margin:0 8px 0 0; }
.patient-resources a {
  color:#4b5549;
  font-size:.88rem;
  font-weight:700;
}
.patient-resources a:hover { color:var(--orange); }
.footer-main strong { color:var(--green-deep); }

/* Slightly calmer desktop type scale on very large displays. */
@media (min-width: 1500px) {
  h1 { font-size:3.85rem; }
  .hero-copy h1 { font-size:4.05rem; }
  .page-hero h1 { font-size:3.55rem; }
}

@media (max-width: 980px) {
  .booking-layout { grid-template-columns:1fr; }
  .booking-card { max-width:720px; width:100%; }
}

@media (max-width: 760px) {
  .home-portrait { width:min(260px,78vw); }
  .amy-name { font-size:1.55rem; }
  .better-inline-booking-widget { height:850px; }
  .booking-card { padding:20px 14px; }
  .patient-resources { align-items:flex-start; flex-direction:column; gap:8px; }
  .patient-resources .footer-title { margin-bottom:4px; }
  .contact-actions,.inline-actions { flex-direction:column; align-items:stretch; }
  .contact-actions .button,.inline-actions .button { width:100%; }
}


/* Clinical launch readiness */
.virtual-practice-banner {
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:center;
  padding:26px 30px;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(135deg,#fffdf8,var(--cream));
}
.virtual-practice-banner h2 { font-size:clamp(1.65rem,2.4vw,2.25rem); margin-bottom:0; }
.card-heading,.panel-heading,.step-heading { font-size:1.45rem; }
.five-step { grid-template-columns:repeat(5,1fr); }
.resource-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.resource-card {
  display:block;
  min-height:220px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fffdf8;
  text-decoration:none;
  box-shadow:0 12px 28px rgba(74,54,25,.045);
  transition:.2s ease;
}
.resource-card:hover { transform:translateY(-2px); border-color:rgba(47,74,47,.34); box-shadow:var(--shadow); }
.resource-card h2 { font-size:1.32rem; line-height:1.16; margin-bottom:.55rem; }
.resource-card p { font-size:.95rem; line-height:1.55; }
.resources-page .page-hero h1 { font-size:clamp(2.35rem,3.4vw,3.2rem); }
.resources-page .page-hero .lead { font-size:1.05rem; }
.role-email-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.role-email-grid > div { padding:22px; border:1px solid var(--line); border-radius:16px; background:#fffdf8; min-width:0; }
.role-heading { font-family:var(--sans); font-size:1rem; overflow-wrap:anywhere; margin:0; }

@media (max-width:1180px) {
  .credential-strip .container.four-up { grid-template-columns:repeat(2,1fr); }
  .five-step { grid-template-columns:repeat(2,1fr); }
  .resource-grid { grid-template-columns:repeat(2,1fr); }
  .role-email-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:760px) {
  .virtual-practice-banner,.resource-grid,.role-email-grid,.five-step { grid-template-columns:1fr; }
  .credential-strip .container.four-up { grid-template-columns:1fr; }
}
