:root {
  --ink: #0b0f14;
  --paper: #fcfcfb;
  --surface: #ffffff;
  --gold: #c18a1a;
  --gold-soft: #e6c167;
  --muted: #5e6770;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -50px;
  z-index: 80;
  padding: 0.55rem 0.9rem;
  border-radius: 0.6rem;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  top: 0.8rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 252, 251, 0.92);
  border-bottom: 1px solid rgba(11, 15, 20, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(193, 138, 26, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(193, 138, 26, 0.35) 22%,
    var(--gold) 50%,
    rgba(193, 138, 26, 0.35) 78%,
    transparent 100%
  );
  pointer-events: none;
}

/* ── Logo ── */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  overflow: hidden;
}

.logo-img {
  height: 4.4rem;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 320px;
  transform: scale(1.08);
  transform-origin: left center;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: rgba(11, 15, 20, 0.95);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ── Mobile menu toggle ── */
.menu-toggle {
  min-height: 44px;
  min-width: 44px;
  border: 1px solid rgba(11, 15, 20, 0.16);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Nav links ── */
.mobile-link,
.nav-link {
  color: rgba(11, 15, 20, 0.8);
  text-decoration: none;
  font-weight: 600;
  transition: color 220ms ease;
}
.mobile-link {
  padding: 0.5rem 0.2rem;
}
.nav-link:hover,
.mobile-link:hover {
  color: rgba(11, 15, 20, 1);
}
.nav-link:focus-visible,
.mobile-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 0.35rem;
}

/* ── Buttons ── */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.78rem;
  border: 1px solid transparent;
  padding: 0.65rem 1.1rem;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-outline {
  color: var(--ink);
  border-color: rgba(11, 15, 20, 0.45);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(11, 15, 20, 0.04);
}
.btn-ink {
  color: #fff;
  background: var(--ink);
  border-color: rgba(11, 15, 20, 0.1);
}
.btn-ink:hover {
  background: #101826;
}
.btn-gold {
  color: rgba(11, 15, 20, 0.95);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px rgba(193, 138, 26, 0.28);
}
.btn-gold:hover {
  box-shadow: 0 14px 34px rgba(193, 138, 26, 0.38);
}
.btn-outline-invert {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
}
.btn-outline-invert:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1610375461246-83df859d849d?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 15, 20, 0.88) 0%,
    rgba(11, 15, 20, 0.72) 50%,
    rgba(24, 36, 52, 0.80) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  align-items: center;
}

/* Hero kicker on dark background */
.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(11, 15, 20, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
  color: rgba(11, 15, 20, 0.76);
  background: linear-gradient(90deg, rgba(193, 138, 26, 0.17), transparent);
}
.kicker-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, rgba(193, 138, 26, 0.35), transparent);
}

.hero-title {
  margin-top: 1.1rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-title-light {
  color: #ffffff;
}

.hero-copy {
  margin-top: 1rem;
  max-width: 58ch;
  color: rgba(11, 15, 20, 0.74);
  line-height: 1.72;
}
.hero-copy-light {
  color: rgba(255, 255, 255, 0.75);
}

/* Hero profile card — glassmorphism on dark */
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 15, 20, 0.1);
  border-radius: 1.25rem;
  box-shadow: 0 18px 44px rgba(11, 15, 20, 0.08);
  padding: 1.5rem;
}
.hero-card-dark {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* Hero trust chips on dark */
.trust-chip {
  border: 1px solid rgba(11, 15, 20, 0.1);
  border-radius: 0.9rem;
  background: #fff;
  padding: 0.82rem;
}
.trust-chip-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.trust-chip-dark .chip-title {
  color: rgba(255, 255, 255, 0.6);
}
.trust-chip-dark .chip-value {
  color: rgba(255, 255, 255, 0.88);
}

.chip-title {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(11, 15, 20, 0.72);
}
.chip-value {
  display: block;
  margin-top: 0.32rem;
  font-size: 0.88rem;
  color: rgba(11, 15, 20, 0.92);
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.trust-bar article {
  border: 1px solid rgba(11, 15, 20, 0.09);
  border-radius: 1rem;
  background: #fff;
  padding: 1.25rem;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}
.trust-bar article:hover {
  border-color: rgba(193, 138, 26, 0.3);
  box-shadow: 0 8px 24px rgba(11, 15, 20, 0.06);
}
.trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.65rem;
  background: rgba(193, 138, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.trust-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: var(--gold);
}
.trust-bar h2 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
}
.trust-bar p {
  margin: 0;
  color: rgba(11, 15, 20, 0.68);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* ─────────────────────────────────────────
   SECTION TYPOGRAPHY
───────────────────────────────────────── */
.section-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(11, 15, 20, 0.55);
}
.section-label-light {
  color: rgba(255, 255, 255, 0.65);
}
.section-title {
  margin-top: 0.9rem;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-copy {
  margin-top: 0.9rem;
  max-width: 62ch;
  color: rgba(11, 15, 20, 0.72);
  line-height: 1.74;
}

/* ─────────────────────────────────────────
   PREMIUM CARDS
───────────────────────────────────────── */
.premium-card,
.assurance-card,
.quote-card,
.timeline-card,
.metric-card {
  border: 1px solid rgba(11, 15, 20, 0.09);
  border-radius: 1rem;
  background: #fff;
  transition: transform 200ms ease, border-color 220ms ease, box-shadow 220ms ease;
  cursor: default;
}
.premium-card,
.assurance-card,
.metric-card {
  padding: 1.1rem;
}
.premium-card:hover,
.assurance-card:hover,
.quote-card:hover,
.timeline-card:hover,
.metric-card:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 138, 26, 0.32);
  box-shadow: 0 16px 40px rgba(11, 15, 20, 0.09);
}
.premium-card h3,
.assurance-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}
.premium-card p,
.assurance-card p {
  margin: 0;
  color: rgba(11, 15, 20, 0.7);
  line-height: 1.66;
  font-size: 0.92rem;
}

/* ─────────────────────────────────────────
   WHY IMAGE PANEL
───────────────────────────────────────── */
.why-image-panel {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(193, 138, 26, 0.25),
    0 32px 80px rgba(11, 15, 20, 0.18);
}
.why-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* ─────────────────────────────────────────
   OFFICE GALLERY SLIDESHOW
───────────────────────────────────────── */
.gallery-section {
  background: linear-gradient(180deg, #0f1720 0%, var(--ink) 100%);
}
.gallery-label {
  color: rgba(255, 255, 255, 0.5);
}
.gallery-title {
  color: #fff;
}

.slideshow {
  position: relative;
  margin-top: 2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.slides-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  margin: 0;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(11, 15, 20, 0.85), transparent);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Arrow buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 200ms ease, border-color 200ms ease;
  padding: 0;
}
.slide-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
}
.slide-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.slide-btn svg {
  width: 1.15rem;
  height: 1.15rem;
}
.slide-prev {
  left: 1rem;
}
.slide-next {
  right: 1rem;
}

/* Dot indicators */
.slide-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 220ms ease, transform 220ms ease, width 220ms ease;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
  width: 1.25rem;
}
.dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─────────────────────────────────────────
   PROCESS SECTION
───────────────────────────────────────── */
.process-wrap {
  background: linear-gradient(180deg, rgba(193, 138, 26, 0.09), rgba(193, 138, 26, 0.02));
  border-top: 1px solid rgba(11, 15, 20, 0.07);
  border-bottom: 1px solid rgba(11, 15, 20, 0.07);
}

.timeline-card {
  padding: 1.1rem;
}
.timeline-card .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(193, 138, 26, 0.22), rgba(230, 193, 103, 0.12));
  color: rgba(11, 15, 20, 0.95);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(193, 138, 26, 0.25);
}
.timeline-card h3 {
  margin: 0.8rem 0 0.45rem;
  font-size: 1rem;
  font-weight: 800;
}
.timeline-card p {
  margin: 0;
  color: rgba(11, 15, 20, 0.7);
  line-height: 1.65;
  font-size: 0.9rem;
}

/* Desktop connector line between steps */
@media (min-width: 1024px) {
  .process-steps {
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 2.3rem;
    left: 3.5rem;
    right: 3.5rem;
    height: 1px;
    background: linear-gradient(90deg,
      rgba(193, 138, 26, 0.08),
      rgba(193, 138, 26, 0.4) 30%,
      rgba(193, 138, 26, 0.4) 70%,
      rgba(193, 138, 26, 0.08)
    );
    pointer-events: none;
  }
}

/* ─────────────────────────────────────────
   GLOBAL CONFIDENCE SECTION
───────────────────────────────────────── */
.confidence-section {
  background: linear-gradient(135deg, rgba(193, 138, 26, 0.055) 0%, rgba(252, 252, 251, 1) 60%);
  border-top: 1px solid rgba(193, 138, 26, 0.1);
  border-bottom: 1px solid rgba(193, 138, 26, 0.1);
}

/* ─────────────────────────────────────────
   METRIC CARDS
───────────────────────────────────────── */
.metric-card {
  text-align: left;
}
.metric-value {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.2rem);
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 700;
  color: rgba(11, 15, 20, 0.96);
}
.metric-label {
  margin: 0.45rem 0 0;
  color: rgba(11, 15, 20, 0.64);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   QUOTE / TESTIMONIAL CARDS
───────────────────────────────────────── */
.quote-card {
  padding: 1.35rem;
}
.quote-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(11, 15, 20, 0.76);
  font-size: 0.97rem;
}
.quote-card .quote-meta {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: rgba(11, 15, 20, 0.48);
}

/* ─────────────────────────────────────────
   CONTACT BAND
───────────────────────────────────────── */
.contact-band {
  background: linear-gradient(165deg, #111a26 0%, #0b0f14 58%, #182434 100%);
}
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  padding: 1.4rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-card h3 {
  margin: 0;
  font-size: 1.07rem;
  font-weight: 700;
  color: #fff;
}
.contact-card dd {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}
.contact-card dt {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-shell {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26);
}

.contact-detail-stack {
  display: grid;
  gap: 0.85rem;
}

.contact-detail-row {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.contact-detail-value {
  color: rgba(255, 255, 255, 0.93);
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail-value:hover {
  color: #fff;
}

.contact-form-dark .contact-field label {
  color: rgba(255, 255, 255, 0.9);
}

.contact-form-dark .contact-field input,
.contact-form-dark .contact-field textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.contact-form-dark .contact-field input::placeholder,
.contact-form-dark .contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form-dark .contact-field input:focus,
.contact-form-dark .contact-field textarea:focus {
  border-color: rgba(230, 193, 103, 0.65);
  box-shadow: 0 0 0 3px rgba(193, 138, 26, 0.18);
}

/* ─────────────────────────────────────────
   CONTACT PAGE & FORM
───────────────────────────────────────── */
.contact-page-main {
  min-height: 50vh;
}

.contact-form-card {
  border: 1px solid rgba(11, 15, 20, 0.1);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: 0 18px 48px rgba(11, 15, 20, 0.07);
  padding: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(11, 15, 20, 0.85);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(11, 15, 20, 0.14);
  border-radius: 0.75rem;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(193, 138, 26, 0.55);
  box-shadow: 0 0 0 3px rgba(193, 138, 26, 0.15);
}

.contact-field textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
}

/* Form feedback banners (contact page + home success) */
.form-feedback-banner {
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
  transition: opacity 220ms ease, transform 220ms ease;
}

.form-feedback-banner.hidden,
.form-feedback-banner[hidden] {
  display: none !important;
}

.form-feedback-banner--error {
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.28);
  color: #7f1d1d;
}

.form-feedback-banner--success {
  background: rgba(22, 101, 52, 0.1);
  border: 1px solid rgba(22, 101, 52, 0.28);
  color: #14532d;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(circle at top center, rgba(193, 138, 26, 0.16), transparent 28%),
    linear-gradient(180deg, #101721 0%, #0b0f14 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-eyebrow {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(230, 193, 103, 0.76);
}

.footer-title {
  margin: 0.85rem 0 0;
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.2;
  color: #fff;
}

.footer-copy {
  margin: 1rem 0 0;
  max-width: 42ch;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
}

.footer-heading {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.72rem;
}

.footer-list li {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer-list a,
.footer-bottom-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-list a:hover,
.footer-bottom-link:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATION
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 580ms ease, transform 580ms ease;
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 150ms; }
.reveal-delay-3 { transition-delay: 220ms; }
.reveal-delay-4 { transition-delay: 290ms; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (min-width: 640px) {
  .hero-card {
    padding: 1.75rem;
  }
}

@media (min-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 0.9fr;
  }
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .btn:hover,
  .premium-card:hover,
  .assurance-card:hover,
  .quote-card:hover,
  .timeline-card:hover,
  .metric-card:hover {
    transform: none;
  }
  .slide {
    transition: none !important;
  }
}
