/* Gateway Wound Care — Global Styles */
:root {
  --bg-dark: #0f1a1a;
  --bg-card: #162222;
  --bg-card-hover: #1a2a2a;
  --gold: #c8a45c;
  --gold-light: #e0c872;
  --cream: #f5f0e8;
  --text-white: #f0f0f0;
  --text-light: #c8c8c8;
  --text-mid: #8a9a9a;
  --accent-teal: #2a7a6a;
  --accent-teal-light: #3a9a88;
  --border-subtle: #243535;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

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

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(15, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-logo {
  font-family: var(--font-sans);
  font-size: 20px; font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.5px;
}
.nav-logo span { font-weight: 300; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase; color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-white); }
.nav-cta {
  background: var(--gold); color: var(--bg-dark);
  padding: 10px 22px; border-radius: 4px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); color: var(--bg-dark); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text-white); margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 16px;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--bg-dark); padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links.open { display: flex; }
}

/* HERO */
.hero {
  display: flex; align-items: center; justify-content: space-between;
  padding: 80px 48px 60px;
  max-width: 1200px; margin: 0 auto;
  gap: 60px;
}
.hero-text { flex: 1; max-width: 560px; }
.hero-label {
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-label::before {
  content: ''; display: block;
  width: 40px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-sans);
  font-size: 48px; font-weight: 700; line-height: 1.15;
  color: var(--text-white); margin-bottom: 24px;
}
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic; color: var(--gold);
}
.hero p {
  font-size: 17px; line-height: 1.7;
  color: var(--text-mid); margin-bottom: 32px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--accent-teal); color: var(--text-white);
  padding: 14px 28px; border-radius: 4px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-transform: uppercase; transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--accent-teal-light); color: var(--text-white); }
.hero-phone { font-size: 15px; color: var(--text-mid); }
.hero-phone a { color: var(--text-light); }

.hero-cards { flex: 1; max-width: 400px; display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 8px; padding: 24px;
  transition: border-color 0.2s;
}
.hero-card:hover { border-color: var(--accent-teal); }
.hero-card-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--bg-card-hover); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-card h3 { font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 6px; }
.hero-card p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 40px 24px; gap: 40px; }
  .hero h1 { font-size: 34px; }
  .hero-cards { max-width: 100%; }
}

/* SECTION GENERIC */
.section {
  padding: 80px 48px;
  max-width: 1200px; margin: 0 auto;
}
.section-dark { background: var(--bg-card); }
.section-full { max-width: 100%; padding: 80px 0; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section h2 {
  font-size: 34px; font-weight: 700; color: var(--text-white);
  margin-bottom: 16px; line-height: 1.2;
}
.section h2 em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.section-intro {
  font-size: 16px; color: var(--text-mid); max-width: 640px;
  line-height: 1.7; margin-bottom: 48px;
}

/* GRID CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: 8px; padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--accent-teal); transform: translateY(-2px); }
.card h3 { font-size: 18px; font-weight: 600; color: var(--text-white); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.card-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.3px;
}

/* CONTENT PAGE LAYOUT */
.page-hero {
  padding: 80px 48px 40px;
  max-width: 1200px; margin: 0 auto;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero h1 {
  font-size: 40px; font-weight: 700; color: var(--text-white);
  margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: var(--text-mid); max-width: 640px; line-height: 1.7; }

.content {
  padding: 60px 48px;
  max-width: 800px; margin: 0 auto;
}
.content h2 {
  font-size: 26px; font-weight: 700; color: var(--text-white);
  margin: 40px 0 16px;
}
.content h3 {
  font-size: 20px; font-weight: 600; color: var(--gold);
  margin: 32px 0 12px;
}
.content p {
  font-size: 16px; color: var(--text-light);
  line-height: 1.75; margin-bottom: 16px;
}
.content ul { margin: 16px 0 24px 20px; }
.content li {
  font-size: 15px; color: var(--text-light);
  line-height: 1.7; margin-bottom: 8px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--accent-teal), #1a5a4a);
  padding: 60px 48px; text-align: center;
}
.cta-banner h2 { font-size: 30px; color: var(--text-white); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.btn-white {
  display: inline-block;
  background: white; color: var(--bg-dark);
  padding: 14px 32px; border-radius: 4px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
  text-transform: uppercase; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; color: var(--bg-dark); }

/* FORM */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-light); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-dark); border: 1px solid var(--border-subtle);
  border-radius: 4px; color: var(--text-white);
  font-size: 15px; font-family: var(--font-sans);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px; text-align: center;
}
.footer-logo {
  font-size: 18px; font-weight: 700; color: var(--text-white);
  margin-bottom: 8px;
}
.footer-logo span { font-weight: 300; color: var(--gold); }
.footer p { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; }
.footer-links { margin-top: 16px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-mid); }
.footer-links a:hover { color: var(--text-white); }
.footer-disclaimer {
  margin-top: 24px; font-size: 11px; color: var(--text-mid);
  max-width: 600px; margin-left: auto; margin-right: auto;
  line-height: 1.5; opacity: 0.7;
}

/* STATS ROW */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; padding: 60px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stat { text-align: center; }
.stat-number { font-size: 36px; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-mid); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* FAQ ACCORDION */
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--text-white);
}
.faq-q:hover { color: var(--gold); }
.faq-q::after { content: '+'; font-size: 22px; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-q::after { content: '-'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }

/* ===== ENHANCED SECTIONS ===== */

/* WOUNDS WE TREAT GRID (homepage) */
.wounds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.wound-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 28px 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.wound-card:hover { border-color: var(--accent-teal); transform: translateY(-2px); }
.wound-card h3 {
  font-size: 18px; font-weight: 600; color: var(--text-white);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.wound-card p {
  font-size: 14px; color: var(--text-mid); line-height: 1.65;
  margin-bottom: 12px;
}
.wound-card .card-link { margin-top: 4px; }

/* WHAT TO EXPECT STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 40px;
  counter-reset: step-counter;
}
.step-item {
  position: relative;
  padding-left: 60px;
  min-height: 80px;
}
.step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0; top: 0;
  width: 44px; height: 44px;
  background: var(--accent-teal);
  color: var(--text-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  line-height: 44px;
  text-align: center;
}
.step-item h3 {
  font-size: 16px; font-weight: 600; color: var(--text-white);
  margin-bottom: 6px;
}
.step-item p {
  font-size: 14px; color: var(--text-mid); line-height: 1.6;
}

/* WHY CHOOSE SECTION */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 28px;
}
.trust-item h3 {
  font-size: 17px; font-weight: 600; color: var(--gold);
  margin-bottom: 10px;
}
.trust-item p {
  font-size: 14px; color: var(--text-mid); line-height: 1.65;
}

/* PROVIDER SUPPORT SECTION */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.provider-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.2s;
}
.provider-card:hover { border-color: var(--gold); }
.provider-card h3 {
  font-size: 16px; font-weight: 600; color: var(--text-white);
  margin-bottom: 10px;
}
.provider-card p {
  font-size: 14px; color: var(--text-mid); line-height: 1.65;
}

/* MID-PAGE CTA */
.mid-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.mid-cta h3 {
  font-size: 22px; font-weight: 700; color: var(--text-white);
  margin-bottom: 10px;
}
.mid-cta p {
  font-size: 15px; color: var(--text-mid); margin-bottom: 20px;
}
.mid-cta .btn-primary { margin: 0 8px; }

/* INLINE CTA BAR */
.inline-cta {
  background: linear-gradient(135deg, var(--accent-teal), #1a5a4a);
  border-radius: 8px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 48px 0;
  flex-wrap: wrap;
}
.inline-cta p {
  font-size: 17px; font-weight: 600; color: var(--text-white);
  margin: 0;
}
.inline-cta .btn-white { flex-shrink: 0; }

@media (max-width: 768px) {
  .inline-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* INSURANCE BADGE */
.insurance-badge {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 24px 32px;
  text-align: center;
  margin: 40px 0;
}
.insurance-badge p {
  font-size: 16px; font-weight: 600; color: var(--text-white);
  margin: 0;
}
.insurance-badge span {
  display: block; margin-top: 6px;
  font-size: 14px; font-weight: 400; color: var(--text-mid);
}

/* SERVICE AREA LOCATION GRID */
.location-section {
  margin-bottom: 48px;
}
.location-section h3 {
  font-size: 20px; font-weight: 600; color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.location-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 20px 24px;
}
.location-item h4 {
  font-size: 16px; font-weight: 600; color: var(--text-white);
  margin-bottom: 6px;
}
.location-item p {
  font-size: 13px; color: var(--text-mid); line-height: 1.6;
  margin: 0;
}

/* CONTENT PAGE INTERNAL LINKS */
.content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.content a:hover {
  color: var(--gold-light);
}

/* CONDITION PAGE CONDITION BLOCKS */
.condition-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.condition-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* PROVIDER PAGE ROLE SECTIONS */
.role-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
.role-section h3 {
  font-size: 20px; font-weight: 600; color: var(--gold);
  margin-bottom: 12px;
}
.role-section p {
  font-size: 15px; color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.role-section p:last-child { margin-bottom: 0; }

/* ABOUT PAGE VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 28px;
}
.value-card h3 {
  font-size: 17px; font-weight: 600; color: var(--gold);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px; color: var(--text-mid); line-height: 1.65;
}

/* REFERRAL INFO BOX */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 24px 0;
}
.info-box h3 {
  font-size: 18px; font-weight: 600; color: var(--gold);
  margin-bottom: 10px;
}
.info-box p {
  font-size: 15px; color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}
.info-box p:last-child { margin-bottom: 0; }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .section { padding: 48px 24px; }
  .content { padding: 40px 24px; }
  .page-hero { padding: 48px 24px 32px; }
  .page-hero h1 { font-size: 30px; }
  .cta-banner { padding: 40px 24px; }
  .cta-banner h2 { font-size: 24px; }
  .wounds-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mid-cta { padding: 28px 20px; }
  .insurance-badge { padding: 20px; }
  .role-section { padding: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .section h2 { font-size: 26px; }
  .content h2 { font-size: 22px; }
}

/* ===== NEW STYLES ===== */

/* SCROLL PADDING FOR STICKY NAV */
html { scroll-padding-top: 80px; }

/* STICKY MOBILE CTA BAR */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(15, 26, 26, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold);
  padding: 12px 16px;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* BREADCRUMBS */
.breadcrumbs {
  background: var(--bg-card);
  padding: 12px 48px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumbs a {
  color: var(--gold);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.breadcrumbs span {
  margin: 0 8px;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .breadcrumbs { padding: 12px 24px; font-size: 11px; }
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-left-color: var(--gold-light);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-rating {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* TRUST BADGES ROW */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  padding: 24px 0;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.trust-badge-item::after {
  content: '|';
  margin-left: 24px;
  color: var(--text-mid);
}

.trust-badge-item:last-child::after {
  content: '';
  margin-left: 0;
}

.trust-badge-icon {
  font-size: 16px;
}

@media (max-width: 768px) {
  .trust-badges { gap: 16px; padding: 16px 0; }
  .trust-badge-item { font-size: 12px; }
  .trust-badge-item::after { margin-left: 16px; }
}

/* BLOG/ARTICLE CARD STYLES */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.blog-card-meta span {
  padding: 4px 8px;
  background: var(--bg-card-hover);
  border-radius: 4px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.blog-card-link:hover {
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ACCESSIBILITY: FOCUS STYLES */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

/* PRINT STYLES */
@media print {
  .nav,
  .sticky-cta,
  .cta-banner,
  .breadcrumbs {
    display: none;
  }

  body {
    background: white;
    color: black;
    line-height: 1.6;
  }

  a {
    color: #0066cc;
    text-decoration: underline;
  }

  .section,
  .content {
    max-width: 100%;
    padding: 0;
  }

  .card,
  .wound-card,
  .trust-item,
  .provider-card,
  .testimonial-card,
  .blog-card {
    background: white;
    border: 1px solid black;
    page-break-inside: avoid;
  }
}
