/* Safion Safety Systems — single-page layout */

:root {
  --navy: #1d2b3a;
  --navy-soft: #2a3d52;
  --navy-muted: #3d4f63;
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-bright: #43a047;
  --green-soft: #e8f5e9;
  --grey: #6b7280;
  --grey-light: #9ca3af;
  --bg: #fafbfc;
  --bg-alt: #f0f2f5;
  --surface: #ffffff;
  --text: #111827;
  --white: #fff;
  --shadow: 0 1px 2px rgba(29, 43, 58, 0.04), 0 8px 32px rgba(29, 43, 58, 0.07);
  --shadow-lg: 0 4px 6px rgba(29, 43, 58, 0.03), 0 24px 48px rgba(29, 43, 58, 0.1);
  --shadow-glow: 0 0 0 1px rgba(46, 125, 50, 0.12), 0 16px 40px rgba(46, 125, 50, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --header-h: 92px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green-dark);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 251, 252, 0.78);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(29, 43, 58, 0.07);
  transition: box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
  border-radius: var(--radius-sm);
}

.brand:visited {
  color: var(--text);
}

.brand:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.brand .brand-name,
.brand .brand-tagline {
  text-decoration: none;
}

.brand-tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  max-width: 22rem;
}

@media (max-width: 960px) {
  .brand-tagline {
    display: none;
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: -0.02em;
  }

  .brand-logo {
    height: 64px;
  }

  :root {
    --header-h: 84px;
  }
}

@media (max-width: 400px) {
  .brand-name {
    font-size: 0.9rem;
  }

  .brand-logo {
    height: 56px;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin-inline: auto;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.75rem;
}

.nav-list a {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-muted);
  text-decoration: none;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-list a:not(.nav-cta):hover {
  color: var(--navy);
  background: rgba(29, 43, 58, 0.06);
}

.nav-cta {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(46, 125, 50, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}

.nav-cta:hover {
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
  filter: brightness(1.05);
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 100%);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(29, 43, 58, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.25rem;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid var(--bg-alt);
  }

  .nav-list li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
  }

  .nav-cta {
    text-align: center;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2.5rem) 1.5rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-construction.jpg");
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.02);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(46, 125, 50, 0.22) 0%, transparent 55%),
    linear-gradient(115deg, rgba(15, 23, 35, 0.92) 0%, rgba(29, 43, 58, 0.82) 42%, rgba(29, 43, 58, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  color: var(--white);
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  text-wrap: balance;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  max-width: 38rem;
  margin-inline: auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  max-width: 44rem;
  margin-inline: auto;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-trust-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.35);
  border: 1px solid rgba(129, 199, 132, 0.6);
  flex-shrink: 0;
  position: relative;
}

.hero-trust-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid rgba(255, 255, 255, 0.95);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 540px) {
  .hero-trust {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust-item {
    justify-content: flex-start;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(46, 125, 50, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46, 125, 50, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll-icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
}

.hero-scroll-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, 6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-icon::after {
    animation: none;
  }

  .hero-bg {
    transform: none;
  }

  .service-card:hover,
  .industry-list li:hover {
    transform: none;
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.65rem;
}

.section-label--center {
  text-align: center;
}

.section-label--on-dark {
  color: rgba(129, 199, 132, 0.95);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--text);
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

.section-intro.muted {
  color: var(--grey);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.25rem;
}

.section-header .section-intro {
  margin-inline: auto;
}

.section-overview {
  background: var(--surface);
  position: relative;
}

.section-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 125, 50, 0.25), transparent);
  pointer-events: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-reverse .split-content {
  order: -1;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  outline: 1px solid rgba(29, 43, 58, 0.06);
  outline-offset: -1px;
}

.split-media-accent {
  position: absolute;
  width: 40%;
  height: 40%;
  background: linear-gradient(135deg, var(--green-soft), transparent);
  border-radius: var(--radius);
  bottom: -12px;
  left: -12px;
  z-index: -1;
}

.split-media-accent--alt {
  left: auto;
  right: -12px;
  background: linear-gradient(-135deg, rgba(29, 43, 58, 0.08), transparent);
}

.lead {
  font-size: 1.125rem;
  color: var(--navy-soft);
}

.tagline-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tagline-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.tagline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 2px;
}

@media (max-width: 900px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-content {
    order: 0;
  }
}

/* Services */
.section-services {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #e8eaee 50%, var(--bg-alt) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  padding: 1.65rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(29, 43, 58, 0.07);
  box-shadow: var(--shadow);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  border-color: rgba(46, 125, 50, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.service-card-wide {
  grid-column: 1 / -1;
  max-width: none;
}

@media (min-width: 700px) {
  .service-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 1000px) {
  .service-card-wide {
    grid-column: span 3;
  }
}

.service-card-icon {
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--grey);
  line-height: 1.6;
}

/* Showcase parallax band */
.section-showcase {
  position: relative;
  padding: clamp(4.5rem, 12vw, 7rem) 0;
  overflow: hidden;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/warehouse.jpg");
  background-size: cover;
  background-position: center;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 43, 58, 0.92), rgba(29, 43, 58, 0.78));
}

.showcase-inner {
  position: relative;
  z-index: 1;
}

.showcase-quote {
  margin: 0;
  max-width: 720px;
}

.showcase-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.showcase-attrib {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

@media (min-width: 901px) {
  .showcase-bg {
    background-attachment: fixed;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-bg {
    background-attachment: scroll;
  }
}

/* Industries */
.industry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.industry-list li {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(29, 43, 58, 0.06);
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.industry-list li:hover {
  border-color: rgba(46, 125, 50, 0.2);
  transform: translateX(4px);
}

/* Why us */
.section-why {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt) 100%);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.why-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.diff-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.diff-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.diff-marker {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-soft);
}

.diff-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.diff-list span:last-child {
  color: var(--grey);
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .why-layout {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.section-contact {
  background: var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(155deg, #16202c 0%, var(--navy) 38%, var(--navy-soft) 100%);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-card .section-title {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.contact-card .section-label {
  position: relative;
  z-index: 1;
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.contact-details {
  font-style: normal;
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.contact-org {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.75rem;
}

.contact-details a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details a:hover {
  color: #c8e6c9;
}

.contact-card .btn-primary {
  position: relative;
  z-index: 1;
}

.contact-card .btn-primary:hover {
  filter: brightness(1.06);
}

.contact-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    order: -1;
  }
}

/* Footer — typographic wordmark (no boxed logo; better contrast & hierarchy on dark UI) */
.site-footer {
  background: linear-gradient(180deg, #18232f 0%, var(--navy) 45%, #151d28 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
}

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

.footer-brand-rule {
  width: 3rem;
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--green) 0%, #1565c0 50%, rgba(255, 255, 255, 0.35) 100%);
  opacity: 0.95;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
  margin: 0;
  line-height: 1.25;
}

.footer-brand-word {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.footer-tag {
  margin: 0;
  font-size: 0.8125rem;
  max-width: 36rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.footer-copy {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
}
