/* ============================================================
   Bookara marketing site — "navy ink on cool marble" design system
   (see /Users/surenl/Downloads/DESIGN.md, a Calendly-style token set):
   near-white canvas, Ink Navy text everywhere instead of pure black,
   a single Signal Blue for primary actions, blue-tinted shadows, and
   decorative magenta/cyan blobs behind product visuals.
   ============================================================ */

:root {
  --font-sans: "Manrope", "Noto Sans Armenian", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ink-navy: #0b3558;
  --signal-blue: #006bff;
  --signal-blue-hover: #0059d6;
  --slate-gray: #476788;
  --mist-gray: #a6bbd1;
  --cloud: #f8f9fb;
  --paper: #ffffff;
  --pebble: #f0f3f8;
  --hairline: #d4e0ed;
  --coral-magenta: #e55cff;
  --sky-cyan: #0099ff;
  --deep-cobalt: #004eba;
  --tint-bg: #e6f0ff;
  --on-accent: #ffffff;
  --navy-panel: #0b3558;
  --header-bg: rgba(248, 249, 251, 0.86);

  --shadow-sm: rgba(71, 103, 136, 0.04) 0px 4px 5px 0px, rgba(71, 103, 136, 0.03) 0px 4px 10px 0px, rgba(71, 103, 136, 0.05) 0px 10px 20px 0px;
  --shadow-card: rgba(71, 103, 136, 0.04) 0px 4px 5px 0px, rgba(71, 103, 136, 0.03) 0px 8px 15px 0px, rgba(71, 103, 136, 0.08) 0px 30px 50px 0px;
  --shadow-button: rgba(71, 103, 136, 0.04) 0px 4px 5px 0px, rgba(71, 103, 136, 0.03) 0px 8px 15px 0px, rgba(71, 103, 136, 0.06) 0px 15px 30px 0px;

  --shell-width: 1200px;
  color-scheme: light;
}

/* Dark theme: same tokens, "ink on marble" inverted to "paper on deep navy".
   Duplicated under the media query (for the no-JS/first-paint case, keyed
   off system preference) and the attribute selector (for the explicit
   toggle in script.js, which always wins once the visitor has picked). */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink-navy: #e8eef7;
    --signal-blue: #2f8cff;
    --signal-blue-hover: #1672d9;
    --slate-gray: #9fb2c9;
    --mist-gray: #64788f;
    --cloud: #0a121c;
    --paper: #101b28;
    --pebble: #16232f;
    --hairline: #223140;
    --deep-cobalt: #7ab8ff;
    --tint-bg: #123156;
    --navy-panel: #122840;
    --header-bg: rgba(10, 18, 28, 0.86);

    --shadow-sm: rgba(0, 0, 0, 0.25) 0px 4px 5px 0px, rgba(0, 0, 0, 0.2) 0px 4px 10px 0px, rgba(0, 0, 0, 0.3) 0px 10px 20px 0px;
    --shadow-card: rgba(0, 0, 0, 0.3) 0px 4px 5px 0px, rgba(0, 0, 0, 0.25) 0px 8px 15px 0px, rgba(0, 0, 0, 0.45) 0px 30px 50px 0px;
    --shadow-button: rgba(0, 0, 0, 0.3) 0px 4px 5px 0px, rgba(0, 0, 0, 0.25) 0px 8px 15px 0px, rgba(0, 0, 0, 0.35) 0px 15px 30px 0px;

    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --ink-navy: #e8eef7;
  --signal-blue: #2f8cff;
  --signal-blue-hover: #1672d9;
  --slate-gray: #9fb2c9;
  --mist-gray: #64788f;
  --cloud: #0a121c;
  --paper: #101b28;
  --pebble: #16232f;
  --hairline: #223140;
  --deep-cobalt: #7ab8ff;
  --tint-bg: #123156;
  --navy-panel: #122840;
  --header-bg: rgba(10, 18, 28, 0.86);

  --shadow-sm: rgba(0, 0, 0, 0.25) 0px 4px 5px 0px, rgba(0, 0, 0, 0.2) 0px 4px 10px 0px, rgba(0, 0, 0, 0.3) 0px 10px 20px 0px;
  --shadow-card: rgba(0, 0, 0, 0.3) 0px 4px 5px 0px, rgba(0, 0, 0, 0.25) 0px 8px 15px 0px, rgba(0, 0, 0, 0.45) 0px 30px 50px 0px;
  --shadow-button: rgba(0, 0, 0, 0.3) 0px 4px 5px 0px, rgba(0, 0, 0, 0.25) 0px 8px 15px 0px, rgba(0, 0, 0, 0.35) 0px 15px 30px 0px;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cloud);
  color: var(--ink-navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  transition: background 0.2s ease, color 0.2s ease;
}

h1,
h2,
h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink-navy);
  line-height: 1.2;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

dd {
  margin: 0;
}

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

.shell {
  width: 100%;
  max-width: var(--shell-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--signal-blue);
  color: var(--on-accent);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

:focus-visible {
  outline: 2px solid var(--signal-blue);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-brass {
  background: var(--signal-blue);
  color: var(--on-accent);
  box-shadow: var(--shadow-button);
}

.btn-brass:hover {
  background: var(--signal-blue-hover);
}

.btn-outline {
  background: var(--paper);
  color: var(--ink-navy);
  border-color: var(--hairline);
}

.btn-outline:hover {
  border-color: var(--signal-blue);
  color: var(--signal-blue);
}

.btn-large {
  padding: 14px 28px;
  font-size: 18px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.site-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  min-height: 64px;
}

.wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink-navy);
  text-decoration: none;
  margin-right: auto;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-navy);
  font-size: 15px;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--signal-blue);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
}

.lang-switch button {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: transparent;
  color: var(--mist-gray);
  border: none;
  padding: 7px 10px;
  cursor: pointer;
}

.lang-switch button + button {
  border-left: 1px solid var(--hairline);
}

.lang-switch button[aria-pressed="true"] {
  background: var(--pebble);
  color: var(--signal-blue);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: transparent;
  color: var(--slate-gray);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

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

.theme-toggle svg {
  width: 17px;
  height: 17px;
}

.theme-toggle .icon-sun {
  display: none;
}

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

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

@media (max-width: 760px) {
  .site-nav {
    display: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: var(--tint-bg);
  color: var(--deep-cobalt);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  max-width: 15ch;
  letter-spacing: -0.01em;
}

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  color: var(--slate-gray);
  max-width: 46ch;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 32px;
}

.hero-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--mist-gray);
}

.hero-domain-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--slate-gray);
}

.hero-domain-note strong {
  color: var(--ink-navy);
  font-weight: 600;
}

.hero-domain-note a {
  color: var(--signal-blue);
  font-weight: 600;
  text-decoration: none;
}

.hero-domain-note a:hover {
  text-decoration: underline;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* ---------- Booking widget card + decorative blobs ---------- */

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.55;
  z-index: 0;
}

.hero-blob-magenta {
  width: 220px;
  height: 220px;
  background: var(--coral-magenta);
  top: -30px;
  right: 10px;
}

.hero-blob-cyan {
  width: 200px;
  height: 200px;
  background: var(--sky-cyan);
  bottom: -20px;
  left: -10px;
}

.booking-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 22px;
  opacity: 0;
  transform: translateY(14px);
  animation: card-in 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) 0.15s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .booking-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@keyframes card-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pebble);
  color: var(--signal-blue);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-navy);
}

.booking-role {
  margin-top: 2px;
  font-size: 13px;
  color: var(--slate-gray);
}

.booking-status {
  margin-left: auto;
  align-self: flex-start;
  background: var(--tint-bg);
  color: var(--deep-cobalt);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}

.booking-divider {
  height: 1px;
  background: var(--hairline);
  margin: 18px 0;
}

.booking-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mist-gray);
  margin-bottom: 10px;
}

.booking-days {
  display: flex;
  gap: 6px;
}

.booking-days span {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-gray);
  background: var(--pebble);
}

.booking-days span.is-selected {
  background: var(--signal-blue);
  color: var(--on-accent);
  font-weight: 700;
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.booking-slots span {
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-navy);
  border: 1px solid var(--hairline);
}

.booking-slots span.is-active {
  background: var(--signal-blue);
  border-color: var(--signal-blue);
  color: var(--on-accent);
  font-weight: 600;
}

.booking-foot {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
}

.booking-foot span {
  color: var(--mist-gray);
}

.booking-foot strong {
  font-weight: 600;
  color: var(--ink-navy);
}

@media (max-width: 900px) {
  .hero-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    order: -1;
  }

  .booking-card {
    max-width: 320px;
  }
}

/* ---------- Who it's for (pill badges) ---------- */

.who {
  padding: 28px 0 48px;
}

.who-title {
  color: var(--slate-gray);
  font-size: 15px;
  margin-bottom: 16px;
  text-align: center;
}

.who-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.who-list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--deep-cobalt);
  background: var(--tint-bg);
  border-radius: 9999px;
  padding: 6px 14px;
}

/* ---------- How it works ---------- */

.how {
  padding: 72px 0;
  border-top: 1px solid var(--hairline);
}

.how h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-align: center;
  margin-bottom: 48px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pebble);
  color: var(--signal-blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.how-steps h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.how-steps p {
  color: var(--slate-gray);
  font-size: 15px;
  line-height: 1.6;
  max-width: 34ch;
}

@media (max-width: 820px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- Benefits ---------- */

.benefits {
  padding: 72px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.benefits h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-align: center;
  margin-bottom: 48px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
  row-gap: 34px;
}

.benefit {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.benefit-full {
  grid-column: 1 / -1;
}

.benefit-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--signal-blue);
  margin-top: 2px;
}

.benefit h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.benefit p {
  color: var(--slate-gray);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .benefits-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing ---------- */

.pricing {
  padding: 80px 0;
}

.pricing h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-align: center;
}

.pricing-sub {
  margin-top: 12px;
  color: var(--slate-gray);
  font-size: 16px;
  max-width: 56ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.period-toggle {
  display: flex;
  justify-content: center;
  margin: 28px auto 0;
  width: fit-content;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.period-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: var(--slate-gray);
  border: none;
  padding: 10px 18px;
  cursor: pointer;
}

.period-btn + .period-btn {
  border-left: 1px solid var(--hairline);
}

.period-btn.is-active {
  background: var(--pebble);
  color: var(--signal-blue);
}

.period-save {
  font-size: 12px;
  color: var(--deep-cobalt);
}

.plans {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-featured {
  border-color: var(--signal-blue);
  box-shadow: var(--shadow-card);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--signal-blue);
  color: var(--on-accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
}

.plan-head h3 {
  font-size: 20px;
  font-weight: 600;
}

.plan-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.plan-price[hidden] {
  display: none;
}

.plan-price-star {
  color: var(--signal-blue);
  font-size: 16px;
}

.plan-price-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink-navy);
}

.plan-price-per {
  color: var(--mist-gray);
  font-size: 13px;
  margin-left: 2px;
}

.plan-desc {
  color: var(--slate-gray);
  font-size: 14px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 14px;
  color: var(--slate-gray);
  padding-left: 20px;
  position: relative;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 1px;
  background: var(--signal-blue);
}

.plan .btn {
  align-self: flex-start;
}

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

/* ---------- FAQ ---------- */

.faq {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.faq h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
}

.faq-item summary {
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--signal-blue);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  margin-top: 14px;
  color: var(--slate-gray);
  font-size: 15px;
  line-height: 1.65;
  max-width: 65ch;
}

/* ---------- Request form ---------- */

.request {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.request-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.request-copy h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.request-copy p {
  margin-top: 12px;
  color: var(--slate-gray);
  font-size: 15.5px;
  max-width: 42ch;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--pebble);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px;
}

.field-full {
  grid-column: 1 / -1;
}

.request .field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-navy);
  margin-bottom: 6px;
}

.request .field input,
.request .field select,
.request .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--ink-navy);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 11px 12px;
}

.request .field textarea {
  min-height: 80px;
  resize: vertical;
}

.request .field input:focus,
.request .field select:focus,
.request .field textarea:focus {
  outline: none;
  border-color: var(--signal-blue);
}

.request-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.request-status.is-success {
  color: var(--deep-cobalt);
}

.request-status.is-error {
  color: #cc3d3d;
}

.request-form > .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

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

  .request-copy p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .request-form {
    grid-template-columns: 1fr;
  }
}

/* ---------- Final CTA ---------- */

.final-cta {
  padding: 72px 0;
  background: var(--navy-panel);
}

.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.final-cta h2 {
  color: var(--on-accent);
  font-size: clamp(24px, 2.8vw, 32px);
  max-width: 20ch;
}

.final-cta .btn-brass {
  background: var(--signal-blue);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
  background: var(--cloud);
}

.site-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.wordmark-footer {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-navy);
}

.footer-tagline {
  margin-top: 4px;
  color: var(--mist-gray);
  font-size: 13px;
}

.footer-contact {
  font-size: 14px;
  color: var(--slate-gray);
}

.footer-contact a {
  color: var(--signal-blue);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}
