/* Brandon Monk, DO, MBA — Personal Site */
:root {
  --navy: #0b1f3a;
  --navy-mid: #132f54;
  --navy-soft: #1c3d6b;
  --crimson: #c8102e;
  --crimson-soft: #e83a4f;
  --gold: #c9a227;
  --gold-soft: #e8c547;
  --cream: #f7f4ef;
  --cream-dark: #ebe6dc;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #5a6570;
  --line: rgba(11, 31, 58, 0.12);
  --shadow: 0 18px 50px rgba(11, 31, 58, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--crimson), #8b0a1e);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: white;
  border: 2px solid var(--gold);
}

.brand span {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(200, 16, 46, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0a1830 100%);
  color: var(--white);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-credentials {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--crimson);
  color: white;
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.35);
}

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

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.btn-dark {
  background: var(--navy);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.hero-photo-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 340px);
}

.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid rgba(201, 162, 39, 0.55);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  background: var(--navy-soft);
  aspect-ratio: 4 / 5;
}

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

.photo-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--white);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

/* Stats strip */
.stats {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  border: 1px solid var(--line);
}

.stat {
  text-align: center;
  padding: 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.65rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.bg-white {
  background: var(--white);
}

.bg-navy {
  background: var(--navy);
  color: white;
}

.bg-navy .section-head h2 {
  color: white;
}

.bg-navy .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.bg-navy .section-label {
  color: var(--gold-soft);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.05);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.about-card p + p {
  margin-top: 0.85rem;
}

.about-card p {
  color: var(--muted);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: rgba(200, 16, 46, 0.1);
}

.icon-circle.gold {
  background: rgba(201, 162, 39, 0.15);
}

/* Timeline / Practice */
.practice-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--line);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.75rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--crimson);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--crimson);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.2rem;
}

.timeline-item h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.timeline-item p {
  font-size: 0.92rem;
  color: var(--muted);
}

.credential-panel {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 1.75rem;
}

.credential-panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cred-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.cred-list li::before {
  content: "✓";
  color: var(--gold-soft);
  font-weight: 700;
  flex-shrink: 0;
}

/* Skills chips */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Baseball */
.baseball-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.baseball-story {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.baseball-story::before {
  content: "⚾";
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 10rem;
  opacity: 0.08;
  transform: rotate(-15deg);
}

.baseball-story h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.baseball-story p {
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  margin-bottom: 0.85rem;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  position: relative;
}

.mini-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 0.5rem;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-soft);
}

.mini-stat span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}

.career-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.career-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
}

.career-item h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.career-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Investments / Real Estate */
.invest-hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  align-items: stretch;
}

.invest-story {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
}

.invest-story h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-bottom: 0.25rem;
}

.invest-sub {
  font-size: 0.88rem;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 1.15rem;
}

.invest-story p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 0.85rem;
}

.invest-story p:last-child {
  margin-bottom: 0;
}

.invest-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.invest-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.04);
}

.invest-stat strong {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--navy);
  line-height: 1.1;
  display: block;
  margin-bottom: 0.35rem;
}

.invest-stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.35;
}

.invest-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.invest-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.invest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: var(--white);
}

.invest-icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.invest-card h4 {
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.invest-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.invest-timeline {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.invest-timeline h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 1.15rem;
}

.invest-timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.invest-tl-item {
  border-top: 3px solid var(--crimson);
  padding-top: 0.85rem;
}

.tl-year {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.4rem;
}

.invest-tl-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Accomplishments */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.award-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.award-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.award-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.45rem;
}

.award-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.award-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.review-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: white;
  border: none;
}

.review-card.featured .review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.review-card.featured .review-meta {
  color: rgba(255, 255, 255, 0.65);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.review-card.featured .stars {
  color: var(--gold-soft);
}

.review-text {
  color: var(--ink);
  font-size: 0.98rem;
  flex: 1;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.review-card.featured .review-meta {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.review-author {
  font-weight: 700;
  color: var(--navy);
}

.review-card.featured .review-author {
  color: white;
}

.review-source {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Cards marketplace */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card-listing {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-listing:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-art {
  aspect-ratio: 5 / 3.5;
  background:
    linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 60%, #2a1810 100%);
  display: grid;
  place-items: center;
  position: relative;
  color: white;
  padding: 1.25rem;
  text-align: center;
}

.card-art::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 8px;
  pointer-events: none;
}

.card-art-inner {
  position: relative;
  z-index: 1;
}

.card-art .year {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.35rem;
}

.card-art .set-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.card-art .player-name {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.card-body h4 {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.35;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  flex: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: var(--cream-dark);
  color: var(--navy);
}

.pill.auto {
  background: rgba(200, 16, 46, 0.12);
  color: var(--crimson);
}

.pill.rare {
  background: rgba(201, 162, 39, 0.2);
  color: #8a6d10;
}

.ebay-link {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--crimson);
}

.ebay-link:hover {
  text-decoration: underline;
}

.cards-note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Social / Connect */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.social-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.social-card:hover {
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 0.35rem;
}

.social-icon.li { background: #0a66c2; }
.social-icon.dx { background: #2d6cdf; }
.social-icon.br { background: #ce1141; }
.social-icon.bb { background: #132448; }
.social-icon.ml { background: #041e42; }
.social-icon.eb { background: #e53238; }
.social-icon.sc { background: #00a3e0; }
.social-icon.uc { background: #0b1f3a; }

.social-card h4 {
  font-size: 1rem;
  color: var(--navy);
}

.social-card p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}

.social-card .go {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--crimson);
}

/* Contact */
.contact-panel {
  background: linear-gradient(145deg, var(--navy) 0%, #16325a 100%);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  color: white;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.25rem;
}

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

.contact-details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.35rem;
}

.contact-details dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-soft);
  margin-bottom: 0.2rem;
}

.contact-details dd {
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-details dd:last-child {
  margin-bottom: 0;
}

.contact-details a:hover {
  color: var(--gold-soft);
}

/* Footer */
.site-footer {
  background: #071422;
  color: rgba(255, 255, 255, 0.55);
  padding: 2rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner strong {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .practice-grid,
  .baseball-layout,
  .contact-panel,
  .invest-hero-grid {
    grid-template-columns: 1fr;
  }

  .invest-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .invest-timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-photo-wrap {
    justify-self: center;
    order: -1;
    width: min(100%, 280px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid,
  .cards-grid,
  .connect-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .reviews-grid,
  .awards-grid,
  .cards-grid,
  .connect-grid,
  .stats-grid,
  .invest-cards,
  .invest-stats,
  .invest-timeline-grid {
    grid-template-columns: 1fr;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.25rem 0;
  }
}
