/* ===========================
   Narralux Audio Ltd
   Stylesheet
   =========================== */

:root {
  --ink: #0B1220;
  --ink-soft: #131C2F;
  --paper: #FBF8F3;
  --paper-2: #F2ECE0;
  --gold: #C9A24B;
  --gold-deep: #A8842F;
  --line: rgba(11, 18, 32, 0.12);
  --muted: #5A6172;
  --accent: #1E2A44;
  --shadow-sm: 0 1px 2px rgba(11,18,32,.06), 0 1px 4px rgba(11,18,32,.04);
  --shadow-md: 0 10px 30px rgba(11,18,32,.08), 0 2px 8px rgba(11,18,32,.04);
  --shadow-lg: 0 30px 60px rgba(11,18,32,.12);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --header-h: 78px;
  --hero-brown: #F2E4C7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  padding-top: var(--header-h);
}
body.nav-open,
html.nav-open { overflow: hidden; }

h1, h2, h3, h4, .display {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { margin: 0 0 1em; color: var(--ink); }
a { color: var(--gold-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }

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

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

/* ===== Header / Nav ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(251, 248, 243, 0.78);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(11, 18, 32, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}
.logo-mark span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  z-index: 1;
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 1.5px;
  width: 0;
  background: var(--gold);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-cta:hover { background: var(--gold-deep); color: var(--paper); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--gold-deep); color: var(--paper); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--paper); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 100px 0 90px;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201,162,75,0.16), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(30,42,68,0.08), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(201,162,75,0.15);
  color: var(--gold-deep);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
/* Only the hero eyebrow gets the pulse */
.hero .eyebrow::before {
  box-shadow: 0 0 0 0 rgba(201,162,75,0.7);
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(201,162,75,0.75); }
  70% { box-shadow: 0 0 0 8px rgba(201,162,75,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,75,0); }
}
.hero h1 {
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 500;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust svg { color: var(--gold-deep); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--accent) 60%, var(--ink-soft) 100%);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(201,162,75,0.25), transparent 50%);
}
.studio-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11,18,32,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,162,75,0.25);
  padding: 18px 22px;
  border-radius: 14px;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-badge .pulse { display: none; }
.hero-badge small {
  display: block;
  color: rgba(251,248,243,0.65);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.badge-cta {
  color: var(--paper);
  text-decoration: none;
}
.badge-cta:hover { color: var(--gold); }
.badge-cta strong {
  font-size: 1rem;
  display: block;
}
.badge-cta .arr {
  margin-left: auto;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform .2s;
}
.badge-cta:hover .arr { transform: translateX(4px); }

/* ===== Sections ===== */
section { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ===== Services Grid ===== */
.services-section { background: var(--paper-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,162,75,0.4);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
}
.service-card h3 { margin-bottom: 10px; }
.service-card p {
  color: var(--muted);
  font-size: 0.97rem;
  margin: 0;
}

/* ===== Process ===== */
.process-section { background: var(--paper); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 50px;
  position: relative;
}
.step {
  position: relative;
  text-align: left;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ===== Why us ===== */
.why-section {
  background: var(--ink);
  color: var(--paper);
}
.why-section h2, .why-section .eyebrow { color: var(--paper); }
.why-section .eyebrow {
  background: rgba(201,162,75,0.18);
  color: var(--gold);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-item {
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 22px;
}
.why-item h3 { color: var(--paper); margin-bottom: 8px; font-size: 1.2rem; }
.why-item p { color: rgba(251,248,243,0.72); margin: 0; font-size: 0.95rem; }

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid rgba(251,248,243,0.12);
}
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label {
  color: rgba(251,248,243,0.7);
  font-size: 0.92rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--paper-2);
  text-align: center;
}
.cta-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.cta-box h2 { margin-bottom: 18px; }
.cta-box p { color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(251,248,243,0.7);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer .logo { color: var(--paper); margin-bottom: 16px; }
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a {
  color: rgba(251,248,243,0.7);
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--gold); }
.footer-tag {
  font-size: 0.92rem;
  color: rgba(251,248,243,0.6);
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(251,248,243,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(251,248,243,0.5);
}

/* ===== Page header (sub pages) ===== */
.page-hero {
  padding: 90px 0 60px;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(201,162,75,0.12), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 700px; }

/* ===== Prose / legal pages ===== */
.prose {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0;
}
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; font-size: 1.25rem; }
.prose p, .prose li { color: #2A3142; font-size: 1rem; line-height: 1.8; }
.prose ul, .prose ol { padding-left: 1.2em; margin-bottom: 1em; }
.prose strong { color: var(--ink); }
.prose .meta {
  color: var(--muted);
  font-size: 0.92rem;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(160deg, var(--accent) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.value {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(201,162,75,0.15);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.value h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 38px;
}
.contact-info-card h3 { color: var(--paper); margin-bottom: 6px; }
.contact-info-card > p { color: rgba(251,248,243,0.7); margin-bottom: 28px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(251,248,243,0.1);
}
.contact-method:first-of-type { border-top: 0; padding-top: 4px; }
.contact-method .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,162,75,0.15);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-method small {
  display: block;
  color: rgba(251,248,243,0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-method a, .contact-method span {
  color: var(--paper);
  font-size: 0.98rem;
  line-height: 1.45;
}
.contact-method a:hover { color: var(--gold); }

/* ===== Form feedback ===== */
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}
.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(201,162,75,0.15);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 10px;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  section { padding: 70px 0; }
  .hero { padding: 70px 0 60px; }
}

@media (max-width: 720px) {
  /* ===== Mobile header — bigger, matches hero brown ===== */
  :root { --header-h: 60px; }
  .nav { padding: 22px 0; }
  .logo { font-size: 1.4rem; }
  .logo-mark { width: 40px; height: 40px; }
  .logo-mark span { font-size: 1.1rem; }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 70;
    font-size: 1.8rem;
    padding: 4px 6px;
    margin-right: -6px;
  }
  .nav-cta { display: none; }

  /* Home page header — brown matching hero top, frosted on scroll */
  body.page-home { background: #F2E4C7; }
  body.page-home .site-header {
    background:
      radial-gradient(500px 200px at 100% 120%, rgba(201,162,75,0.30), transparent 65%),
      #F2E4C7;
  }
  body.page-home .site-header.scrolled {
    background:
      radial-gradient(500px 200px at 100% 120%, rgba(201,162,75,0.22), transparent 65%),
      rgba(242, 228, 199, 0.75);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom-color: rgba(168, 132, 47, 0.22);
  }

  /* ===== Mobile sidebar — right-based animation (no transform, reliable clicks) ===== */
  .nav-links {
    position: fixed;
    top: var(--header-h);
    right: -360px;
    bottom: 0;
    left: auto;
    width: min(82vw, 320px);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 32px 40px;
    gap: 6px;
    transition: right .35s ease;
    border-top: 1px solid var(--line);
    box-shadow: -24px 0 60px rgba(11,18,32,0.12);
    z-index: 60;
    overflow-y: auto;
    transform: none;
  }
  .nav-links.open { right: 0; }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line);
    list-style: none;
  }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 18px 4px;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--ink);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(201,162,75,0.18);
    transition: color .15s, background .15s, padding-left .2s;
  }
  .nav-links a:hover,
  .nav-links a:active,
  .nav-links a.active {
    color: var(--gold-deep);
    padding-left: 12px;
  }
  .nav-links a::after { display: none; }

  /* Backdrop — must sit BELOW the sidebar in the same stacking context.
     Header creates a stacking context at z-index 50, so the backdrop lives
     inside the header (appended via JS) and uses a z-index lower than the sidebar. */
  .nav-backdrop {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(11,18,32,0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 55;
  }
  .nav-backdrop.show {
    opacity: 1;
    pointer-events: auto;
  }
  /* Sidebar above backdrop within the header's stacking context */
  .nav-links { z-index: 60; }
  .nav-toggle { z-index: 70; }

  /* ===== Mobile hero — soft warm brown ===== */
  .hero {
    padding: 40px 0 56px;
    background:
      radial-gradient(900px 600px at 100% -10%, rgba(201,162,75,0.32), transparent 60%),
      radial-gradient(700px 500px at 0% 110%, rgba(168,132,47,0.16), transparent 60%),
      linear-gradient(168deg, var(--hero-brown) 0%, var(--paper-2) 60%, var(--paper) 100%);
  }
  .hero h1 { margin-bottom: 18px; }

  /* Hide hero visual on mobile — keeps the hero clean and uncluttered */
  .hero-visual { display: none; }

  /* Subpage hero spacing tightened on mobile */
  .page-hero { padding: 48px 0 40px; }

  /* ===== Other mobile tweaks ===== */
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form, .contact-info-card { padding: 28px; }
  .container { padding: 0 22px; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 0.95rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-info-card a,
  .site-footer a { word-break: break-word; }
}
