/* T&T Bookkeeping — site styles */

:root {
  --bg: #e8edf4;
  --bg-panel: #ffffff;
  --ink: #0f172a;
  --ink-muted: #475569;
  --accent: #059669;
  --accent-hover: #047857;
  --accent-soft: rgba(5, 150, 105, 0.14);
  --accent-on-dark: #34d399;
  --navy-deep: #0a1628;
  --text-on-navy: #f1f5f9;
  --text-on-navy-muted: #94a3b8;
  --border: rgba(15, 23, 42, 0.12);
  --border-on-navy: rgba(148, 163, 184, 0.18);
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --space: clamp(1rem, 3vw, 2rem);
  --wrap: min(1120px, calc(100% - var(--space) * 2));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-on-navy);
}

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

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #f8fafc;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent-on-dark);
}

.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: 8px;
}

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

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  margin-inline: auto;
  background: #f8fafc;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

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

.nav-list a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover {
  color: var(--accent-on-dark);
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #1e293b;
    border-bottom: 1px solid var(--border-on-navy);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 320px;
  }

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

  .nav-list li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }

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

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

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

/* Hero */

.hero {
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(3rem, 10vw, 6rem);
  background:
    radial-gradient(ellipse 80% 65% at 100% -15%, rgba(16, 185, 129, 0.22), transparent),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(15, 23, 42, 0.5), transparent),
    linear-gradient(165deg, #0f172a 0%, var(--navy-deep) 55%, #080f18 100%);
  color: var(--text-on-navy);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(300px, 400px);
    gap: 3rem;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero .eyebrow {
  color: var(--accent-on-dark);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: #f8fafc;
}

.hero .lead {
  font-size: 1.125rem;
  color: var(--text-on-navy-muted);
  max-width: 36ch;
  margin: 0 0 1.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero .btn-ghost {
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.hero .btn-ghost:hover {
  border-color: var(--accent-on-dark);
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.65rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.hero-stat-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

/* Sections */

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-alt {
  background: linear-gradient(180deg, #dfe7f2 0%, #e8edf4 100%);
  border-block: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: min(42rem, 100%);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-head-left {
  text-align: left;
  margin-inline: 0;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-sub {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.section-head-intro .section-sub {
  max-width: 44rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

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

.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-layout {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.about-prose {
  max-width: none;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-expect {
  flex: 1;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.about-aside-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ink);
}

.about-aside .checklist li:last-child {
  margin-bottom: 0;
}

.about-prose p {
  margin: 0 0 1.15rem;
  color: var(--ink-muted);
}

.about-prose p:last-child {
  margin-bottom: 0;
}

/* Meet the team — hidden for now; remove this block to show again */
.about-team {
  display: none;
}

.about-team {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-team .section-head {
  margin-bottom: 1.5rem;
}

.team-tiles {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 560px) {
  .team-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 52rem;
    margin-inline: auto;
  }
}

.team-tile {
  margin: 0;
}

.team-tile-trigger {
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  perspective: 1000px;
  display: block;
  text-align: center;
  font: inherit;
  color: inherit;
  overflow: hidden;
}

.team-tile-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.team-tile-inner {
  display: grid;
  transition: transform 0.55s ease;
  transform-style: preserve-3d;
}

.team-tile-trigger.is-flipped .team-tile-inner {
  transform: rotateY(180deg);
}

.team-tile-face {
  grid-area: 1 / 1;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.team-tile-front {
  transform: rotateY(0deg);
}

.team-tile-back {
  transform: rotateY(180deg);
  padding: 1.35rem 1.5rem 1.5rem;
  justify-content: center;
  background: var(--bg-panel);
}

.team-photo {
  display: block;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
  overflow: hidden;
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-tile-body {
  display: block;
  padding: 1.15rem 1.35rem 1.35rem;
}

.team-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--ink);
}

.team-role {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.team-bio {
  display: block;
  text-align: left;
  width: 100%;
}

.team-bio-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.team-bio p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.team-tile-hint {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .team-tile-inner {
    transition: none;
    transform-style: flat;
  }

  .team-tile-trigger.is-flipped .team-tile-inner {
    transform: none;
  }

  .team-tile-back {
    transform: none;
    display: none;
  }

  .team-tile-trigger.is-flipped .team-tile-back {
    display: flex;
  }

  .team-tile-trigger.is-flipped .team-tile-front {
    display: none;
  }
}

.section-compact {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.section-compact + .section {
  padding-top: clamp(1.5rem, 3.5vw, 2.25rem);
}

/* Testimonials — hidden for now; remove this block to show "What clients say" again */
.section-testimonials,
li:has(> a[href="#testimonials"]) {
  display: none;
}

.section-testimonials {
  background: linear-gradient(180deg, #e8edf4 0%, #dfe7f2 100%);
  border-block: 1px solid var(--border);
}

.testimonials-carousel {
  --carousel-gap: 1.25rem;
  --slides-per-view: 1;
  width: 100%;
}

@media (min-width: 600px) {
  .testimonials-carousel {
    --slides-per-view: 2;
  }
}

@media (min-width: 900px) {
  .testimonials-carousel {
    --slides-per-view: 3;
  }
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  padding-block: 0.5rem 0.65rem;
}

.testimonials-track {
  display: flex;
  gap: var(--carousel-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.25rem 0.15rem;
  isolation: isolate;
}

.testimonial-card {
  margin: 0;
  height: 100%;
  padding: 1.35rem 1.4rem;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 3px 10px rgba(15, 23, 42, 0.08);
}

.testimonial-quote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

@media (min-width: 900px) {
  .testimonial-quote {
    font-size: 1.05rem;
  }
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.testimonial-meta {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.testimonials-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  margin-top: 1.35rem;
  min-height: 2.75rem;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  min-width: 3rem;
  min-height: 0.75rem;
}

.carousel-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-panel);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

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

.carousel-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #94a3b8;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    transition: none;
  }
}

#testimonials + .section {
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

/* Contact */

.section-contact {
  background: linear-gradient(180deg, #e8edf4 0%, #dfe7f2 100%);
  border-top: 1px solid var(--border);
}

.contact-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-col-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--ink);
}

.contact-col p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.contact-col p:last-of-type {
  margin-bottom: 1.5rem;
}

.contact-col-form {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 4vw, 2rem);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.field .req {
  color: var(--accent);
  font-weight: 700;
}

.field input,
.field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #94a3b8;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-actions {
  margin-top: 0.25rem;
}

.contact-form .btn-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-col-schedule .btn-primary {
  display: inline-block;
  text-align: center;
}

.cards-compact .card p {
  font-size: 0.92rem;
}

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

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--ink-muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.checklist strong {
  color: var(--ink);
}

.pullquote {
  margin: 0;
  padding: 1.75rem;
  background: linear-gradient(
    145deg,
    var(--accent-soft),
    rgba(15, 23, 42, 0.04)
  );
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.pullquote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--ink);
}

.pullquote footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 640px;
  margin-inline: auto;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.steps li:first-child {
  padding-top: 0;
}

.steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.45);
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.steps p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Footer */

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border-on-navy);
  background: var(--ink);
  color: var(--text-on-navy-muted);
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem 2rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.25rem;
    align-items: start;
  }

  .footer-brand {
    grid-row: 1 / span 2;
  }

  .footer-location {
    grid-column: 2 / 4;
    grid-row: 2;
    align-self: start;
  }
}

.footer-col-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-navy-muted);
}

.logo-footer {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: #f8fafc;
}

.footer-tag {
  margin: 0 0 1rem;
  color: var(--text-on-navy-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.footer-badges img {
  display: block;
  width: auto;
  height: 5.5rem;
  max-width: 100%;
}

.footer-location {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
  color: var(--text-on-navy-muted);
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-list a {
  color: var(--accent-on-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-list a:hover {
  color: #6ee7b7;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-on-navy);
  display: grid;
  gap: 0.75rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-on-navy-muted);
}

.fineprint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #94a3b8;
}
