/* =============================================
   SENTRY SYSTEMZ — GLOBAL STYLES
   Theme: Edwards-inspired — clean white, bold red, dark charcoal
   Mobile-first. Zero external dependencies.
   ============================================= */

/* --- TOKENS --- */
:root {
  --red:         #C8102E;
  --red-hover:   #A50D24;
  --red-bg:      #F5F5F5;
  --charcoal:    #1A1A1A;
  --navy:        #1C2B4A;
  --text:        #1A1A1A;
  --text-muted:  #6D6E71;
  --text-light:  #9A9A9C;
  --bg:          #F7F7F7;
  --surface:     #FFFFFF;
  --border:      #E5E5E7;
  --border-dark: #C8C8CA;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow:      0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.14);
  --max-width:   1140px;
  --font:        system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease:        0.2s ease;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.2; color: var(--charcoal); }
p { text-wrap: pretty; }
button, input, select, textarea { font: inherit; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- IMAGE PLACEHOLDERS --- */
.img-placeholder {
  background: #EBEBEB;
  border: 2px dashed var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 24px 16px;
  gap: 8px;
}
.img-placeholder svg { opacity: 0.4; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--border-dark); }
.btn-ghost:hover { border-color: var(--charcoal); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-full { width: 100%; }
.btn.loading .btn-text    { display: none; }
.btn.loading .btn-loading { display: inline; }
.btn-loading              { display: none; }

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 3px solid var(--red);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--charcoal);
}
.header-actions { display: flex; align-items: center; gap: 20px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--ease);
}
.phone-link:hover { color: var(--red); }
.phone-link-text { display: none; }
@media (min-width: 500px) { .phone-link-text { display: inline; } }

/* --- HERO --- */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 60%, rgba(200,16,46,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(200,16,46,0.07) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(200,16,46,0.12);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image placeholder */
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-image .img-placeholder {
  min-height: 300px;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
}
@media (max-width: 767px) {
  .hero-image { display: none; }
}

/* --- SECTION HEADERS --- */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 14px auto 0;
}
.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 18px;
}
.section-header-left { text-align: left; margin-left: 0; }
.section-header-left h2::after { margin-left: 0; }

/* --- SERVICES --- */
.services { padding: 88px 0; background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--ease), transform var(--ease), border-left-color var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-left-color: var(--red);
}
.service-icon {
  width: 52px; height: 52px;
  background: #FBECED;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.services-cta { text-align: center; margin-top: 52px; }

/* --- WHY US --- */
.why-us { padding: 88px 0; background: var(--red-bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-item { padding: 28px 20px; background: var(--surface); border-radius: var(--radius-lg); border-top: 3px solid var(--red); }
.why-icon {
  width: 48px; height: 48px;
  background: #FBECED;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.why-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-item p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* --- CONTACT --- */
.contact { padding: 88px 0; background: var(--surface); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}
@media (min-width: 768px) { .contact-inner { grid-template-columns: 1fr 1fr; } }
.contact-text h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.3px; }
.contact-text h2::after { content: ''; display: block; width: 44px; height: 3px; background: var(--red); margin: 14px 0 0; }
.contact-text > p { font-size: 16px; color: var(--text-muted); margin-top: 20px; margin-bottom: 28px; line-height: 1.7; }
.contact-text a { color: var(--red); text-decoration: underline; }
.contact-assurances { display: flex; flex-direction: column; gap: 12px; }
.contact-assurances li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.contact-assurances li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Form card */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B5B5B7; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.10);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236D6E71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 12px; text-align: center; line-height: 1.5; }
.form-error { font-size: 13px; color: var(--red); margin-top: 10px; min-height: 18px; font-weight: 600; }

/* Success state */
.form-success {
  display: none;
  opacity: 0;
  text-align: center;
  padding: 48px 16px;
  transition: opacity 0.4s ease;
}
.success-icon { margin: 0 auto 20px; }
.form-success h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.form-success p  { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.65; }
.form-success a  { color: var(--red); font-weight: 700; text-decoration: underline; }

/* --- BLOG LISTING PAGE --- */
.blog-hero { background: var(--navy); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.blog-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.blog-hero .eyebrow { margin-bottom: 14px; }
.blog-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.5px; }
.blog-hero p { font-size: 17px; color: rgba(255,255,255,0.68); margin-top: 14px; }
.blog-listing { padding: 72px 0; }
.blog-listing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 600px) { .blog-listing-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .blog-listing-grid { grid-template-columns: 1fr 1fr 1fr; } }
.back-home { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none; margin-bottom: 44px; text-transform: uppercase; letter-spacing: 0.05em; }
.back-home:hover { text-decoration: underline; }

.blog-card { background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: box-shadow var(--ease), transform var(--ease), border-left-color var(--ease); }
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-left-color: var(--red); }
.blog-card-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); }
.blog-card h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); line-height: 1.35; }
.blog-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--text-light); margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }

/* --- SERVICE / ARTICLE PAGES --- */
.page-hero { background: var(--navy); color: #fff; padding: 56px 0; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.page-hero-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
@media (min-width: 768px) { .page-hero-inner { grid-template-columns: 1fr 1fr; } }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.3px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); margin-top: 14px; }
.page-hero-image .img-placeholder { min-height: 260px; background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.45); border-radius: var(--radius-lg); }
@media (max-width: 767px) { .page-hero-image { display: none; } }

.service-content { padding: 72px 0; background: var(--surface); }
.service-content-inner { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 900px) { .service-content-inner { grid-template-columns: 1fr 320px; } }

.service-body h2 { font-size: 24px; font-weight: 800; margin: 40px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.service-body h2:first-child { margin-top: 0; }
.service-body h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; color: var(--charcoal); }
.service-body p { font-size: 16px; color: #2C2C2C; line-height: 1.75; margin-bottom: 16px; }
.service-body ul { margin-bottom: 16px; }
.service-body ul li { font-size: 16px; color: #2C2C2C; padding: 5px 0 5px 20px; position: relative; line-height: 1.65; }
.service-body ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.service-body .article-meta { font-size: 13px; color: var(--text-light); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }

/* In-page image */
.service-body .inline-image { margin: 28px 0; }
.service-body .inline-image .img-placeholder { min-height: 220px; }
.service-body .inline-image figcaption { font-size: 12px; color: var(--text-light); margin-top: 8px; text-align: center; }

/* FAQ section */
.faq-section { margin-top: 48px; padding-top: 40px; border-top: 2px solid var(--border); }
.faq-section h2 { font-size: 24px; font-weight: 800; margin-bottom: 28px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Page sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: var(--bg); border: 1px solid var(--border); border-top: 4px solid var(--red); border-radius: var(--radius-lg); padding: 28px; }
.sidebar-card h4 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--charcoal); }
.sidebar-card ul { display: flex; flex-direction: column; gap: 10px; }
.sidebar-card ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color var(--ease); }
.sidebar-card ul li a:hover { color: var(--red); }
.sidebar-cta { background: var(--navy); color: #fff; border-top-color: var(--red); }
.sidebar-cta h4 { color: rgba(255,255,255,0.6); }
.sidebar-cta p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.65; }
.sidebar-phone { display: flex; align-items: center; gap: 8px; font-size: 18px; font-weight: 800; color: #fff; text-decoration: none; margin-bottom: 16px; }
.sidebar-phone:hover { color: var(--red); }

/* Page breadcrumb */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb nav { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); text-decoration: underline; }
.breadcrumb span { color: var(--text-light); }

/* --- FOOTER --- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 600px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo   { margin-bottom: 14px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.footer-divider { width: 32px; height: 3px; background: var(--red); margin: 16px 0; }

.site-footer h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer ul li { font-size: 14px; line-height: 1.5; }
.site-footer ul a { color: rgba(255,255,255,0.68); text-decoration: none; transition: color var(--ease); }
.site-footer ul a:hover { color: var(--red); }

.footer-bottom { margin-top: 52px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }

/* --- SERVICE PAGE LAYOUT (used in /services/*.html) --- */
/* Outer section wrapper */
.service-content-section { padding: 72px 0; background: var(--surface); }

/* Two-column grid: content + sidebar */
.service-layout { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 900px) { .service-layout { grid-template-columns: 1fr 320px; } }

/* Reset .service-content when used as inner content column (not outer section) */
.service-layout .service-content { padding: 0; background: none; }
.service-layout .service-content h2 { font-size: 22px; font-weight: 800; margin: 36px 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--border); color: var(--charcoal); }
.service-layout .service-content h2:first-child { margin-top: 0; }
.service-layout .service-content p { font-size: 16px; color: #2C2C2C; line-height: 1.75; margin-bottom: 16px; }

/* Sidebar card h3 (same weight as existing h4 style) */
.sidebar-card h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--charcoal); }
.sidebar-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.65; }

/* Sidebar links list */
.sidebar-links { display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; list-style: none; }
.sidebar-links li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color var(--ease); }
.sidebar-links li a:hover { color: var(--red); }

/* "or call us" divider */
.sidebar-or { text-align: center; font-size: 13px; color: var(--text-muted); margin: 14px 0 6px; }

/* Override sidebar-phone for light-bg sidebar cards */
.sidebar-card .sidebar-phone { color: var(--charcoal); font-size: 18px; font-weight: 800; text-decoration: none; display: block; text-align: center; transition: color var(--ease); }
.sidebar-card .sidebar-phone:hover { color: var(--red); }

/* Standalone FAQ section (not nested in .service-body) */
.faq-section { padding: 64px 0; background: var(--bg); }
.faq-section > .container > h2 { font-size: 24px; font-weight: 800; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; }
.faq-list .faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-list .faq-item:first-child { border-top: 1px solid var(--border); }
.faq-list .faq-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.faq-list .faq-item p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* Breadcrumb without nav wrapper */
.breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb .container a { color: var(--text-muted); text-decoration: none; }
.breadcrumb .container a:hover { color: var(--red); text-decoration: underline; }
.breadcrumb .container span { color: var(--text-light); }

/* --- ACCESSIBILITY + MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
