/* Gold Shield Insurance — v1-editorial, static HTML build */

:root {
  --navy: #0b1b33;
  --navy2: #15284a;
  --gold: #d4a843;
  --goldsoft: #e8c470;
  --golddeep: #9c7026;
  --paper: #f3f1e9;
  --paper2: #e9e6da;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--navy);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

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

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

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

::selection {
  background: var(--gold);
  color: var(--navy);
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ── Type & shared components ─────────────────────────────────────────── */
.display {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 0.95;
}

.label-caps {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 700;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border: 1.5px solid var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-line:hover {
  background: var(--navy);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.2rem;
  border: 1.5px solid var(--navy);
  background: var(--navy);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-gold.compact {
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
}
.btn-gold.on-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}
.btn-gold.on-gold:hover {
  background: var(--paper);
  border-color: var(--paper);
}

.grid-dots {
  background-image: radial-gradient(rgba(11, 27, 51, 0.28) 0.5px, transparent 0.5px);
  background-size: 22px 22px;
}
.grid-dots-gold {
  background-image: radial-gradient(rgba(212, 168, 67, 0.5) 0.6px, transparent 0.6px);
  background-size: 22px 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ── Layout helpers ───────────────────────────────────────────────────── */
.container {
  margin-inline: auto;
  max-width: 80rem;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-inline: 3rem;
  }
}

/* ── Header / Navbar ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(11, 27, 51, 0.1);
  background: rgba(243, 241, 233, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-header .container {
  max-width: 80rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lockup img {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
}
.lockup.lg img {
  height: 3.5rem;
  width: 3.5rem;
}
.lockup-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.lockup-name {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.lockup.lg .lockup-name {
  font-size: 1.05rem;
}
@media (min-width: 640px) {
  .lockup.lg .lockup-name {
    font-size: 1.35rem;
  }
}
.lockup.light .lockup-name {
  color: var(--paper);
}
.lockup-sub {
  margin-top: 0.25rem;
  font-size: 0.5rem;
  letter-spacing: 0.62em;
  color: rgba(11, 27, 51, 0.4);
}
.lockup.light .lockup-sub {
  color: rgba(243, 241, 233, 0.45);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-desktop a.nav-link {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(11, 27, 51, 0.55);
  transition: color 0.2s ease;
}
.nav-desktop a.nav-link:hover {
  color: var(--navy);
}

.nav-toggle {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  background: var(--paper);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu-close {
  position: absolute;
  right: 1.5rem;
  top: 1.75rem;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  line-height: 0;
}
.mobile-menu a.nav-link-lg {
  font-size: 1.875rem;
  color: var(--navy);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 9rem 1.5rem 6rem;
}
.hero-grid {
  margin-inline: auto;
  max-width: 80rem;
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
.hero-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  margin: 2.5rem 0 0;
  font-size: 3.4rem;
  line-height: 0.92;
  color: var(--navy);
}
.hero h1 .muted {
  color: rgba(11, 27, 51, 0.2);
}
.hero p.lead {
  margin: 2.5rem 0 0;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.65);
}
.hero-actions {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-spec-wrap {
  position: relative;
}
.hero-spec-dots {
  position: absolute;
  right: -1.5rem;
  top: -1.5rem;
  height: 11rem;
  width: 11rem;
  display: none;
}
.hero-spec {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--navy);
  padding: 2.25rem;
}
.hero-spec-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.hero-spec-top {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
}
.hero-spec-top img {
  height: 5rem;
  width: 5rem;
  object-fit: contain;
}
.hero-spec-est {
  color: rgba(212, 168, 67, 0.7);
}
.hero-spec-bottom {
  position: relative;
}
.hero-spec-rule {
  margin-bottom: 1.5rem;
  height: 1px;
  width: 100%;
  background: rgba(243, 241, 233, 0.15);
}
.hero-spec-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-spec-list li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.hero-spec-n {
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.875rem;
  color: var(--gold);
}
.hero-spec-title {
  font-size: 1.25rem;
  color: var(--paper);
}
.hero-spec-label {
  margin-left: auto;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(243, 241, 233, 0.4);
}
.hero-spec-carriers {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-spec-carriers-num {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.875rem;
  color: var(--gold);
}
.hero-spec-carriers-text {
  font-size: 0.74rem;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.18em;
  color: rgba(243, 241, 233, 0.55);
}

@media (min-width: 640px) {
  .hero {
    padding-top: 11rem;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .hero p.lead {
    font-size: 1.25rem;
  }
  .hero-actions {
    flex-direction: row;
  }
  .hero-spec-dots {
    display: block;
  }
  .hero-spec {
    padding: 2.75rem;
  }
  .hero-spec-top img {
    height: 6rem;
    width: 6rem;
  }
  .hero-spec-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
  .hero-spec-top img {
    height: clamp(6rem, 9vw, 11rem);
    width: clamp(6rem, 9vw, 11rem);
  }
}
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 6.6rem;
  }
}

/* ── Stat band ────────────────────────────────────────────────────────── */
.stat-band {
  border-block: 1px solid rgba(11, 27, 51, 0.1);
  background: rgba(233, 230, 218, 0.6);
}
.stat-band-grid {
  margin-inline: auto;
  max-width: 80rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.stat {
  padding: 3rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(11, 27, 51, 0.1);
  border-bottom: 1px solid rgba(11, 27, 51, 0.1);
}
.stat:nth-child(2n) {
  border-right: none;
}
.stat:nth-child(n + 3) {
  border-bottom: none;
}
.stat-value {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.25rem;
  color: var(--navy);
}
.stat-label {
  margin-top: 0.75rem;
  color: rgba(11, 27, 51, 0.4);
}
@media (min-width: 640px) {
  .stat-value {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .stat-band-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stat {
    padding-block: 4rem;
    border-bottom: none;
  }
  .stat:last-child {
    border-right: none;
  }
}

/* ── Section head ─────────────────────────────────────────────────────── */
.section-head.right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.section-head .label-caps {
  display: block;
  color: rgba(11, 27, 33, 0.4);
}
.section-head h2 {
  margin: 2rem 0 0;
  font-size: 2.7rem;
  line-height: 0.92;
  color: var(--navy);
}
.section-head h2 .muted {
  color: rgba(11, 27, 51, 0.2);
}
@media (min-width: 640px) {
  .section-head h2 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1280px) {
  .section-head h2 {
    font-size: 4.5rem;
  }
}

.section {
  padding: 7rem 1.5rem;
}
@media (min-width: 1024px) {
  .section {
    padding: 9rem 3rem;
  }
}

/* ── Coverage ─────────────────────────────────────────────────────────── */
.coverage-top {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}
.coverage-top > p {
  max-width: 28rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.65);
}
@media (min-width: 1024px) {
  .coverage-top {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 0.75rem;
  }
}

.coverage-grid {
  margin-top: 4rem;
  display: grid;
  border: 1px solid rgba(11, 27, 51, 0.15);
  background: #fff;
}
.coverage-cell {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  transition: background-color 0.5s ease;
  border-bottom: 1px solid rgba(11, 27, 51, 0.15);
}
.coverage-cell:last-child {
  border-bottom: none;
}
.coverage-cell:hover {
  background: var(--navy);
}
.coverage-cell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coverage-cell-top .coverage-icon {
  color: rgba(11, 27, 51, 0.25);
  transition: color 0.5s ease;
}
.coverage-cell:hover .coverage-icon {
  color: var(--gold);
}
.coverage-cell-n {
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.875rem;
  color: rgba(11, 27, 51, 0.3);
  transition: color 0.5s ease;
}
.coverage-cell:hover .coverage-cell-n {
  color: var(--gold);
}
.coverage-cell h3 {
  margin: 2.5rem 0 0;
  font-size: 1.875rem;
  color: var(--navy);
  transition: color 0.5s ease;
}
.coverage-cell:hover h3 {
  color: var(--paper);
}
.coverage-cell p {
  margin: 1.25rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.6);
  transition: color 0.5s ease;
}
.coverage-cell:hover p {
  color: rgba(243, 241, 233, 0.65);
}
.coverage-cell-link {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy);
  transition: color 0.5s ease;
}
.coverage-cell:hover .coverage-cell-link {
  color: var(--gold);
}
@media (min-width: 1024px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .coverage-cell {
    padding: 3rem;
    border-bottom: none;
    border-right: 1px solid rgba(11, 27, 51, 0.15);
  }
  .coverage-cell:last-child {
    border-right: none;
  }
}

/* ── Why a broker ─────────────────────────────────────────────────────── */
.why-section {
  border-block: 1px solid rgba(11, 27, 51, 0.1);
  background: #fff;
}
.why-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.statement-wrap {
  position: relative;
}
.statement-dots {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  height: 11rem;
  width: 11rem;
  display: none;
}
@media (min-width: 1024px) {
  .statement-dots {
    display: block;
  }
}
.statement {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--navy);
  padding: 2.5rem;
}
@media (min-width: 1024px) {
  .statement {
    padding: 3rem;
  }
}
.statement > .label-caps {
  color: rgba(212, 168, 67, 0.7);
}
.statement p {
  font-family: "Cinzel", Georgia, serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.875rem;
  line-height: 1.05;
  color: var(--paper);
}
.statement p .dim {
  color: rgba(243, 241, 233, 0.3);
}
.statement p .gold {
  color: var(--gold);
}
@media (min-width: 640px) {
  .statement p {
    font-size: 2.6rem;
  }
}
.statement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.advantages-list {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(11, 27, 51, 0.1);
}
.advantage {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid rgba(11, 27, 51, 0.1);
}
.advantage-n {
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.125rem;
  color: var(--gold);
}
.advantage h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
}
.advantage p {
  margin: 0.5rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.6);
}

/* ── Process ──────────────────────────────────────────────────────────── */
.process-grid {
  margin-top: 4rem;
  display: grid;
  border: 1px solid rgba(11, 27, 51, 0.15);
}
.process-cell {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2.5rem;
  transition: background-color 0.5s ease;
  border-bottom: 1px solid rgba(11, 27, 51, 0.15);
}
.process-cell:last-child {
  border-bottom: none;
}
.process-cell:hover {
  background: var(--navy);
}
.process-n {
  font-family: "Cinzel", Georgia, serif;
  font-size: 3rem;
  color: rgba(11, 27, 51, 0.15);
  transition: color 0.5s ease;
}
.process-cell:hover .process-n {
  color: var(--gold);
}
.process-cell h3 {
  margin: 2rem 0 0;
  font-size: 1.5rem;
  color: var(--navy);
  transition: color 0.5s ease;
}
.process-cell:hover h3 {
  color: var(--paper);
}
.process-cell p {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.6);
  transition: color 0.5s ease;
}
.process-cell:hover p {
  color: rgba(243, 241, 233, 0.65);
}
@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-cell {
    padding: 3rem;
    border-bottom: none;
    border-right: 1px solid rgba(11, 27, 51, 0.15);
  }
  .process-cell:last-child {
    border-right: none;
  }
}

/* ── CTA / Contact ────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 8rem 1.5rem;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.cta-inner {
  position: relative;
  margin-inline: auto;
  max-width: 64rem;
}
.cta-inner > .label-caps {
  display: block;
  color: rgba(212, 168, 67, 0.7);
}
.cta-inner h2 {
  margin: 2rem 0 0;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--paper);
}
.cta-inner h2 .muted {
  color: rgba(243, 241, 233, 0.2);
}
.cta-inner > p {
  margin: 2.5rem auto 0;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(243, 241, 233, 0.6);
}
.cta-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35em;
}
.cta-tagline span {
  white-space: normal;
}
@media (min-width: 1120px) {
  .cta-tagline span {
    white-space: nowrap;
  }
}
@media (min-width: 640px) {
  .cta-section {
    padding-inline: 3rem;
  }
  .cta-inner h2 {
    font-size: 4.5rem;
  }
}
@media (min-width: 1280px) {
  .cta-inner h2 {
    font-size: 6rem;
  }
}

.contact-grid {
  margin-top: 3.5rem;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(243, 241, 233, 0.15);
  gap: 1px;
}
.contact-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--navy);
  padding: 2.25rem 1.5rem;
  border-top: 1px solid rgba(243, 241, 233, 0.15);
  transition: background-color 0.5s ease;
}
.contact-cell .icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.contact-cell:first-child {
  border-top: none;
}
.contact-cell:hover {
  background: var(--navy2);
}
.contact-cell-text {
  text-align: left;
}
.contact-cell-label {
  display: block;
  color: rgba(243, 241, 233, 0.4);
}
.contact-cell-value {
  margin-top: 0.25rem;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--paper);
}
.contact-cell-value.email {
  font-size: 1rem;
  word-break: break-all;
}
@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-cell {
    border-top: none;
    border-left: 1px solid rgba(243, 241, 233, 0.15);
  }
  .contact-cell:first-child {
    border-left: none;
  }
}

.cta-final-btn {
  margin-top: 2.5rem;
}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid rgba(11, 27, 51, 0.1);
  background: var(--paper);
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) {
  .site-footer {
    padding-inline: 3rem;
  }
}
.footer-inner {
  margin-inline: auto;
  max-width: 80rem;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-center > p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(11, 27, 51, 0.55);
}
.footer-tagline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}
.footer-tagline span {
  white-space: normal;
}
@media (min-width: 830px) {
  .footer-tagline span {
    white-space: nowrap;
  }
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.75rem 2.5rem;
}
@media (min-width: 420px) {
  .footer-nav {
    grid-template-columns: repeat(2, auto);
    justify-content: center;
  }
}
@media (min-width: 700px) {
  .footer-nav {
    grid-template-columns: repeat(4, auto);
  }
}
.footer-nav a {
  white-space: nowrap;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(11, 27, 51, 0.5);
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--navy);
}
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.8rem;
  color: rgba(11, 27, 51, 0.6);
}
.footer-contacts a,
.footer-contacts span {
  font-weight: 600;
}
.footer-contacts a:hover {
  color: var(--gold);
}
.footer-bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(11, 27, 51, 0.1);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(11, 27, 51, 0.35);
}
.footer-disclaimer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.5rem;
}
.footer-disclaimer span {
  white-space: normal;
}
@media (min-width: 590px) {
  .footer-disclaimer span {
    white-space: nowrap;
  }
}
.footer-bottom .footer-copyright {
  margin-top: 0.35rem;
}
