*{box-sizing:border-box}

:root{
  --navy:#030916;
  --navy-soft:#071126;
  --navy-field:#091733;
  --gold:#cda554;
  --gold-light:#e4c473;
  --cream:#f3eee5;
  --body:#d8d5cf;
  --muted:#aaa8a3;
  --rule:rgba(205,165,84,.32);
  --shadow:0 24px 60px rgba(0,0,0,.32);
}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--navy);
  color:var(--cream);
  font-family:"Montserrat",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}

.shell{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}

/* HERO */
.hero{
  position:relative;
  min-height:660px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:var(--navy);
}

.pitch-frame{
  position:absolute;
  inset:24px;
  border:1px solid rgba(205,165,84,.36);
  border-radius:24px;
  pointer-events:none;
}

.pitch-frame span{position:absolute;display:block}
.halfway{
  width:1px;top:0;bottom:0;left:50%;
  background:rgba(205,165,84,.13)
}
.centre-circle{
  width:210px;height:210px;border:1px solid rgba(205,165,84,.12);
  border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%)
}
.penalty{
  width:125px;height:285px;top:50%;transform:translateY(-50%);
  border:1px solid rgba(205,165,84,.16)
}
.penalty-left{left:0;border-left:0}
.penalty-right{right:0;border-right:0}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:64px;
  align-items:center;
  padding:70px 0;
}

.crest-wrap{align-self:start}
.crest{
  width:100%;
  max-width:350px;
  display:block;
  background:var(--navy);
}

.eyebrow,.section-label{
  margin:0 0 18px;
  color:var(--gold-light);
  font-size:12px;
  line-height:1.4;
  letter-spacing:.13em;
  text-transform:uppercase;
  font-weight:800;
}

h1,h2{
  margin:0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
  letter-spacing:-.025em;
}

h1{
  max-width:780px;
  font-size:clamp(58px,6.3vw,92px);
  line-height:.92;
  color:var(--cream);
}
h1 span{color:var(--gold)}

.lead{
  max-width:690px;
  margin:28px 0 32px;
  color:var(--body);
  font-size:18px;
  line-height:1.72;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.button{
  min-height:52px;
  padding:0 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}

.button-gold{background:var(--gold);color:var(--navy)}
.button-outline{border:1px solid var(--gold);color:var(--gold)}

/* GOLD STRIP */
.standards{
  background:linear-gradient(90deg,#b98e3e,var(--gold-light),#bd9143);
  color:var(--navy);
}

.standards-inner{
  min-height:76px;
  width:min(980px,calc(100% - 36px));
  margin:0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  text-align:center;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

/* CONTENT */
.section{
  border-bottom:1px solid var(--rule);
  padding:96px 0;
}

.split{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:76px;
  align-items:start;
}

.section-title{
  display:grid;
  grid-template-columns:110px minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.icon-circle,.whistle{
  width:100px;height:100px;border:1px solid var(--gold);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
}
.icon-circle svg,.whistle svg{
  width:70%;height:70%;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
}

.section h2,.statement h2,.register-intro h2{
  color:var(--cream);
  font-size:clamp(42px,4.7vw,66px);
  line-height:1.02;
}

.section-title h2,.training-section h2,.register-intro h2{color:var(--cream)}

.body-copy p,.register-intro>p{
  margin:0 0 20px;
  color:var(--body);
  font-size:17px;
  line-height:1.8;
}

.training-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.92fr);
  gap:78px;
  align-items:center;
}

.pitch-card{
  min-height:330px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pitch{
  position:relative;
  width:100%;
  aspect-ratio:1.55/1;
  border:1px solid var(--gold);
}
.pitch span{position:absolute;display:block}
.pitch-half{top:0;bottom:0;left:50%;width:1px;background:var(--gold)}
.pitch-circle{
  width:25%;aspect-ratio:1;border:1px solid var(--gold);
  border-radius:50%;left:50%;top:50%;transform:translate(-50%,-50%)
}
.pitch-box{
  width:18%;height:56%;top:22%;border:1px solid var(--gold)
}
.pitch-box-left{left:0;border-left:0}
.pitch-box-right{right:0;border-right:0}
.six{width:7%;height:28%;top:36%;border:1px solid var(--gold)}
.six-left{left:0;border-left:0}
.six-right{right:0;border-right:0}

/* STATEMENT */
.statement-section{
  border-bottom:1px solid var(--rule);
  padding:92px 0;
  text-align:center;
}
.statement p{
  margin:0 0 14px;
  color:var(--gold-light);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
}
.statement h2{
  max-width:970px;
  margin:0 auto;
  font-size:clamp(44px,5.2vw,72px);
}

/* FORM */
.register-grid{
  display:grid;
  grid-template-columns:minmax(300px,.75fr) minmax(0,1.25fr);
  gap:72px;
  align-items:start;
}

.register-intro .whistle{margin-top:34px}

.interest-form{
  padding:30px;
  border:1px solid var(--gold);
  border-radius:22px;
  background:rgba(7,17,38,.52);
  box-shadow:var(--shadow);
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.interest-form label{
  display:block;
  margin-bottom:18px;
}

.interest-form label>span{
  display:block;
  margin:0 0 8px;
  color:var(--cream);
  font-size:12px;
  font-weight:700;
}

input,select,textarea{
  width:100%;
  border:1px solid rgba(205,165,84,.72);
  border-radius:8px;
  background:var(--navy-field);
  color:var(--cream);
  padding:13px 14px;
  font:inherit;
  font-size:14px;
  outline:none;
}

select{min-height:48px}
textarea{resize:vertical;min-height:120px}
input::placeholder,textarea::placeholder{color:#9ea4b2}

input:focus,select:focus,textarea:focus{
  border-color:var(--gold-light);
  box-shadow:0 0 0 3px rgba(205,165,84,.12);
}

.interest-form button{
  width:100%;
  min-height:54px;
  border:0;
  border-radius:999px;
  background:linear-gradient(90deg,#c59745,var(--gold-light),#c79b49);
  color:var(--navy);
  font:inherit;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
}

.privacy-note{
  margin:14px 0 0;
  color:var(--muted);
  font-size:11px;
  line-height:1.55;
}
.hidden{position:absolute;left:-9999px}

/* FOOTER */
footer{
  background:#020711;
  border-top:1px solid var(--rule);
  padding:34px 0 22px;
}

.footer-grid{
  display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(0,1fr);
  gap:40px;
  align-items:center;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-brand img{
  width:80px;height:80px;object-fit:cover;
}

.footer-brand strong{
  display:block;
  color:var(--gold);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:25px;
  line-height:1.05;
}
.footer-brand span{
  display:block;
  margin-top:6px;
  color:var(--body);
  font-size:13px;
}

.footer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 28px;
  justify-items:start;
}

.footer-links a{
  color:var(--body);
  text-decoration:none;
  font-size:13px;
}
.footer-links a:hover{color:var(--gold-light)}

.copyright{
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid rgba(205,165,84,.14);
  color:#7f838d;
  font-size:11px;
}

/* TABLET */
@media (max-width: 980px){
  .shell{width:min(100% - 36px,900px)}

  .hero{
    min-height:auto;
    padding:20px 0 28px;
  }
  .pitch-frame{inset:18px}
  .hero-grid{
    grid-template-columns:260px minmax(0,1fr);
    gap:38px;
    padding:48px 0;
  }
  .crest{max-width:255px}
  h1{font-size:clamp(46px,7vw,66px)}
  .lead{font-size:16px;margin:22px 0 26px}

  .split{
    grid-template-columns:1fr;
    gap:38px;
  }
  .section-title{
    grid-template-columns:96px minmax(0,1fr);
  }
  .icon-circle{width:88px;height:88px}

  .training-grid{
    grid-template-columns:1fr 1fr;
    gap:38px;
  }

  .register-grid{
    grid-template-columns:1fr;
    gap:38px;
  }
  .register-intro{
    display:grid;
    grid-template-columns:minmax(0,1fr) 100px;
    gap:24px;
    align-items:end;
  }
  .register-intro .section-label,
  .register-intro h2,
  .register-intro>p{grid-column:1}
  .register-intro .whistle{
    grid-column:2;
    grid-row:1/4;
    margin:0;
    align-self:center;
  }

  .footer-grid{grid-template-columns:1fr}
}

/* PHONE */
@media (max-width: 680px){
  .shell{width:min(100% - 28px,620px)}

  .hero{
    padding:18px 0 24px;
  }
  .pitch-frame{
    inset:10px;
    border-radius:18px;
  }
  .pitch-frame .halfway,
  .pitch-frame .centre-circle,
  .pitch-frame .penalty{display:none}

  .hero-grid{
    display:block;
    padding:24px 0 40px;
    text-align:left;
  }

  .crest-wrap{
    margin-bottom:20px;
  }
  .crest{
    width:150px;
    max-width:42vw;
  }

  .eyebrow{margin-bottom:10px}
  h1{
    font-size:clamp(43px,12.4vw,62px);
    line-height:.92;
  }
  .lead{
    margin:20px 0 24px;
    font-size:15px;
    line-height:1.65;
  }
  .hero-actions{
    gap:10px;
  }
  .button{
    min-height:48px;
    padding:0 20px;
    font-size:13px;
  }

  .standards-inner{
    min-height:86px;
    flex-wrap:wrap;
    gap:6px 12px;
    padding:14px 0;
    font-size:11px;
    line-height:1.4;
  }

  .section{padding:68px 0}

  .section-title{
    display:block;
  }
  .icon-circle{
    width:74px;height:74px;
    margin-bottom:22px;
  }
  .section h2,.register-intro h2{
    font-size:clamp(39px,11vw,52px);
  }

  .body-copy p,.register-intro>p{
    font-size:15px;
    line-height:1.72;
  }

  .training-grid{
    grid-template-columns:1fr;
    gap:38px;
  }
  .pitch-card{min-height:auto}
  .pitch{max-width:520px;margin:0 auto}

  .statement-section{padding:68px 0}
  .statement h2{
    font-size:clamp(38px,10.8vw,50px);
    line-height:1.03;
  }

  .register-intro{
    display:block;
  }
  .register-intro .whistle{
    width:74px;height:74px;
    margin:28px 0 0;
  }

  .interest-form{
    padding:20px;
    border-radius:17px;
  }
  .form-row{grid-template-columns:1fr;gap:0}

  .footer-brand img{width:64px;height:64px}
  .footer-brand strong{font-size:22px}
  .footer-links{grid-template-columns:1fr}
}


/* v3 polish tweaks */
.join-icon{
  width:100px;height:100px;border:1px solid var(--gold);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);
  margin-top:34px;
}
.join-icon svg{
  width:70%;height:70%;fill:none;stroke:currentColor;stroke-width:2;
  stroke-linecap:round;stroke-linejoin:round;
}
.register-intro .whistle{display:none;}

.footer-brand img{
  width:92px;
  height:92px;
}

.footer-brand strong{
  text-transform:uppercase;
  font-size:30px;
  letter-spacing:.03em;
  line-height:1.0;
}

.footer-brand span{
  font-size:14px;
}

.footer-links a{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.footer-icon{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-light);
  flex:0 0 18px;
}

.footer-icon svg{
  width:18px;
  height:18px;
  display:block;
}

@media (max-width: 680px){
  .join-icon{
    width:74px;height:74px;
    margin:28px 0 0;
  }
  .footer-brand img{width:72px;height:72px}
  .footer-brand strong{font-size:24px}
  .footer-brand span{font-size:13px}
}
