/* ============================================================
   NEW-CLADD LTD — Site Styles
   Brand: cobalt blue on white, amber CTAs, soft section breaks
   ============================================================ */

:root {
  --blue: #1B4E94;
  --blue-dark: #102D5A;
  --blue-light: #E8F0FB;
  --blue-accent: #2E6FBE;
  --amber: #F5A623;
  --amber-dark: #D88B0F;
  --ink: #16212E;
  --muted: #5A6573;
  --line: #E1E6EE;
  --bg: #FFFFFF;
  --bg-soft: #F6F9FD;
  --bg-soft-2: #EEF3FA;
  --shadow-sm: 0 1px 3px rgba(16, 45, 90, 0.08), 0 1px 2px rgba(16, 45, 90, 0.06);
  --shadow-md: 0 6px 18px rgba(16, 45, 90, 0.10);
  --shadow-lg: 0 18px 40px rgba(16, 45, 90, 0.16);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --font-head: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 1.6rem + 2vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 1.4rem + 1vw, 2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============== TOP BAR ============== */
.top-bar {
  background: var(--blue-dark);
  color: #DCE6F4;
  font-size: 0.875rem;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: #ffffff; text-decoration: none; }
.top-bar a:hover { color: var(--amber); }
.top-bar .meta { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar .meta span { white-space: nowrap; }
.top-bar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; opacity: 0.85; }

/* ============== HEADER / NAV ============== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--blue-dark);
  line-height: 0;
}
.brand-img {
  height: 48px;
  width: auto;
  display: block;
}
@media (max-width: 820px) {
  .brand-img { height: 40px; }
}
@media (max-width: 480px) {
  .brand-img { height: 36px; }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--blue-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--blue-light); color: var(--blue); }

.has-sub { position: relative; }
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.has-sub:hover .sub-menu,
.has-sub:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu a { display: block; padding: 10px 12px; font-size: 0.92rem; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  text-decoration: none;
}
.header-phone .label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.header-phone .num { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--blue); margin-top: 4px; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.1s, background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #1A1A1A; }
.btn-primary:hover { background: var(--amber-dark); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: #fff; color: var(--blue-dark); border-color: #fff; }
.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ============== HERO ============== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-color: var(--blue-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
.hero-inner { max-width: 760px; }
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p { color: #DCE6F4; font-size: 1.15rem; margin-bottom: 28px; max-width: 620px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-badge { display: flex; align-items: center; gap: 10px; color: #DCE6F4; font-size: 0.92rem; }
.hero-badge svg { width: 22px; height: 22px; color: var(--amber); }

.hero-compact { padding: 0; }
.hero-compact .container { padding-top: 60px; padding-bottom: 60px; }
.hero-compact h1 { font-size: clamp(1.8rem, 1.5rem + 1.5vw, 2.6rem); }

/* ============== SECTIONS ============== */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-blue { background: var(--blue-dark); color: #fff; }
.section-blue h2, .section-blue h3 { color: #fff; }
.section-blue p { color: #DCE6F4; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ============== GRID + CARDS ============== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: 8px; }
.card-body p { color: var(--muted); margin-bottom: 16px; flex: 1; }
.card-link {
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.card-link::after {
  content: '\2192';
  transition: transform 0.15s;
}
.card-link:hover::after { transform: translateX(4px); }

/* ============== FEATURE CARDS (with icon) ============== */
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.feature-card .icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card .icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ============== SPLIT SECTIONS ============== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-image img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.split h2 { margin-bottom: 18px; }
.split .eyebrow {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}
.split ul { list-style: none; padding: 0; margin: 24px 0; }
.split ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--ink);
}
.split ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--blue-light);
  border-radius: 50%;
}
.split ul li::after {
  content: '';
  position: absolute;
  left: 5px; top: 18px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

/* ============== STATS ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--amber);
  line-height: 1;
}
.stat .label { color: #DCE6F4; font-size: 0.95rem; margin-top: 8px; }
.section-blue .stat .label { color: #DCE6F4; }

/* ============== CTA BANNER ============== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(245,166,35,0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(245,166,35,0.10) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-banner h2 { color: #fff; margin: 0 0 8px; }
.cta-banner p { color: #DCE6F4; margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============== AREAS COVERED ============== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.area-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.area-pill:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue-dark); }
.areas-county {
  margin-bottom: 36px;
}
.areas-county h3 {
  color: var(--blue);
  border-left: 4px solid var(--amber);
  padding-left: 14px;
  margin-bottom: 18px;
}

/* ============== TESTIMONIALS ============== */
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 20px;
  font-size: 4rem;
  color: var(--blue-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial p { font-style: italic; margin-bottom: 16px; color: var(--ink); }
.testimonial .author { display: flex; align-items: center; gap: 10px; }
.testimonial .author strong { color: var(--blue-dark); font-style: normal; }
.testimonial .author span { color: var(--muted); font-size: 0.88rem; font-style: normal; }
.stars { color: var(--amber); display: inline-flex; gap: 2px; margin-bottom: 10px; }
.stars svg { width: 18px; height: 18px; fill: currentColor; }

/* ============== GALLERY ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(16,45,90,0.85), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============== FAQ ============== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  padding: 20px 50px 20px 22px;
  font-weight: 600;
  color: var(--blue-dark);
  list-style: none;
  position: relative;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 300;
  transition: transform 0.15s;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details p { padding: 0 22px 22px; margin: 0; color: var(--muted); }

/* ============== FORM ============== */
.quote-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.quote-form h2 { margin-bottom: 8px; }
.quote-form .form-intro { color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 0.9rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,78,148,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

/* ============== ACCREDITATIONS ============== */
.accred-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: stretch;
  gap: 14px;
  padding: 28px 0;
  max-width: 900px;
  margin: 0 auto;
}
.accred {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.9;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 10px;
  background: #fff;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}
.accred small { display: block; font-size: 0.68rem; opacity: 0.7; margin-top: 2px; font-weight: 500; letter-spacing: 0.08em; }

@media (max-width: 1024px) {
  .accred-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .accred-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .accred { font-size: 0.82rem; padding: 10px 8px; }
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--blue-dark);
  color: #C7D3E5;
  padding: 60px 0 0;
}
.site-footer a { color: #DCE6F4; }
.site-footer a:hover { color: var(--amber); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col p { color: #C7D3E5; }
.footer-brand .brand-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .brand-foot strong {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-row svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #91A1BD;
}

/* ============== STICKY MOBILE CALL ============== */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--amber);
  color: #1A1A1A;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-family: var(--font-head);
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  text-decoration: none;
  font-size: 1rem;
}
.mobile-call:hover { background: var(--amber-dark); color: #fff; }

/* ============== UTILITY ============== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 32px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
  .header-phone .label { display: none; }
}

@media (max-width: 820px) {
  body { padding-bottom: 60px; }
  .top-bar { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; width: 100%; }
  .has-sub > a::after { display: none; }
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    background: transparent;
    min-width: auto;
  }
  .sub-menu a { font-size: 0.9rem; color: var(--muted); padding: 8px 14px; }
  .header-cta .header-phone { display: none; }
  .header-cta .btn { padding: 10px 16px; font-size: 0.9rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat .num { font-size: 2.2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .section { padding: 56px 0; }
  .mobile-call { display: block; }
  .cta-banner { text-align: center; }
  .cta-banner .container { justify-content: center; }
  .cta-banner .actions { justify-content: center; }
  .quote-form { padding: 24px; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .brand .wordmark span { display: none; }
  .brand .wordmark strong { font-size: 1.2rem; }
  .brand .logo-mark { width: 38px; height: 38px; }
}

/* Smooth fade-in for sections (no JS) */
@media (prefers-reduced-motion: no-preference) {
  .section, .hero-inner { animation: fadeIn 0.5s ease-out backwards; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Print */
@media print {
  .top-bar, .site-header, .site-footer, .mobile-call, .cta-banner { display: none; }
  body { color: #000; }
}
