/* Boston Red Sox–inspired: navy, sox red, white, cream — not an official MLB mark */
:root {
  --navy: #0C2340;
  --navy-deep: #061525;
  --navy-mid: #143055;
  --red: #BD3039;
  --red-hot: #D12B36;
  --red-dark: #8F1F28;
  --cream: #F4F4F0;
  --white: #FFFFFF;
  --muted: #A8B4C4;
  --line: rgba(244, 244, 240, 0.12);
  --line-dark: rgba(12, 35, 64, 0.12);
  --gold: #C5B358;
  --max: 1100px;
  --radius: 12px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 24px 60px rgba(6, 21, 37, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: var(--red-hot); text-decoration: none; }
a:hover { color: #ff6b73; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 21, 37, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--red);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cream);
}
.brand img.logo-plate,
.brand svg.logo-plate {
  height: 48px;
  width: auto;
  display: block;
}
.brand-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
}
.brand-name small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--red);
  font-weight: 700;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}
.nav-links a.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  margin-left: 6px;
}
.nav-links a.nav-cta:hover { background: var(--red-hot); }
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--cream);
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero--photo {
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.hero--photo .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.35) 0%, rgba(6, 21, 37, 0.55) 40%, rgba(6, 21, 37, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 35, 64, 0.75), transparent 60%),
    var(--navy) center/cover no-repeat;
}
.hero--photo .hero-inner {
  position: relative;
  z-index: 1;
  padding: 88px 0 56px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.hero-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 28px,
    var(--navy) 28px 40px,
    var(--cream) 40px 48px,
    var(--navy) 48px 56px
  );
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-hot);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--red);
}
h1 {
  font-size: clamp(36px, 6.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 850;
  max-width: 14ch;
  margin-bottom: 18px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
h1 em { font-style: normal; color: var(--red-hot); }
.lead {
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 52ch;
  margin-bottom: 28px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hot); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 244, 240, 0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--cream); }
.btn-navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy-mid);
}

/* —— Sections —— */
main { flex: 1; }
.section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.section--cream {
  background: var(--cream);
  color: var(--navy);
  border-bottom: none;
}
.section--cream .sub,
.section--cream .card p,
.section--cream .card li { color: #3d4d63; }
.section--cream h2,
.section--cream h3 { color: var(--navy); }
.section--cream .card {
  background: var(--white);
  border-color: var(--line-dark);
  box-shadow: 0 10px 30px rgba(12, 35, 64, 0.06);
}
.section--cream .card .num { color: var(--red); }
.section--cream .card .tagline { color: var(--red-dark); }
.section--cream .card li::before { background: var(--red); }
.section--red {
  background: var(--red);
  color: var(--white);
  border: none;
}
.section--red h2, .section--red p { color: var(--white); }
.section--red .sub { color: rgba(255,255,255,0.88); }

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 12px;
}
.section .sub {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 28px;
  font-size: 17px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card .num {
  color: var(--red-hot);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.card .tagline {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.card ul { list-style: none; display: grid; gap: 8px; font-size: 14px; }
.card li {
  padding-left: 16px;
  position: relative;
  color: var(--muted);
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.card li strong { color: var(--cream); font-weight: 700; }
.section--cream .card li strong { color: var(--navy); }

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--navy);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.photo-cap {
  padding: 12px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}

.work-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  color: inherit;
}
.work-card .meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-hot);
  font-weight: 800;
}
.work-card h3 { margin: 0; }
.work-card p { margin: 0; flex: 1; }
.work-card .go {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}

.band {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
}
.band h3 { font-size: 22px; margin-bottom: 10px; }
.band p { color: var(--muted); max-width: 60ch; }

.cta-block {
  text-align: center;
  padding: 48px 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(189, 48, 57, 0.28), transparent 55%),
    var(--navy);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
}
.cta-block h2 { margin-bottom: 10px; }
.cta-block p { color: var(--muted); margin: 0 auto 22px; max-width: 44ch; }

/* Goal page */
.goal-stack { display: grid; gap: 18px; }
.goal-block {
  background: var(--navy);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
}
.goal-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.goal-block p, .goal-block li { color: var(--muted); font-size: 15px; }
.goal-block ul { margin: 10px 0 0 18px; display: grid; gap: 6px; }
.goal-block .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 8px;
}
.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.do, .dont {
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
}
.do { background: rgba(62, 207, 142, 0.08); border: 1px solid rgba(62, 207, 142, 0.25); }
.dont { background: rgba(189, 48, 57, 0.1); border: 1px solid rgba(189, 48, 57, 0.3); }
.do strong, .dont strong { display: block; margin-bottom: 6px; color: var(--cream); }

/* Forms */
.form {
  display: grid;
  gap: 14px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
input, textarea {
  width: 100%;
  background: var(--navy-deep);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--cream);
  font: inherit;
  padding: 12px 14px;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(189, 48, 57, 0.4);
  border-color: var(--red);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); }

.contact-list { list-style: none; display: grid; gap: 12px; }
.contact-list li {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact-list strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-hot);
  margin-bottom: 4px;
}
.contact-list a, .contact-list span { color: var(--cream); font-size: 16px; }

/* Footer */
.site-footer {
  margin-top: auto;
  background: #040a12;
  border-top: 3px solid var(--red);
  padding: 40px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.site-footer p, .site-footer a, .site-footer li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.site-footer ul { list-style: none; display: grid; gap: 6px; }
.site-footer .foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.site-footer .foot-brand img.logo-plate { height: 46px; width: auto; }
.foot-copy {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .footer-grid, .form-row, .do-dont { grid-template-columns: 1fr; }
  .menu-btn { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    background: var(--navy);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a.nav-cta { margin-left: 0; }
  h1 { max-width: none; }
  .brand-name { display: none; }
}
