/* =============================================
   NG Home Services – Shared Stylesheet v2
   ============================================= */

:root {
  --navy:       #132A46;
  --navy-deep:  #0B1B2E;
  --amber:      #E8A93B;
  --amber-bright:#F5BE5C;
  --black:      #14161A;
  --paper:      #F7F5F0;
  --paper-dim:  #EDEAE2;
  --line:       #D8D3C6;
  --gray-text:  #4A4E57;
  --green:      #2A7A4B;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--black);
  font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: 'Zilla Slab', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Emergency Bar ── */
.emergency-bar {
  background: var(--navy-deep);
  color: var(--paper);
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
  letter-spacing: 0.03em;
}
.emergency-bar strong { color: var(--amber-bright); }
.emergency-bar a { color: var(--amber-bright); font-weight: 700; }

/* ── Header / Nav ── */
header {
  background: var(--navy);
  color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
.logo {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo .mark {
  width: 34px; height: 34px; border-radius: 6px;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-weight: 800; font-size: 15px;
  flex-shrink: 0;
}
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(247,245,240,0.82);
  letter-spacing: 0.02em;
  transition: color .15s;
}
nav a:hover, nav a.active { color: var(--amber-bright); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > a::after { content: "▾"; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: rgba(247,245,240,0.8);
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--amber-bright); }
.call-btn {
  background: var(--amber);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.call-btn:hover { background: var(--amber-bright); transform: translateY(-1px); }
.call-btn .sub { display: block; font-weight: 500; font-size: 11px; opacity: .8; }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--paper); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--paper);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero-inner { display: grid; gap: 40px; }
.eyebrow {
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--amber-bright);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Public Sans', sans-serif;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--amber-bright); }
.hero p.lead {
  font-size: 17.5px;
  max-width: 540px;
  color: #D9E0EA;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 16px 26px;
  border-radius: 4px;
  font-size: 16px;
  transition: background .15s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-bright); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(247,245,240,0.4);
  color: var(--paper);
  padding: 15px 26px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: border-color .15s, background .15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--amber-bright); background: rgba(255,255,255,0.05); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0 44px;
  border-top: 1px solid rgba(247,245,240,0.14);
  font-size: 13px;
  color: #C7CFDB;
  letter-spacing: 0.02em;
}
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber-bright); flex-shrink: 0; }

/* ── Response Badge ── */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,160,67,0.15);
  border: 1px solid rgba(46,160,67,0.4);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: #6EE08A;
  font-weight: 600;
  margin-bottom: 20px;
}
.response-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ── Section Shared ── */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .eyebrow { color: #B07A1E; }
.section-head h2 { font-size: clamp(26px, 3.5vw, 36px); color: var(--black); margin-bottom: 12px; }
.section-head p { color: var(--gray-text); font-size: 16px; line-height: 1.65; }

/* ── Timeline ── */
.timeline-section { padding: 80px 0; background: var(--paper); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0; height: 2px;
  background: var(--line);
}
.t-step { position: relative; padding: 0 16px 0 0; }
.t-step .t-time {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  background: var(--paper);
  display: inline-block;
  position: relative;
  z-index: 2;
  padding-right: 10px;
}
.t-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--amber);
  position: relative;
  z-index: 2;
  margin: 10px 0 18px;
}
.t-step h3 { font-size: 17px; margin-bottom: 8px; color: var(--black); }
.t-step p { font-size: 14px; color: var(--gray-text); }

/* ── Services Grid ── */
.services { padding: 80px 0; background: var(--navy-deep); color: var(--paper); }
.services .section-head h2 { color: var(--paper); }
.services .section-head p { color: #C7CFDB; }
.services .eyebrow { color: var(--amber-bright); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(247,245,240,0.12);
  border: 1px solid rgba(247,245,240,0.12);
}
.service-card {
  background: var(--navy-deep);
  padding: 36px;
  transition: background .2s;
}
.service-card:hover { background: #0f2236; }
.service-card .num {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  color: var(--amber-bright);
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: #C7CFDB; margin-bottom: 16px; line-height: 1.6; }
.service-card .learn-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--amber-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-card .learn-more::after { content: "→"; }

/* ── Why Us ── */
.why { padding: 80px 0; background: var(--paper-dim); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.why-item { display: flex; gap: 16px; }
.why-item .icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy);
  color: var(--amber-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.why-item h4 { font-size: 15.5px; margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray-text); }
.quote-card {
  background: var(--navy);
  color: var(--paper);
  padding: 36px;
  border-radius: 6px;
  border-left: 4px solid var(--amber);
}
.quote-card blockquote {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: 'Zilla Slab', serif;
  font-style: italic;
}
.quote-card .sig { font-size: 13px; color: var(--amber-bright); letter-spacing: 0.04em; }

/* ── Reviews ── */
.reviews { padding: 80px 0; background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14.5px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--navy); }
.review-source { font-size: 12px; color: #9CA3AF; margin-top: 2px; }
.reviews-cta { text-align: center; margin-top: 36px; }
.reviews-coming-soon {
  background: var(--paper-dim);
  border: 2px dashed var(--line);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  color: var(--gray-text);
}
.reviews-coming-soon h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.reviews-coming-soon p { font-size: 15px; max-width: 480px; margin: 0 auto; }

/* ── Certifications ── */
.certs { padding: 48px 0; background: var(--navy-deep); }
.certs-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,245,240,0.7);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.cert-badge .badge-icon {
  width: 64px; height: 64px;
  border: 2px solid rgba(232,169,59,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--amber-bright);
}

/* ── Service Area ── */
.area { padding: 64px 0; background: var(--paper); }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  color: var(--navy);
  background: #fff;
}

/* ── FAQ ── */
.faq { padding: 80px 0; background: var(--paper-dim); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 16.5px;
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .faq-icon {
  font-size: 20px;
  color: var(--amber);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--gray-text);
  max-width: 720px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Contact Form ── */
.contact-section { padding: 80px 0; background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(24px,3vw,32px); margin-bottom: 16px; }
.contact-info p { color: var(--gray-text); font-size: 15.5px; margin-bottom: 28px; line-height: 1.7; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
}
.contact-detail .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy);
  color: var(--amber-bright);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 13px; color: var(--gray-text); font-weight: 600; margin-bottom: 2px; }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}
.contact-form h3 { font-size: 20px; margin-bottom: 6px; }
.contact-form .form-sub { font-size: 14px; color: var(--gray-text); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--black);
  background: var(--paper);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--amber);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
  margin-top: 4px;
}
.form-submit:hover { background: var(--amber-bright); }
.form-note { font-size: 12px; color: var(--gray-text); text-align: center; margin-top: 10px; }

/* ── CTA Band ── */
.cta-band {
  background: var(--amber);
  color: var(--navy-deep);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px,3.5vw,34px); margin-bottom: 10px; }
.cta-band p { margin-bottom: 28px; font-size: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-band .btn-dark {
  background: var(--navy-deep);
  color: var(--paper);
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  transition: background .15s;
}
.cta-band .btn-dark:hover { background: var(--navy); }

/* ── Footer ── */
footer {
  background: var(--navy-deep);
  color: #B9C2CF;
  padding: 56px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
footer h4 {
  color: var(--paper);
  font-size: 13px;
  margin-bottom: 16px;
  font-family: 'Public Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
footer a { display: block; margin-bottom: 10px; color: #B9C2CF; transition: color .15s; }
footer a:hover { color: var(--amber-bright); }
.footer-tagline { max-width: 280px; color: #8E97A6; line-height: 1.65; margin-top: 8px; font-size: 13.5px; }
.footer-bottom {
  border-top: 1px solid rgba(247,245,240,0.1);
  padding-top: 20px;
  font-size: 12.5px;
  color: #8E97A6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── Mobile Sticky CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--amber);
  z-index: 200;
  padding: 14px 20px;
  text-align: center;
}
.mobile-cta a {
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 17px;
  display: block;
}
.mobile-cta .sub { font-size: 12px; font-weight: 500; opacity: .8; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--paper);
  padding: 64px 0;
}
.page-hero .eyebrow { color: var(--amber-bright); }
.page-hero h1 { font-size: clamp(28px,4.5vw,46px); margin-bottom: 16px; }
.page-hero p.lead { font-size: 17px; color: #D9E0EA; max-width: 560px; line-height: 1.65; margin-bottom: 28px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(247,245,240,0.55);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: rgba(247,245,240,0.55); }
.breadcrumb a:hover { color: var(--amber-bright); }
.breadcrumb span { color: rgba(247,245,240,0.3); }

/* ── Service Detail ── */
.service-detail { padding: 80px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.service-body h2 { font-size: clamp(22px,3vw,30px); margin-bottom: 14px; color: var(--black); }
.service-body p { font-size: 15.5px; color: var(--gray-text); margin-bottom: 20px; line-height: 1.7; }
.service-body ul { margin-bottom: 20px; }
.service-body ul li {
  font-size: 15px;
  color: var(--gray-text);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.service-body ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}
.service-sidebar {
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: var(--navy);
  color: var(--paper);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 18px; margin-bottom: 12px; }
.sidebar-card p { font-size: 14px; color: #C7CFDB; margin-bottom: 20px; line-height: 1.6; }
.sidebar-card .btn-amber {
  display: block;
  background: var(--amber);
  color: var(--navy-deep);
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  margin-bottom: 10px;
  transition: background .15s;
}
.sidebar-card .btn-amber:hover { background: var(--amber-bright); }
.sidebar-card .btn-outline {
  display: block;
  border: 1.5px solid rgba(247,245,240,0.3);
  color: var(--paper);
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  transition: border-color .15s;
}
.sidebar-card .btn-outline:hover { border-color: var(--amber-bright); }
.other-services { background: var(--paper-dim); border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.other-services h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 14px; }
.other-services a { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--navy); font-weight: 600; }
.other-services a:last-child { border-bottom: none; }
.other-services a:hover { color: var(--amber); }
.other-services a::after { content: "→"; margin-left: auto; color: var(--amber); }

/* ── About ── */
.about-section { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-body h2 { font-size: clamp(24px,3vw,32px); margin-bottom: 16px; }
.about-body p { font-size: 15.5px; color: var(--gray-text); margin-bottom: 18px; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.value-card {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.value-card .v-icon { font-size: 28px; margin-bottom: 10px; }
.value-card h4 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--gray-text); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-deep);
    padding: 16px 24px 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
  }
  nav.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 16px; }
  .dropdown-menu { position: static; display: none; background: transparent; border: none; padding: 0 0 0 16px; box-shadow: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .mobile-cta { display: block; }
  body { padding-bottom: 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
}
:focus-visible { outline: 3px solid var(--amber-bright); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; } }
