/* ===== Design tokens — monochrome editorial system (black & silver) ===== */
:root {
  --ink: #121212;          /* primary text, dark section bg */
  --ink-soft: #242423;      /* charcoal — secondary dark surfaces */
  --paper: #fcfcfc;         /* elevated card white */
  --panel: #eef0f2;         /* silver-tinted pale canvas — inset sections, tiles, inputs */
  --silver: #c7ccd1;        /* the one accent — filled CTA fill, emphasis text on dark */
  --silver-deep: #9aa0a6;   /* accent hover / darker neutral */
  --silver-bright: #d7dade; /* light neutral highlight on dark surfaces */
  --text-muted: #55585c;
  --line: #e2e4e7;
  --radius: 16px;
  --radius-sm: 4px;
  --container: 1200px;
  --font-head: 'Fredoka', ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Work Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.hero :focus-visible, .callout :focus-visible, .site-footer :focus-visible {
  outline-color: var(--paper);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.45em;
  text-wrap: balance;
  color: var(--ink);
}
h2 { font-size: clamp(2.25rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; color: var(--text-muted); max-width: 62ch; font-size: 1rem; font-weight: 400; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Reveal-on-scroll: one authored moment */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Staggered cascade for grouped cards inside a .reveal block */
.reveal .stagger-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible .stagger-item { opacity: 1; transform: none; }
.reveal.is-visible .stagger-item:nth-child(1) { transition-delay: 0.02s; }
.reveal.is-visible .stagger-item:nth-child(2) { transition-delay: 0.09s; }
.reveal.is-visible .stagger-item:nth-child(3) { transition-delay: 0.16s; }
.reveal.is-visible .stagger-item:nth-child(4) { transition-delay: 0.23s; }
.reveal.is-visible .stagger-item:nth-child(5) { transition-delay: 0.30s; }
.reveal.is-visible .stagger-item:nth-child(6) { transition-delay: 0.37s; }
.reveal.is-visible .stagger-item:nth-child(7) { transition-delay: 0.44s; }
.reveal.is-visible .stagger-item:nth-child(8) { transition-delay: 0.51s; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  z-index: 999;
  transition: transform 0.1s linear;
}

/* Header solidifies once the page has scrolled */
.site-header {
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--ink);
}
.site-header.scrolled .logo img { transform: scale(0.76); }
.logo img { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: left center; }

/* Ambient float on the hero badge */
.hero-badge { animation: badge-float 4.5s ease-in-out infinite; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Subtle pointer-tilt on service tiles */
.service-tile {
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  z-index: 90;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--ink-soft); }
.back-to-top svg { width: 18px; height: 18px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal .stagger-item { opacity: 1; transform: none; transition: none; }
  .hero-badge { animation: none; }
  .service-tile { transform: none !important; }
  .back-to-top { transition: opacity 0.25s ease, visibility 0.25s ease; }
}

.eyebrow {
  color: var(--ink-soft);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  display: inline-block;
  margin-bottom: var(--space-3);
}
.hero .eyebrow { color: #cbd0d4; }

/* Buttons — one filled accent style, one ghost style */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  letter-spacing: normal;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-accent, .btn-dark { background: var(--silver); color: var(--ink); }
.btn-accent:hover, .btn-dark:hover { background: var(--silver-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.55);
  font-weight: 500;
}
.btn-ghost:hover { border-color: var(--paper); background: rgba(255,255,255,0.08); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-weight: 500;
}
.btn-line:hover { background: rgba(18,18,18,0.05); }
.btn::after { content: '\2192'; transition: transform 0.2s ease; }
.btn:hover::after { transform: translateX(3px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 252, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 58px; width: auto; }
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a.active::after,
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active,
.main-nav a:hover { color: var(--ink); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.portal-link {
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.portal-link:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.social-link:hover { background: var(--ink); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 9px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  padding: var(--space-16) 0 var(--space-24);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-16);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  line-height: 1.04;
  margin-bottom: 0.35em;
  color: var(--paper);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: #b8bcc0;
  max-width: 480px;
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cfd2d5;
}
.hero-trust span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver);
  flex-shrink: 0;
}
.hero-media {
  position: relative;
}
.hero-media::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
}
.hero-media .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.1;
  transform: scale(1.1) translateY(var(--parallax-y, 0px));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-media:hover .frame img { transform: scale(1.14) translateY(var(--parallax-y, 0px)); }
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: -24px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 230px;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-badge span { font-size: 0.82rem; color: #aeb2b6; font-weight: 400; }

.hero-small { padding: var(--space-12) 0 var(--space-16); }
.hero-small h1 { font-size: clamp(2.25rem, 4.5vw, 3.25rem); }
.hero-small .hero-media .frame img { aspect-ratio: 4 / 2.6; }
.hero-small .hero-ctas { margin-bottom: 0; }

/* ===== Sections ===== */
section { padding: var(--space-24) 0; }
.section-tight { padding: var(--space-16) 0; }
.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.section-head.left { margin: 0 0 var(--space-12); text-align: left; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
@media (max-width: 640px) {
  .map-frame { aspect-ratio: 4 / 5; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.two-col img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}
.two-col .img-col { padding-top: var(--space-2); }
.two-col.reverse .img-col { order: 2; }
.two-col .btn { margin-top: var(--space-2); }

.service-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.service-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease;
}
.service-tile:hover { border-color: var(--ink); }
.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.05) 30%, rgba(18,18,18,0.9) 100%);
  transition: background 0.3s ease;
}
.service-tile:hover::before { background: linear-gradient(180deg, rgba(18,18,18,0.1) 15%, rgba(18,18,18,0.95) 100%); }
.service-tile-content {
  position: relative;
  z-index: 1;
  padding: var(--space-8);
}
.service-tile-content h4 { color: var(--paper); font-size: 1.3rem; margin-bottom: 8px; }
.service-tile-content p { color: #d8dade; font-size: 0.92rem; max-width: 34ch; margin-bottom: 0; }
.service-tile-content .arrow {
  display: inline-block;
  margin-top: 14px;
  color: var(--silver);
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-tile:hover .service-tile-content .arrow { transform: translateX(4px); }

/* Timeline / process steps */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}
.timeline-step { position: relative; text-align: left; }
.timeline-step .num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.timeline-step h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-step p { font-size: 0.9rem; margin-bottom: 0; }
.timeline-extra {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.timeline-extra .pill {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.timeline-extra .pill .icon-sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.timeline-extra h4 { font-size: 0.95rem; margin-bottom: 2px; }
.timeline-extra p { font-size: 0.88rem; margin-bottom: 0; }

/* Washroom feature list */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-12);
}
.feature-row {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
}
.feature-row .icon-tile {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-row .icon-tile img { width: 26px; height: 26px; object-fit: contain; }
.feature-row h4 { font-size: 0.98rem; margin-bottom: 4px; }
.feature-row p { font-size: 0.9rem; margin-bottom: 0; }

/* Dark section (Forest Dark equivalent) */
.callout {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: var(--space-16) 24px;
}
.callout h2 { color: var(--paper); }
.callout .accent-word { color: var(--silver); }
.callout p { color: #b8bcc0; font-size: 1.1rem; margin: 0 auto 1em; }
.callout p a { color: var(--paper); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.callout .btn { margin-top: var(--space-4); }

/* Inline contact strip (used on service pages) */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-8);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-8) var(--space-8);
}
.contact-strip-text h3 { margin-bottom: 0.2em; }
.contact-strip-text p { margin: 0; }
.contact-strip-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.contact-strip-phone .icon-circle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-strip-phone:hover { color: var(--text-muted); }
.contact-strip .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .contact-strip { flex-direction: column; align-items: flex-start; text-align: left; padding: var(--space-6); }
  .contact-strip .btn { width: 100%; justify-content: center; }
}

/* Testimonials — alternating paper / silver-tinted elevated cards */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: var(--space-8) var(--space-6);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  background: var(--paper);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}
.testimonial:nth-child(2n) { background: var(--panel); }
.testimonial:hover { transform: translateY(-4px); border-color: var(--ink); }
.testimonial::before {
  content: '\201C';
  font-family: var(--font-head);
  font-weight: 400;
  font-size: 3.25rem;
  color: var(--ink);
  opacity: 0.14;
  position: absolute;
  top: 6px;
  left: 20px;
  line-height: 1;
}
.testimonial p { color: var(--ink); font-style: normal; position: relative; }
.testimonial cite {
  display: block;
  margin-top: var(--space-4);
  font-weight: 600;
  font-style: normal;
  color: var(--ink);
  font-size: 0.82rem;
}

/* Trust bar */
.trust-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding: var(--space-8) 0;
}
.trust-bar .item {
  flex: 1;
  min-width: 200px;
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: 0 var(--space-4);
  border-left: 1px solid var(--line);
}
.trust-bar .item:first-child { border-left: none; padding-left: 0; }
.trust-bar strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  margin-bottom: 6px;
}
.trust-bar span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-16);
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-8);
}
.contact-form h3 { font-size: 1.3rem; }
.field { margin-bottom: var(--space-4); }
.field label {
  display: block;
  font-weight: 500;
  font-size: 0.82rem;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--panel);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: var(--paper);
  outline: none;
}
.btn:disabled { opacity: 0.65; cursor: wait; transform: none; }
.form-privacy { margin-top: 14px; font-size: 0.8rem; }
.form-privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}
.contact-info-list li {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}
.contact-info-list .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.contact-info-list h4 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info-list p { margin: 0; }
.form-success {
  display: none;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
  font-weight: 500;
}
.primary-phone {
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 600;
}
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: var(--space-8); font-size: 1.65rem; }
.legal-copy a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--silver-deep);
  padding: var(--space-16) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--ink-soft);
}
.footer-grid h3, .footer-grid h4 { color: var(--paper); }
.footer-grid p { color: #a9adb1; }
.footer-grid a:hover { color: var(--paper); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--space-4);
}
.footer-social .social-link { background: var(--ink-soft); color: var(--paper); }
.footer-social .social-link:hover { background: var(--silver); color: var(--ink); }
.footer-bottom {
  padding-top: var(--space-6);
  text-align: center;
  font-size: 0.85rem;
  color: #8a8e92;
}
.footer-bottom a:hover { color: var(--paper); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav, .header-actions .portal-link { display: none; }
  .nav-toggle { display: flex; }
  .two-col, .contact-grid, .footer-grid, .service-tiles, .feature-list { grid-template-columns: 1fr; }
  .two-col .img-col, .two-col.reverse .img-col { order: -1; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: var(--space-8); }
  .hero-media::before { display: none; }
  .hero-badge { left: 12px; bottom: -20px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-extra { grid-template-columns: 1fr; }
  .testimonials, .trust-bar { grid-template-columns: 1fr; }
  .trust-bar .item { border-left: none; padding-left: 0; }
  section { padding: var(--space-16) 0; }
  .hero { padding: var(--space-12) 0 var(--space-16); }

  .site-header.nav-open .main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .site-header.nav-open .main-nav ul {
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }
  .site-header.nav-open .header-actions .portal-link {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .main-nav { display: block !important; }
}

/* ===== WhatsApp widget ===== */
.whatsapp-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 20px 14px 14px;
  border-radius: 50px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-widget svg { width: 28px; height: 28px; flex-shrink: 0; }
.whatsapp-widget .wa-label {
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
}
.whatsapp-widget:hover { transform: translateY(-3px); }
@media (max-width: 640px) {
  .whatsapp-widget { right: 16px; bottom: 16px; padding: 13px; }
  .whatsapp-widget .wa-label { display: none; }
}
