/* =========================
   Warm / Mid-bright theme
   Gradient: #fffffc → #fffff4 → #ffffeb
   Responsive: mobile + tablet
========================= */

:root{
  --bg1:#fffffc;
  --bg2:#fffff4;
  --bg3:#ffffeb;

  --ink:#1a1a1a;
  --muted:#5b5b5b;
  --ftfnote: #5b5b5b;
  --sidenote: #8c8c8c;

  --card:rgba(255,255,255,.82);
  --card-strong:rgba(255,255,255,.92);
  --border:rgba(20,20,20,.10);

  --brand:#b86b2a;          /* warm accent */
  --brand-2:#8c4d20;        /* deeper warm */
  --shadow: 0 10px 35px rgba(0,0,0,.08);
  --radius: 18px;

  --container: 80%;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 45%, var(--bg3) 100%);
  min-height:100vh;
}

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

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:var(--card-strong);
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:999;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.55);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.badge{
  width:44px; height:44px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color:white;
  border-radius:10px;
  font-weight:800;
  letter-spacing:.5px;
  box-shadow: 0 10px 20px rgba(184,107,42,.20);
}

.badge img{
  width:44px; height:44px;
  border-radius:10px;
  box-shadow: 0 10px 20px rgba(184,107,42,.20);
  background: transparent;
}
.kicker{
  margin:0;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
}
.title{
  margin:2px 0 0 0;
  font-size:18px;
  line-height:1.1;
}
.sub{
  margin:3px 0 0 0;
  font-size:13px;
  color:var(--muted);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 10px;
  /*border:1px solid var(--border);*/
  border-radius:999px;
  background: rgba(255,255,255,.65);
}
.nav a{
  font-size: 15px;
  color: var(--ink);
  padding: 6px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.nav a:hover{
  background: rgba(184,107,42,.10);
  color: var(--muted);
  text-decoration:none;
}

.social{
  display:flex;
  gap:10px;
}
.social-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background: #ffffeb;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.social-btn:hover{
  text-decoration:none;
  transform: translateY(-1px);
  transition: transform .15s ease;
}
.social-btn .label{
  font-size:13px;
  color:var(--muted);
}
.social-btn .icon{
  display:grid;
  place-items:center;
  color: var(--brand-2);
}

/* Hero */
.hero{
  padding: 26px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}

.hero-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.pill{
  display:inline-block;
  margin:0 0 10px 0;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(184,107,42,.25);
  background: rgba(184,107,42,.10);
  color: #6d3b17;
  font-size: 13px;
  font-weight: 600;
}

.hero-h1{
  margin: 0 0 12px 0;
  font-size: 36px;
  letter-spacing:-.02em;
  font-weight: 500;
}

.hero-h2{
  margin: 0 0 12px 0;
  font-size: 20px;
  letter-spacing:-.02em;
}

.hero-h3{
  margin: 25px 0 5px 10px;
  font-size: 18px;
  letter-spacing: -.02em;
  font-weight: 500;
}

.callout{
  margin-top: 14px;
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(184,107,42,.12), rgba(255,255,255,.55));
  border: 1px solid rgba(184,107,42,.20);
  box-shadow: 0 14px 30px rgba(184,107,42,.08);
}
.callout p{
  margin:0;
  font-size: 15px;
  line-height: 1.6;
  color: #2a1f18;
  font-weight: 600;
}

.quick-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.stat{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.65);
}
.stat-label{
  display:block;
  font-size: 12px;
  color: var(--muted);
}
.stat-value{
  display:block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}

.hero-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 700;
  cursor:pointer;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); transition: transform .15s ease; }

.btn.primary{
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border-color: rgba(184,107,42,.35);
  box-shadow: 0 12px 26px rgba(184,107,42,.22);
}
.btn.ghost{
  background: rgba(255,255,255,.65);
}

/* Photos */
.hero-right{
  position:sticky;
  top:86px;
}
.photo-stack{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.photo-stack .photo{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  margin: 5px 0px 0px 20px;
}


.photo{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.photo img{
  width:100%;
  display:block;
  object-fit:cover;
  height: 240px;
}
.photo.portrait img{ height: 100%; }

.caption{
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.captionTitle{
  padding: 10px 12px;
  font-size: 18px;
  color: var(--ink);
  text-align: center;
  font-weight: 700;
}

/* Sections */
.section{
  padding: 24px 0;
}
.section-head{
  margin: 0 0 14px 0;
}
.section-head h3{
  margin:0;
  font-size: 20px;
  letter-spacing:-.02em;
}
.section-head p{
  margin:6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.card h4{
  margin: 0 0 10px 0;
  font-size: 16px;
}
.muted{ color: var(--muted); }

.ftfnote{ color: var(--ftfnote); }

.sidenote{ 
  color: var(--sidenote); 
  font-size: 12px;
  padding: 12px;
}

.list{
  margin:0;
  padding-left: 18px;
  color: #2a2a2a;
}
.list li{ margin: 8px 0; line-height:1.45; }

.bullets{
  margin:0;
  padding-left: 18px;
}
.bullets li{
  margin: 10px 0;
  line-height:1.45;
}

/* Recruiting layout rows */
.recruiting-row{
  margin-bottom: 12px;
}

/* Coach Notes + Strengths row (2 columns full width like its own section row) */
.notes-row{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Media grid */
.video-grid{
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 12px;
  align-items:start;
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.video-card{
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.video-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.video-frame{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.04);
  aspect-ratio: 16 / 9;
}
.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}
.video-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 50px;
}

.photo-row{
  margin-bottom: 12px;
  background: var(--card-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

/* Highlights: action photos beside video */
.media-with-photos{
  grid-template-columns: 1.25fr .75fr;
}
.action-gallery{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.action-gallery .photo img{
  height: 220px;
}
.action-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.action-grid .photo img{
  height: 210px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}

/* Footer */
.footer{
  padding: 24px 0 40px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.to-top{
  font-weight: 800;
  color: #6d3b17;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(184,107,42,.25);
  background: rgba(184,107,42,.10);
}
.to-top:hover{ text-decoration:none; }

/* Photo Overlay */
/* Dark overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 80% sized image */
.lightbox img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

/* Optional: smooth fade */
.lightbox.active {
  display: flex;
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  :root{--container: 85%;}
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-right{ position:static; }

  .cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .notes-row{ grid-template-columns: 1fr; }

  .photo-stack{
    width: 75%;
    margin: auto;
  }

  .video-grid{ grid-template-columns: 1fr; }
  .media-with-photos{ grid-template-columns: 1fr; }

  .contact-grid{ grid-template-columns: 1fr; }

  .nav{ display:none; } /* clean header on small screens */
  .title{ font-size: 17px; }
  .hero-h1{ font-size: 30px; }
  .hero-h2{ font-size: 24px; }
  .hero-h3{ font-size: 18px; }

  .action-grid{ grid-template-columns: 1fr 1fr; }
  .action-gallery{
    flex-direction: row;
    gap: 20px;
    margin: auto;
  }
}

@media (max-width: 520px){
  :root{--container: 95%;}
  .header-inner{ flex-direction:column; align-items:flex-start; }
  .brand{ min-width: unset; }
  .quick-grid{ grid-template-columns: 1fr; }

  .hero-h1{ font-size: 28px; }
  .hero-h2{ font-size: 22px; }
  .hero-h3{ font-size: 16px; }
  
  .photo-stack{ width: 90%; }

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

  .action-grid{ grid-template-columns: 1fr; }
  .action-gallery .photo img{ height: 210px; }
  .action-grid .photo img{ height: 210px; }
}

.muted{
  display: none;
}