/* Victory Baseball Performance
   Gold measured from logo: #C8B281 */

:root {
  --black: #000000;
  --gold: #C8B281;
  --gold-hover: #DCC9A0;
  --gold-muted: #8A784F;
  --gold-line: rgba(200, 178, 129, 0.28);
  --gold-line-strong: rgba(200, 178, 129, 0.55);
  --gold-faint: rgba(200, 178, 129, 0.08);
  --ivory: #EDE6D6;
  --ivory-dim: #B8AFA0;
  --header-h: 4.5rem;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--ivory);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  min-height: 100dvh;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 0.85rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.75rem;
}

/* Grain + vignette */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory);
  min-width: 0;
}

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

.brand-mark {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  width: 22px;
  margin-left: auto;
  background: var(--gold);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

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

.site-nav {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0.75rem 1.25rem 1.4rem;
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid var(--gold-line);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 0.55rem 0;
}

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

.site-nav .nav-cta {
  margin-top: 0.5rem;
  padding: 0.75rem 1.2rem;
  color: var(--black);
}

.site-nav .nav-cta-ghost {
  margin-top: 0.5rem;
  padding: 0.75rem 1.2rem;
}

.site-nav .nav-cta:hover {
  color: var(--black);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-line-strong);
}

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

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 3.5rem 1.25rem 4.5rem;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(200, 178, 129, 0.07), transparent 48%),
    radial-gradient(ellipse at 50% 110%, rgba(0, 0, 0, 0.85), transparent 55%);
  z-index: -1;
}

.hero-diamond {
  position: absolute;
  width: min(92vw, 640px);
  color: var(--gold);
  opacity: 0.07;
  z-index: -1;
  top: 8%;
}

.hero-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

 .hero-logo {
  width: min(58vw, 280px);
  display: block;
  margin: 0 auto 1.85rem;
  filter: drop-shadow(0 0 48px rgba(200, 178, 129, 0.12));
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--ivory);
  margin: 0;
}

h1 {
  font-size: clamp(2.05rem, 8.4vw, 4.4rem);
  letter-spacing: 0.08em;
  font-weight: 700;
  max-width: 14ch;
  margin: 0 auto;
}

.hero-lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 3.2vw, 1.65rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.15rem 0 1.25rem;
}

.hero-copy {
  color: var(--ivory-dim);
  margin: 0 auto 0.7rem;
  max-width: 38rem;
  font-weight: 300;
  font-size: 1.05rem;
}

.hero-copy.secondary {
  margin-bottom: 1.75rem;
}

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

/* Sections */
.section {
  padding: 4.5rem 1.25rem;
  border-top: 1px solid var(--gold-line);
  scroll-margin-top: 5rem;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}

.section-intro {
  color: var(--ivory-dim);
  max-width: 36rem;
  font-weight: 300;
  margin: 0.9rem 0 0;
}

h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.7rem);
  letter-spacing: 0.07em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.panel {
  border: 1px solid var(--gold-line);
  background: var(--gold-faint);
  padding: 1.75rem 1.4rem 1.9rem;
}

.panel-kicker {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin: 0 0 0.7rem;
}

.panel h3 {
  margin-bottom: 0.7rem;
}

.panel p {
  color: var(--ivory-dim);
  margin: 0 0 1.2rem;
  font-weight: 300;
}

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

.spec-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.15rem;
  border-top: 1px solid var(--gold-line);
  color: var(--ivory);
  font-size: 0.98rem;
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.45rem;
  height: 1px;
  background: var(--gold);
}

/* Approach */
.pillars {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: none;
}

.pillars li {
  border-top: 1px solid var(--gold-line);
  padding: 1.35rem 0.15rem 0.6rem;
}

.pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.pillars h3 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.pillars p {
  margin: 0;
  color: var(--ivory-dim);
  font-weight: 300;
}

/* About */
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  width: min(72vw, 300px);
  margin: 0 auto;
}

.about-photo img {
  width: 100%;
  height: auto;
  border: 1px solid var(--gold-line);
}

.about-role {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  line-height: 1.55;
  margin: 1rem 0 0;
}

.rule {
  height: 1px;
  width: 4.5rem;
  background: var(--gold);
  margin: 1.4rem 0 1.2rem;
}

.about p {
  color: var(--ivory-dim);
  font-weight: 300;
  margin: 0 0 0.9rem;
}

.about h2 + .about-role + .rule + p,
.about p:last-child {
  /* keep flow */
}

/* Contact */
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1.35rem 0 0;
}

.contact-actions .btn {
  white-space: nowrap;
}

.contact-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.contact-list li {
  padding: 0.95rem 0;
  border-top: 1px solid var(--gold-line);
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.handle-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.contact-list a,
.contact-list p {
  margin: 0;
  color: var(--ivory);
  font-size: 1.05rem;
}

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

.contact-form {
  border: 1px solid var(--gold-line);
  padding: 1.5rem 1.25rem 1.6rem;
  background: linear-gradient(180deg, rgba(200, 178, 129, 0.05), transparent 40%);
  display: grid;
  gap: 1rem;
}

.form-note {
  margin: 0 0 0.25rem;
  color: var(--ivory-dim);
  font-size: 0.88rem;
  font-weight: 300;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ivory);
  background: #0a0a0a;
  border: 1px solid var(--gold-line);
  padding: 0.75rem 0.8rem;
  width: 100%;
  border-radius: 0;
  appearance: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.form-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.form-actions .btn {
  flex: 1;
  white-space: nowrap;
  justify-content: center;
}

.contact-form ::placeholder {
  color: #6e675c;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--gold-line);
  padding: 2rem 1.25rem 2.4rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.footer-brand img {
  width: 28px;
}

.site-footer p {
  margin: 0;
  color: var(--ivory-dim);
  font-size: 0.88rem;
  font-weight: 300;
}

.site-footer p a {
  color: var(--ivory-dim);
}

.site-footer p a:hover {
  color: var(--gold);
}

/* Desktop */
@media (min-width: 800px) {
  .header-inner {
    padding: 0.7rem 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .site-nav a {
    padding: 0;
    position: relative;
  }

  .site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
  }

  .site-nav a:not(.btn):hover::after {
    transform: scaleX(1);
  }

  .site-nav .nav-cta,
  .site-nav .nav-cta-ghost {
    margin-top: 0;
    margin-left: 0.4rem;
  }

  .hero {
    padding: 4.5rem 2rem 5.5rem;
  }

  .hero-logo {
    width: 320px;
  }

  .section {
    padding: 5.5rem 2rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .split-three .panel:last-child {
    grid-column: 1 / -1;
  }

  .panel {
    padding: 2.1rem 2rem 2.2rem;
  }

  .pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .pillars li {
    border-top: 1px solid var(--gold);
    padding-top: 1.5rem;
  }

  .about-grid {
    grid-template-columns: 0.42fr 1fr;
    gap: 4rem;
  }

  .about-photo {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (min-width: 1100px) {
  h1 {
    max-width: none;
  }

  .split-three {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .split-three .panel:last-child {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
