/* Fleet Feet Orthopedics LLC — marketing site */

:root {
  --navy: #0f2744;
  --navy-deep: #0a1a2e;
  --slate: #3d4f66;
  --slate-mid: #5a6b80;
  --slate-light: #8a9bb0;
  --border: #d5dde8;
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --accent: #1e4d7b;
  --accent-hover: #163a5c;
  --gold: #c4a35a;
  --text: #1a2433;
  --text-muted: #5a6b80;
  --shadow: 0 12px 40px rgba(15, 39, 68, 0.08);
  --radius: 10px;
  --max: 1100px;
  --header-h: 72px;
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

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

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

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

a:hover {
  color: var(--accent-hover);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.brand:hover {
  color: var(--navy);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--accent) 55%, var(--gold) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-llc {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--slate-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: var(--slate);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
  border-radius: 6px;
}

.site-nav a:hover {
  color: var(--navy);
  background: var(--surface-alt);
}

.site-nav .nav-cta {
  margin-left: 0.35rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(30, 77, 123, 0.12), transparent 55%),
    linear-gradient(165deg, #0a1a2e 0%, #0f2744 48%, #163a5c 100%);
  color: #e8eef6;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero-accent {
  position: absolute;
  inset: auto -10% -40% auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.18), rgba(30, 77, 123, 0.25));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

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

.section .eyebrow {
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  color: #c9d6e8;
  max-width: 38rem;
}

.hero-sub {
  margin: 0 0 1.75rem;
  color: #a8b8cc;
  max-width: 36rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: #d4b46e;
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: #e8eef6;
  border-color: rgba(232, 238, 246, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-card-portrait {
  display: flex;
  justify-content: center;
  margin: 0 0 1.15rem;
}

.hero-card-portrait img {
  display: block;
  width: 9.5rem;
  height: 9.5rem;
  max-width: none;
  max-height: none;
  min-width: 7.5rem;
  min-height: 7.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 3px solid rgba(196, 163, 90, 0.55);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card-name {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.hero-card-role {
  margin: 0 0 1.25rem;
  color: #b8c7da;
  font-size: 0.95rem;
}

.hero-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.hero-card-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.1rem;
  color: #d0dbeb;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Value strip */
.value-strip {
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.value-strip p {
  margin: 0;
  text-align: center;
  color: var(--slate);
  font-size: 1.05rem;
  max-width: 52rem;
  margin-inline: auto;
}

.value-strip strong {
  color: var(--navy);
  font-weight: 650;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--surface-alt);
}

.section-header {
  margin-bottom: 1.75rem;
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 46rem;
  color: var(--text-muted);
}

.section-closing {
  margin: 2rem 0 0;
  max-width: 48rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Credentials */
.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.creds-intro p {
  margin: 0 0 1rem;
  color: var(--slate);
}

.creds-intro .note {
  padding: 1rem 1.15rem;
  background: var(--surface-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--slate);
}

.creds-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.creds-list > div {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.creds-list > div:last-child {
  border-bottom: none;
}

.creds-list dt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.creds-list dd {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
}

/* Case types */
.case-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.case-grid li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 4px 16px rgba(15, 39, 68, 0.04);
}

.case-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.case-grid p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.service-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-num {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: var(--navy);
}

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

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.why-grid article {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.why-grid h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.why-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Consultation */
.consultation {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
}

.consultation-inner {
  max-width: var(--max);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-placeholder {
  background: var(--surface);
  border: 1px dashed var(--slate-light);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-placeholder-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
}

.contact-placeholder > p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.mailto-note {
  margin: 1.25rem 0 0 !important;
  font-size: 0.88rem;
  color: var(--slate-mid);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
  background: var(--surface-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--slate);
}

.contact-aside {
  background: var(--navy);
  color: #d5e0ee;
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-aside h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-aside ul {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
}

.contact-aside li {
  margin-bottom: 0.4rem;
}

.contact-aside-note {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #a8b8cc;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #a8b8cc;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-tag {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #c9d6e8;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 36rem;
}

.footer-disclaimer strong {
  color: #e8eef6;
}

.footer-portrait {
  margin: 0 0 0.85rem;
}

.footer-portrait img {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  max-width: none;
  max-height: none;
  min-width: 3.25rem;
  min-height: 3.25rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 2px solid rgba(196, 163, 90, 0.45);
}

.footer-meta p {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.footer-meta a {
  color: var(--gold);
  text-decoration: none;
}

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

.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #7a8da3;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .creds-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .creds-list > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .case-grid,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    padding: 3rem 0 2.75rem;
  }

  .hero-card {
    text-align: center;
  }

  .hero-card-portrait img {
    width: 7rem;
    height: 7rem;
    min-width: 7rem;
    min-height: 7rem;
  }

  .section {
    padding: 3.25rem 0;
  }
}

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

  .nav-toggle span,
  .site-nav {
    transition: none;
  }
}

.contact-list { list-style: none; padding: 0; margin: 1rem 0 1.25rem; }
.contact-list li { margin: 0.35rem 0; }
.contact-placeholder .btn-ghost { margin-left: 0.5rem; }
