/* =========================================================
   SJ Cleaning Solutions — Stylesheet
   ========================================================= */

:root {
  --radius: 0.875rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);

  /* Palette — warm off-white base, deep slate ink, refined teal accent */
  --background: oklch(0.97 0.008 220);
  --foreground: oklch(0.18 0.03 235);

  --surface: oklch(0.93 0.012 215);

  --card: oklch(1 0 0);
  --card-foreground: oklch(0.18 0.03 235);

  --primary: oklch(0.32 0.07 235);
  --primary-foreground: oklch(0.99 0 0);
  --primary-soft: oklch(0.93 0.02 225);

  --accent: oklch(0.62 0.11 180);
  --accent-foreground: oklch(0.99 0 0);
  --accent-soft: oklch(0.92 0.04 180);

  --muted: oklch(0.94 0.01 225);
  --muted-foreground: oklch(0.42 0.02 235);

  --border: oklch(0.87 0.012 225);
  --ring: oklch(0.62 0.11 180);

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --shadow-soft: 0 12px 34px -14px color-mix(in oklab, var(--primary) 40%, transparent);
  --shadow-card: 0 20px 45px -25px oklch(0.2 0.04 230 / 0.35);
  --shadow-glow:
    0 0 0 1px color-mix(in oklab, var(--accent) 30%, transparent),
    0 20px 60px -20px color-mix(in oklab, var(--accent) 40%, transparent);

  --gradient-hero: linear-gradient(135deg, oklch(0.22 0.03 230) 0%, oklch(0.28 0.05 210) 100%);
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-surface: linear-gradient(180deg, oklch(0.98 0.008 220) 0%, oklch(0.94 0.015 200) 100%);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }
}

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

/* Visible focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: color-mix(in oklab, var(--background) 80%, transparent);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background-image: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}

.brand-text {
  line-height: 1.2;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
}

.brand-sub {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.main-nav a:hover {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  opacity: 0.95;
}

.header-call {
  display: none;
}

@media (min-width: 640px) {
  .header-call {
    display: inline-flex;
  }
}

.header-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.header-call-icon svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 640px) {
  .header-call-icon {
    display: none;
  }
}

/* =========================================================
   Trust badges (shared component)
   ========================================================= */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background-color: var(--card);
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.trust-badge svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-badges--dark .trust-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.18 0.03 235 / 0.95) 0%,
    oklch(0.2 0.04 230 / 0.75) 45%,
    oklch(0.2 0.04 230 / 0.2) 100%
  );
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.18 0.03 235 / 0.7) 0%, transparent 55%);
}

.hero-inner {
  position: relative;
  padding: 6rem 0 7rem;
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 9rem 0 11rem;
  }
}

.hero-content {
  max-width: 42rem;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.eyebrow svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--accent);
}

.hero-content h1 {
  margin-top: 1.25rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.05;
}

@media (min-width: 640px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.75rem;
  }
}

.hero-content p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 36rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
  opacity: 0.95;
}

.btn-ghost-light {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
}

.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-badges {
  margin-top: 2rem;
}

/* =========================================================
   Trust bar
   ========================================================= */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--card);
}

.trust-bar-inner {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-bar-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.trust-bar-item strong {
  font-weight: 500;
  color: var(--foreground);
}

/* =========================================================
   Section shared
   ========================================================= */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-surface {
  background-image: var(--gradient-surface);
}

.section-tint {
  background-color: color-mix(in oklab, var(--muted) 40%, transparent);
}

.section-head {
  max-width: 42rem;
}

.eyebrow-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 600;
}

.eyebrow-label--accent {
  color: var(--accent);
}

.section-head h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .section-head h2 {
    font-size: 2.25rem;
  }
}

.section-head p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  box-shadow: var(--shadow-card);
}

.icon-tile {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.icon-tile svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-card:hover .icon-tile {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.about-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: normal;
}

.about-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* =========================================================
   Services
   ========================================================= */
.services-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.service-card {
  position: relative;
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-card);
}

.service-card--popular {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .service-card--popular {
    transform: translateY(-0.75rem);
  }
}

.service-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.service-badge svg {
  width: 0.75rem;
  height: 0.75rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  background-image: var(--gradient-brand);
  color: var(--primary-foreground);
}

.service-card--popular .service-icon {
  background-image: none;
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card > p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.service-features {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
}

.service-features svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.service-cta {
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  background-color: var(--primary-soft);
  color: var(--primary);
}

.service-cta:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.service-card--popular .service-cta {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-soft);
}

.service-card--popular .service-cta:hover {
  opacity: 0.95;
}

/* =========================================================
   Process / Gallery
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.process-head h2 {
  font-size: 1.875rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .process-head h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .process-head h2 {
    font-size: 3rem;
  }
}

.process-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1rem;
}

.process-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background-color: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-step-line {
  width: 1px;
  flex: 1;
  background-color: var(--border);
  margin-top: 0.5rem;
}

.process-step-body {
  padding-bottom: 0.5rem;
}

.process-step-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: normal;
}

.process-step-body p {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.process-call {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  background-color: color-mix(in oklab, var(--accent-soft) 40%, transparent);
  padding: 1rem;
  transition: background-color 0.2s ease;
}

.process-call:hover {
  background-color: color-mix(in oklab, var(--accent-soft) 70%, transparent);
}

.process-call-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: var(--accent);
  color: var(--accent-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-call-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.process-call-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.process-call-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    gap: 1.25rem;
  }
}

.gallery-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: var(--muted);
  box-shadow: var(--shadow-card);
}

.gallery-figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-figure--offset-down {
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .gallery-figure--offset-down {
    margin-top: 3rem;
  }
}

.gallery-figure--offset-up {
  margin-top: -1rem;
}

@media (min-width: 1024px) {
  .gallery-figure--offset-up {
    margin-top: -1.5rem;
  }
}

/* =========================================================
   Testimonials
   ========================================================= */
.testimonials-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1.75rem;
}

.testimonial-card svg.quote-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: color-mix(in oklab, var(--primary) 40%, transparent);
}

.testimonial-text {
  margin-top: 0.75rem;
  color: color-mix(in oklab, var(--foreground) 90%, transparent);
  line-height: 1.6;
}

.testimonial-stars {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent);
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
}

.testimonial-meta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.testimonial-meta .name {
  font-weight: 600;
}

.testimonial-meta .role {
  color: var(--muted-foreground);
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.contact-info-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  transition: border-color 0.2s ease;
  min-width: 0;
}

a.contact-info-card:hover {
  border-color: var(--primary);
}

.contact-info-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-xl);
  background-color: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}

.contact-info-card-value {
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-form {
  border-radius: var(--radius-3xl);
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  height: fit-content;
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2rem;
  }
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-form > p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-fields {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  margin-top: 0.375rem;
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background-color: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--primary) 20%, transparent);
}

.form-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}

.form-submit:hover {
  opacity: 0.95;
}

.form-submit[data-sent="true"] {
  background-color: var(--accent);
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.form-note a {
  color: var(--primary);
  font-weight: 500;
}

.form-badges {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background-color: var(--foreground);
  color: color-mix(in oklab, var(--background) 90%, transparent);
}

.footer-grid {
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand .brand-title,
.footer-brand .brand-sub {
  color: #fff;
}

.footer-brand .brand-sub {
  opacity: 0.6;
}

.footer-tagline {
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.7;
  max-width: 20rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-col {
  font-size: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.8;
  padding: 0.25rem 0;
  overflow-wrap: anywhere;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

a.footer-contact-item:hover {
  opacity: 1;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  transition: background-color 0.2s ease;
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  padding: 1.25rem 0;
  font-size: 0.75rem;
  opacity: 0.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
