:root {
  --bg: #f3f6f9;
  --surface: #ffffff;
  --text: #1b2430;
  --muted: #4d5a67;
  --primary: #0057ff;
  --primary-dark: #0039a9;
  --line: #d9e2ea;
  --radius: 16px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: radial-gradient(circle at 20% 0%, #fff, var(--bg) 60%);
  color: var(--text);
  font-family: "Sora", sans-serif;
  line-height: 1.55;
}
.container { width: min(1100px, 92vw); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(243,246,249,0.88);
  border-bottom: 1px solid rgba(27,36,48,.08);
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand {
  text-decoration: none; color: var(--text);
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px;
}
.nav-links { display: flex; gap: 1.2rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 600; }
.hero { padding: 4rem 0 2rem; }
.hero.container { width: min(1320px, 96vw); }
.hero-split { display: grid; grid-template-columns: 1.45fr 1fr; gap: 1rem; }
.hero-media-column { display: flex; flex-direction: column; gap: 0.8rem; }
.hero-reel {
  border-radius: 20px; overflow: hidden; border: 1px solid #bad4f0;
  background: linear-gradient(145deg,#11253f,#1a3557); position: relative;
  aspect-ratio: 16 / 9;
}
.reel-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-fallback {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg,rgba(6,20,37,0),rgba(6,20,37,.9) 55%);
  color: #eaf3ff; font-size: .86rem; padding: 1rem;
}
.reel-highlights {
  border: 1px solid #c7d8eb;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fbff, #edf4fb);
  padding: 0.72rem 0.85rem;
}
.reel-highlights-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}
.reel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.reel-tags span {
  background: #ffffff;
  border: 1px solid #d4e0ec;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
  color: #38506a;
  font-weight: 600;
}
.reel-note {
  margin-top: 0.55rem;
  font-size: 0.84rem;
  color: #4a5f74;
}
.hero-intro {
  background: rgba(255,255,255,.85); border: 1px solid var(--line); border-radius: 20px;
  padding: 0; display: flex; flex-direction: column; justify-content: flex-start; overflow: hidden;
}
.hero-intro-content { padding: 1rem 1.1rem 1.1rem; }
.profile-photo-wrap {
  width: 100%;
  height: 330px;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  margin: 0;
}
.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.kicker, .section-kicker { color: var(--primary); text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; font-weight: 700; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; margin: 0; line-height: 1.15; }
h1 { font-size: clamp(2.1rem, 6vw, 4rem); margin: .4rem 0; }
.hero-intro h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.hero-subtitle { margin: 0; color: #294764; font-weight: 500; }
.hero-text { color: var(--muted); }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.2rem; }
.stats { margin-top: 1.3rem; display: grid; grid-template-columns: repeat(auto-fit,minmax(170px,1fr)); gap: .75rem; max-width: 700px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .7rem .9rem; }
.stat strong { font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; display: block; }
.stat span { color: var(--muted); font-size: .9rem; }
.btn { text-decoration: none; display: inline-block; padding: .72rem 1.1rem; border-radius: 12px; font-weight: 600; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { color: var(--text); border: 1px solid var(--line); background: #fff; }
.section { padding: 2.4rem 0; }
.section-head { margin-bottom: 1rem; }
.section-actions { margin-top: .8rem; }
.credits-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .9rem; }
.credit-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 2px 14px rgba(11,34,58,.06); overflow: hidden; }
.poster-media { aspect-ratio: 16/9; background: linear-gradient(145deg,#eef4fb,#dbe8f6 70%,#e8f1fb); position: relative; }
.poster-logo { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: .7rem; }
.series-logo { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 7px rgba(0,0,0,.18)); }
.credit-body { padding: .9rem; background: #fff; }
.credit-body p { margin: .3rem 0; color: var(--muted); }
.meta { font-size: .92rem; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1rem; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem; box-shadow: 0 2px 14px rgba(11,34,58,.06); }
.card p { color: var(--muted); margin: .4rem 0 0; }
.logo-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(155px,1fr)); gap: .75rem; }
.logo-tile {
  background: #fff; border: 1px dashed #b7c6d3; border-radius: 12px; min-height: 84px;
  display: grid; place-items: center; color: #667684; font-weight: 700; font-size: .84rem;
  text-align: center; padding: .6rem;
}
.logo-tile img { max-width: 88%; max-height: 60px; width: auto; height: auto; object-fit: contain; display: none; }
.logo-tile.has-image img { display: block; }
.logo-tile.has-image span { display: none; }
.contact { text-align: center; }
.contact-meta { margin-top: .85rem; color: var(--muted); }
code { background: #e8f0f7; border-radius: 5px; padding: .1rem .35rem; }
.golf-wrap { background: linear-gradient(155deg,#e4f5e4,#d0eed0); border: 1px solid #afd6af; border-radius: 18px; padding: .9rem; }
#puttingGame { width: 100%; height: auto; border-radius: 14px; border: 1px solid #83b583; background: #7fd37f; display: block; }
.golf-hud { display: flex; gap: .95rem; flex-wrap: wrap; margin-top: .75rem; }
.golf-hud p { margin: 0; font-size: .92rem; color: #214421; background: rgba(255,255,255,.62); border: 1px solid rgba(75,125,75,.25); border-radius: 10px; padding: .35rem .55rem; }
.golf-hud #golfMessage { color: #0f2f0f; font-weight: 600; }
.credits-modal { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 1rem; background: rgba(12,21,32,.65); }
.credits-modal[hidden] { display: none; }
.credits-modal-panel { width: min(980px,95vw); max-height: 88vh; overflow: auto; border-radius: 18px; background: #f7fbff; border: 1px solid #d5e2ee; padding: 1rem; }
.credits-modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .9rem; }
.credits-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: .75rem; }
.credits-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .8rem; }
.credits-item p { margin: 0; color: var(--muted); }
body.modal-open { overflow: hidden; }
.site-footer { border-top: 1px solid var(--line); margin-top: 2rem; }
.site-footer p { color: var(--muted); font-size: .9rem; padding: 1rem 0; margin: 0; }
.footer-legal { padding-top: 0; margin-top: -.7rem; padding-bottom: 1.1rem; }
.footer-legal a { color: inherit; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .credits-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } .hero-split { grid-template-columns: 1fr; } .profile-photo-wrap { height: 270px; } }
@media (max-width: 560px) { .credits-grid { grid-template-columns: 1fr; } .nav-links { gap: .8rem; } .nav-links a { font-size: .88rem; } }
