:root {
  color-scheme: light dark;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --muted-light: #64748b;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-soft: #ccfbf1;
  --accent-glow: rgba(20, 184, 166, 0.35);
  --line: #e2e8f0;
  --hero-bg: #020617;
  --hero-mid: #0f172a;
  --footer-bg: #020617;
  --header-bg: color-mix(in srgb, #ffffff 90%, transparent);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.35);
  --max: 76rem;
  --ril: #2486fb;
  --comfort: #14b8a6;
  --named: #223248;
  --named-gold: #d9a45d;
  --bcn: #0070f3;
}

[data-theme="dark"] {
  --bg: #0b0f17;
  --surface: #141a26;
  --surface-elevated: #1a2233;
  --text: #e6edf6;
  --muted: #94a3b8;
  --muted-light: #64748b;
  --line: #26314a;
  --accent-soft: rgba(13, 148, 136, 0.18);
  --header-bg: color-mix(in srgb, #141a26 92%, transparent);
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.28);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b0f17;
    --surface: #141a26;
    --surface-elevated: #1a2233;
    --text: #e6edf6;
    --muted: #94a3b8;
    --muted-light: #64748b;
    --line: #26314a;
    --accent-soft: rgba(13, 148, 136, 0.18);
    --header-bg: color-mix(in srgb, #141a26 92%, transparent);
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.28);
  }
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

h1,
h2,
h3,
.display {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
  font-weight: 400;
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--accent-hover);
}

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

picture {
  display: block;
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #042f2e;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--header-bg);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 2.35rem;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
}

.brand-logo--light {
  display: none;
}

[data-theme="light"] .brand-logo--dark {
  display: block;
}

[data-theme="light"] .brand-logo--light {
  display: none;
}

[data-theme="dark"] .brand-logo--dark {
  display: none;
}

[data-theme="dark"] .brand-logo--light {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand-logo--dark {
    display: none;
  }

  :root:not([data-theme="light"]) .brand-logo--light {
    display: block;
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) .brand-logo--dark {
    display: block;
  }

  :root:not([data-theme="dark"]) .brand-logo--light {
    display: none;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a,
.nav-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
}

.nav a:hover,
.nav-link:hover {
  color: var(--accent);
}

.nav-link.is-active {
  color: var(--text);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 9999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.theme-toggle svg {
  width: 1.125rem;
  height: 1.125rem;
}

.icon-moon {
  display: none;
}

[data-theme="dark"] .icon-sun {
  display: none;
}

[data-theme="dark"] .icon-moon {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .icon-sun {
    display: none;
  }

  :root:not([data-theme="light"]) .icon-moon {
    display: block;
  }
}

[data-theme="light"] .icon-sun {
  display: block;
}

[data-theme="light"] .icon-moon {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-lg {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #042f2e;
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.28);
}

.btn-primary:hover {
  background: #14b8a6;
  color: #042f2e;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 0.625rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem 1.25rem 1.25rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav a:hover {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--accent);
}

.mobile-nav .btn-primary {
  margin-top: 0.75rem;
  width: 100%;
  color: #042f2e;
}

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

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-actions .btn-primary {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--hero-bg) 0%, var(--hero-mid) 48%, #0f172a 100%);
  color: #f8fafc;
  padding: 3.5rem 0 4.5rem;
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    url("/images/art/ambient-texture.svg") center / 480px repeat,
    radial-gradient(circle at 15% 18%, var(--accent-glow), transparent 42%),
    radial-gradient(circle at 88% 6%, rgba(36, 134, 251, 0.18), transparent 38%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1100px) {
  .hero {
    padding: 4.5rem 0 5.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
  }
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #5eead4;
}

.hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  max-width: 14ch;
}

.hero-lead {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #cbd5e1;
}

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

.hero-stats {
  display: grid;
  gap: 0.875rem;
  margin: 2.75rem 0 0;
  padding: 0;
}

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

.stat {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.125rem;
  backdrop-filter: blur(8px);
}

.stat dt {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #99f6e4;
}

.stat dd {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #94a3b8;
}

/* Portfolio mosaic */
.portfolio-mosaic {
  position: relative;
  display: grid;
  gap: 1rem;
}

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

.mosaic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: inherit;
  background: rgba(15, 23, 42, 0.65);
  box-shadow: var(--shadow-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mosaic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.mosaic-card--ril { border-color: color-mix(in srgb, var(--ril) 45%, transparent); }
.mosaic-card--comfort { border-color: color-mix(in srgb, var(--comfort) 45%, transparent); }
.mosaic-card--named { border-color: color-mix(in srgb, var(--named-gold) 40%, transparent); }
.mosaic-card--cards { border-color: color-mix(in srgb, var(--bcn) 40%, transparent); }

.mosaic-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.mosaic-media--square {
  aspect-ratio: 1 / 1;
}

.mosaic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mosaic-card:hover .mosaic-media img {
  transform: scale(1.04);
}

.mosaic-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 6, 23, 0.55) 100%);
  pointer-events: none;
}

.mosaic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem 1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mosaic-brand {
  height: 1.75rem;
  width: auto;
  max-width: 70%;
  object-fit: contain;
  object-position: left center;
}

.mosaic-brand--named {
  height: 2rem;
}

.mosaic-cta {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(153, 246, 228, 0.25);
  background: rgba(13, 148, 136, 0.12);
  transition: background 0.15s, color 0.15s;
}

.mosaic-card:hover .mosaic-cta {
  background: rgba(13, 148, 136, 0.28);
  color: #ecfeff;
}

@media (min-width: 1100px) {
  .mosaic-card--ril {
    grid-row: span 2;
  }

  .mosaic-card--ril .mosaic-media {
    aspect-ratio: auto;
    flex: 1;
    min-height: 12rem;
  }

  .mosaic-card--cards {
    grid-column: 2;
  }
}

/* Brand strip */
.brand-strip {
  padding: 1.75rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.brand-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .brand-strip-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.brand-strip-label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.brand-strip-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.75rem 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-strip-logos img {
  height: 2rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(0.15);
  transition: opacity 0.15s, filter 0.15s;
}

.brand-strip-logos li:hover img {
  opacity: 1;
  filter: none;
}

[data-theme="dark"] .brand-strip-logos img,
:root:not([data-theme="light"]) .brand-strip-logos img {
  opacity: 0.9;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand-strip-logos img {
    opacity: 0.9;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
  scroll-margin-top: 5rem;
}

.section-alt {
  background: color-mix(in srgb, var(--surface) 70%, var(--bg));
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  line-height: 1.15;
}

.section-heading .lead {
  margin: 0.875rem 0 0;
  color: var(--muted);
  font-size: 1.0625rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.about-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.about-panel--visual {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 6%, var(--surface)), var(--surface));
}

.about-logo {
  height: 2.5rem;
  width: auto;
  margin-bottom: 1.25rem;
}

.about-logo--light,
.contact-logo--light {
  display: none;
}

[data-theme="dark"] .about-logo--dark,
[data-theme="dark"] .contact-logo--dark {
  display: none;
}

[data-theme="dark"] .about-logo--light,
[data-theme="dark"] .contact-logo--light {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .about-logo--dark,
  :root:not([data-theme="light"]) .contact-logo--dark {
    display: none;
  }

  :root:not([data-theme="light"]) .about-logo--light,
  :root:not([data-theme="light"]) .contact-logo--light {
    display: block;
  }
}

.about-tagline {
  margin: 0 0 1.25rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--text);
}

.about-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.about-subhead {
  margin-top: 1.5rem;
}

.about-panel p {
  margin: 0;
  color: var(--muted);
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.about-list--checks li::before {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  top: 0;
}

/* Product showcase */
.showcase-grid {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.showcase {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.showcase:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.showcase--ril {
  border-top: 4px solid var(--ril);
}

.showcase--comfort {
  border-top: 4px solid var(--comfort);
}

.showcase--named {
  border-top: 4px solid var(--named-gold);
}

.showcase--cards {
  border-top: 4px solid var(--bcn);
}

.showcase-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0f172a;
}

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

.showcase-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.625rem 1.75rem;
}

.showcase-logo {
  height: 2rem;
  width: auto;
  max-width: 14rem;
  margin-bottom: 0.5rem;
  object-fit: contain;
  object-position: left center;
}

.showcase-logo--wide {
  height: 2.35rem;
  max-width: 16rem;
}

.showcase-logo-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.showcase-mark {
  width: 2.25rem;
  height: 2.25rem;
}

.showcase-wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.showcase-tag {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-light);
}

.showcase-body p {
  flex: 1;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.showcase-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, var(--bg));
  transition: border-color 0.15s, color 0.15s, background 0.15s, transform 0.15s;
}

.showcase--ril .showcase-cta:hover { border-color: var(--ril); color: var(--ril); }
.showcase--comfort .showcase-cta:hover { border-color: var(--comfort); color: var(--comfort); }
.showcase--named .showcase-cta:hover { border-color: var(--named-gold); color: #b45309; }
.showcase--cards .showcase-cta:hover { border-color: var(--bcn); color: var(--bcn); }

.showcase-cta:hover {
  transform: translateY(-1px);
}

/* Values */
.values-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.value-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.625rem 1.75rem;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.value-card:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.value-icon--teal {
  background: rgba(13, 148, 136, 0.14);
  color: var(--accent);
}

.value-icon--navy {
  background: rgba(34, 50, 72, 0.12);
  color: var(--named);
}

.value-icon--blue {
  background: rgba(36, 134, 251, 0.12);
  color: var(--ril);
}

.value-icon--gold {
  background: rgba(217, 164, 93, 0.16);
  color: #b45309;
}

.value-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-logo {
  height: 2.25rem;
  width: auto;
  margin-bottom: 1.25rem;
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-card strong {
  color: var(--text);
}

.contact-note-inline {
  margin-bottom: 0 !important;
  font-size: 0.9rem;
}

.contact-aside {
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
  padding: 1.5rem 1.625rem;
  background: color-mix(in srgb, var(--accent) 4%, var(--surface));
}

.contact-aside h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.contact-aside p {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-brands {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-brands li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.15s, transform 0.15s;
}

.contact-brands li:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  transform: translateX(2px);
}

.contact-brands img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.contact-brands a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.contact-brands a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: #94a3b8;
  padding: 3.5rem 0 2.5rem;
  font-size: 0.9rem;
}

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

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 2.5rem;
  width: auto;
  margin-bottom: 0.875rem;
}

.footer-brand p {
  margin: 0;
  max-width: 22rem;
  line-height: 1.65;
  color: #64748b;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  font-family: "DM Sans", system-ui, sans-serif;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
}

/* Legal pages */
.legal {
  padding: 3rem 0 4.5rem;
}

.legal h1 {
  margin-top: 0;
  font-size: 2.25rem;
}

.legal p,
.legal li {
  color: var(--muted);
  max-width: 42rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal-minimal .footer-bottom {
  margin-top: 0;
  border: none;
  padding-top: 0;
}

a:focus-visible,
button:focus-visible,
.mosaic-card:focus-visible,
.showcase-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.mosaic-card:focus-visible {
  border-radius: var(--radius-lg);
}
