@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

/* Caring Home Health Services LLC - Main Stylesheet */

:root {
  --primary: #28645d;
  --primary-dark: #173f3b;
  --primary-light: #72a69b;
  --secondary: #d8876d;
  --accent: #e5efea;
  --accent-warm: #f4efe3;
  --text: #253633;
  --text-light: #526560;
  --text-muted: #73817d;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --border: #dbe3dc;
  --success: #2e7d5b;
  --warning: #b8860b;
  --shadow: 0 18px 45px rgba(23, 63, 59, 0.08);
  --shadow-hover: 0 24px 55px rgba(23, 63, 59, 0.13);
  --radius: 24px;
  --radius-sm: 12px;
  --transition: 180ms ease;
  --font-sans: 'DM Sans', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
  background: var(--off-white);
  background-image: radial-gradient(rgba(23, 63, 59, 0.045) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover, a:focus {
  color: var(--primary-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--primary-light);
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 5.25rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.035em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1.1rem;
  color: var(--text);
}

.lead {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.75;
}

ul, ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

strong {
  font-weight: 600;
  color: var(--primary-dark);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-alt {
  background: var(--white);
}

.section-accent {
  background: var(--accent);
}

.section-header {
  text-align: left;
  max-width: 720px;
  margin: 0 0 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Header / Navigation */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.header-top {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.header-top a {
  color: var(--white);
  text-decoration: none;
}

.header-top a:hover {
  text-decoration: underline;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary-dark);
}

.logo:hover {
  text-decoration: none;
  color: var(--primary);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  border-radius: 16px 16px 16px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--accent);
  color: var(--primary-dark);
  text-decoration: none;
}

.main-nav .btn-nav {
  background: var(--primary-dark);
  color: white !important;
  margin-left: 0.5rem;
}

.main-nav .btn-nav:hover {
  background: var(--primary-dark);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-width: 240px;
  padding: 0.5rem 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}

.dropdown a {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 135, 109, 0.24), transparent 28%),
    linear-gradient(128deg, #173f3b 0%, #22544e 65%, #2b665d 100%);
  color: white;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, transparent, black);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.hero-copy {
  animation: rise-in 700ms both;
}

.eyebrow {
  color: #d7e7df;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.hero h1 em {
  color: #f1c6b6;
  font-weight: 600;
}

.hero .lead {
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin-bottom: 1rem;
}

.hero-promise {
  color: #fff;
  font-weight: 700;
  padding-left: 1rem;
  border-left: 3px solid var(--secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.95rem;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: .42rem .72rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #e9f1ed;
}

.care-path {
  position: relative;
  background: #f4efe3;
  color: var(--text);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 44px 44px 44px 10px;
  box-shadow: 0 35px 70px rgba(5, 24, 22, .28);
  transform: rotate(1.5deg);
  animation: rise-in 700ms 160ms both;
}

.care-path::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 58px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 9px rgba(216, 135, 109, .18);
}

.care-path-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(23, 63, 59, .18);
}

.care-path-kicker,
.care-path-number {
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.care-path ol {
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.care-path li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid rgba(23, 63, 59, .12);
}

.care-path li > span {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 700;
}

.care-path strong { display: block; margin-bottom: .22rem; }
.care-path p { color: var(--text-light); font-size: .9rem; margin: 0; line-height: 1.5; }
.care-path-link { display: inline-flex; gap: .45rem; font-weight: 700; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover, .btn:focus {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #f4efe3;
  color: var(--primary-dark);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.btn-solid {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-solid:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: white;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: 26px 26px 26px 8px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: white;
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Values / Commitment */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.value-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 22px 22px 22px 7px;
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow);
}

.value-item h4 {
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.value-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Service Area */
.service-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.area-card {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(23, 63, 59, .06);
}

/* Content pages */
.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 135, 109, .24), transparent 24%),
    linear-gradient(125deg, var(--primary-dark), var(--primary));
  color: white;
  padding: clamp(3.8rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 0;
}

.content-block {
  max-width: 800px;
}

.content-block h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  margin-top: 1.75rem;
  color: var(--primary);
}

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.steps h4 {
  margin-bottom: 0.35rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.98rem;
}

/* Roles comparison */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.role-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.role-card.highlight {
  border-color: var(--primary);
  border-width: 2px;
}

.role-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.role-card .role-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px 18px 18px 6px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-dark);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 400;
}

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

.faq-item .faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

/* Forms */
.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 28px 28px 28px 9px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 640px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.15);
  background: white;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 1rem;
  background: var(--accent-warm);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--warning);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Contact info box */
.contact-info {
  background: var(--accent);
  padding: 1.75rem;
  border-radius: 28px 28px 28px 9px;
  margin-bottom: 2rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.contact-label {
  display: block;
  margin-top: 1.2rem;
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-info a {
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background:
    radial-gradient(circle at 20% 110%, rgba(216, 135, 109, .35), transparent 30%),
    linear-gradient(135deg, var(--primary-dark), #255d56);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Notice / Disclaimer boxes */
.notice {
  background: var(--accent-warm);
  border-left: 4px solid var(--warning);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

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

.notice p {
  margin-bottom: 0.5rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.disclaimer-box {
  background: #f5f7f9;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .name {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.35rem;
}

.footer-brand .tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.75);
}

.footer-brand a {
  color: rgba(255,255,255,0.9);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Utility */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .care-path {
    max-width: 620px;
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1rem;
  }
  
  .main-nav.open {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }
  
  .main-nav a {
    padding: 0.75rem 1rem;
  }
  
  .main-nav .btn-nav {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
  
  .has-dropdown.open .dropdown {
    display: block;
  }
  
  .header-top {
    font-size: 0.85rem;
  }

  .header-top .container {
    justify-content: center;
    text-align: center;
  }

  .header-top .container > span:first-child {
    display: none;
  }
  
  .hero {
    padding: 3.5rem 0 3rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .logo-text .name {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .care-path::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-meta span {
    width: fit-content;
  }

  .logo-text .tagline {
    display: none;
  }
}

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

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}
