/* Aurora Sport Holdings - site styles */

:root{
  --dark-bg:#101010;
  --dark-bg-2:#161616;
  --dark-text:#ffffff;
  --dark-text-soft:#c9c5b8;
  --light-bg:#ffffff;
  --light-text:#17140f;
  --light-text-soft:#5a5648;
  --gold:#cdae66;
  --gold-bright:#e9d18b;
  --line:#e6ddc4;
}

*{box-sizing:border-box;}

html, body{
  margin:0;
  padding:0;
}

body{
  font-family:'Calibri','Carlito','Segoe UI',Helvetica,Arial,sans-serif;
  font-size:12pt;
  line-height:1.6;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

a{
  color:inherit;
}

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

/* ---------- Nav (top right, white on black, all pages) ---------- */

.site-header{
  background:var(--dark-bg-2);
}

.nav-row{
  padding:16px 28px;
  max-width:1100px;
  margin:0 auto;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  font-size:11.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.nav a{
  color:var(--dark-text-soft);
  text-decoration:none;
  font-weight:600;
}

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

.nav a.active{
  color:var(--gold);
  border-bottom:1px solid var(--gold);
  padding-bottom:4px;
}

/* ---------- Home page ---------- */

.home-main{
  background:var(--dark-bg);
  color:var(--dark-text);
  text-align:center;
  padding:64px 24px 56px;
  flex:1 0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.logo-mark{
  margin:0 0 8px;
}

.logo-mark img{
  width:120px;
  height:auto;
  display:block;
  margin:0 auto;
}

.hero-shot{
  margin:28px auto 0;
  max-width:420px;
  border:6px solid #ffffff;
}

.hero-shot img{
  display:block;
  width:100%;
  height:auto;
}

.believe{
  margin:6px 0 0;
  font-size:17px;
  font-weight:700;
  letter-spacing:.32em;
  text-transform:uppercase;
  background:linear-gradient(180deg,var(--gold-bright),var(--gold) 65%,#9c7e3f);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.foot-copy{
  margin-top:48px;
  font-size:11px;
  color:var(--dark-text-soft);
}

.brand-kicker{
  margin:10px 0 0;
  font-size:17px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--dark-text-soft);
  font-weight:700;
}

.founder-note{
  max-width:640px;
  margin:40px auto 0;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,0.12);
  text-align:left;
}

.founder-quote{
  font-size:14px;
  line-height:1.8;
  color:var(--dark-text-soft);
  margin:0 0 14px;
}

.founder-attribution{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin:0;
}

/* ---------- Inner page body (About / Team / Contact) ---------- */

.page-body{
  background:var(--light-bg);
  color:var(--light-text);
  flex:1 0 auto;
}

.body-inner{
  padding:48px 40px 64px;
  max-width:760px;
  margin:0 auto;
}

.body-inner h1{
  font-size:30px;
  margin:0 0 4px;
  letter-spacing:-.01em;
}

.rule{
  width:44px;
  height:2px;
  background:var(--gold);
  margin:16px 0 26px;
  border:none;
}

.copy{
  font-size:14px;
  line-height:1.75;
  color:var(--light-text);
  margin:0 0 16px;
  max-width:66ch;
}

/* About */

.about-media{
  margin:8px 0 28px;
  border-radius:6px;
  overflow:hidden;
  max-width:640px;
}

.about-media img{
  display:block;
  width:100%;
  height:auto;
}

/* Team */

.team-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin-top:6px;
}

.person{
  text-align:left;
}

.person img{
  width:100%;
  max-width:280px;
  height:auto;
  border-radius:6px;
  display:block;
  margin-bottom:16px;
}

.person h2{
  margin:0 0 2px;
  font-size:18px;
}

.person .role{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#a9863f;
  font-weight:700;
  margin:0 0 12px;
}

.person p{
  font-size:13px;
  line-height:1.7;
  color:var(--light-text-soft);
  margin:0;
}

/* Contact */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin-top:6px;
}

.contact-card{
  border:1px solid var(--line);
  border-radius:6px;
  padding:24px;
}

.contact-card h2{
  margin:0 0 4px;
  font-size:17px;
}

.contact-card .role{
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#a9863f;
  font-weight:700;
  margin:0 0 14px;
}

.contact-card a{
  display:inline-block;
  font-size:14px;
  color:var(--light-text);
  text-decoration:none;
  border-bottom:1px solid #a9863f;
  padding-bottom:1px;
}

.contact-card a:hover{
  color:#a9863f;
}

@media (max-width:640px){
  .team-grid, .contact-grid{
    grid-template-columns:1fr;
  }
  .body-inner{
    padding:36px 22px 48px;
  }
  .hero-shot{
    max-width:300px;
  }
}
