:root{
  --bg:#0f1115;
  --bg2:#13161b;
  --text:#f7f8fb;
  --muted:rgba(247,248,251,.66);
  --faint:rgba(247,248,251,.42);
  --line:rgba(255,255,255,.085);
  --orange:#ff6a00;
  --orange2:#ff7a18;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;min-height:100%}

body{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

body.menu-open{overflow:hidden}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:100;
  padding:34px 52px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo,
.footer-logo{
  font-family:Michroma,sans-serif;
  letter-spacing:.45em;
  color:#fff;
  text-decoration:none;
  font-size:.86rem;
}

.menu-trigger{
  width:52px;
  height:52px;
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:9px;
  position:relative;
}

.menu-trigger::before{
  content:"";
  position:absolute;
  inset:4px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
  opacity:0;
  transform:scale(.7);
  transition:.25s;
}

.menu-trigger span{
  width:32px;
  height:2px;
  background:#fff;
  border-radius:10px;
  transition:.25s;
}

.menu-trigger:hover::before,
.menu-trigger.active::before{
  opacity:1;
  transform:scale(1);
}

.menu-trigger.active span:first-child{
  transform:translateY(5.5px) rotate(45deg);
}

.menu-trigger.active span:last-child{
  transform:translateY(-5.5px) rotate(-45deg);
}

.fullscreen-menu{
  position:fixed;
  inset:0;
  z-index:90;
  opacity:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 80% 20%,rgba(255,106,0,.12),transparent 28%),
    linear-gradient(135deg,rgba(15,17,21,.98),rgba(7,8,11,.98));
  transition:opacity .35s ease;
}

.fullscreen-menu.open{
  opacity:1;
  pointer-events:auto;
}

.menu-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:72px 72px;
  mask-image:radial-gradient(circle at 50% 50%,black,transparent 70%);
}

.menu-inner{
  position:relative;
  z-index:2;
  height:100%;
  width:min(1200px,calc(100% - 80px));
  margin:0 auto;
  padding:130px 0 48px;
  display:grid;
  grid-template-rows:auto 1fr auto;
}

.menu-meta span,
.menu-footer span,
.section-heading span,
.section-kicker,
.contact-card>span{
  color:var(--orange2);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.34em;
  text-transform:uppercase;
}

.menu-meta p{
  color:var(--muted);
  margin:16px 0 0;
}

.menu-links{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}

.menu-links a{
  color:#fff;
  text-decoration:none;
  font-size:clamp(2.8rem,7vw,7.4rem);
  line-height:.92;
  letter-spacing:-.075em;
  font-weight:800;
  transition:.25s;
}

.menu-links a span{
  color:var(--orange2);
  font-size:.78rem;
  letter-spacing:.22em;
  margin-right:18px;
  vertical-align:middle;
}

.menu-links a:hover{
  color:var(--orange2);
  transform:translateX(16px);
}

.menu-footer{
  display:flex;
  justify-content:space-between;
  gap:28px;
  color:var(--faint);
}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  background:url("assets/hero-bg.png") center center/cover no-repeat;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 50%,rgba(255,106,0,.08),transparent 28%),
    linear-gradient(180deg,rgba(15,17,21,.35),rgba(15,17,21,.8)),
    linear-gradient(90deg,rgba(15,17,21,.76),rgba(15,17,21,.16),rgba(15,17,21,.58));
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:180px;
  background:linear-gradient(180deg,transparent,var(--bg));
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:0 24px;
}

.tagline{
  color:var(--orange2);
  letter-spacing:.55em;
  font-size:.75rem;
  font-weight:800;
  margin-bottom:34px;
}

.cta{
  display:inline-flex;
  align-items:center;
  gap:16px;
  min-width:280px;
  justify-content:center;
  padding:22px 42px;
  border-radius:999px;
  text-decoration:none;
  color:white;
  background:linear-gradient(135deg,#ff7a18,#ff5b00);
  font-weight:800;
  letter-spacing:.18em;
  box-shadow:0 20px 60px rgba(255,91,0,.25);
  transition:.3s;
}

.cta:hover{
  transform:translateY(-3px);
  box-shadow:0 25px 80px rgba(255,91,0,.35);
}

.section{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:120px 0;
}

.section-shell{
  width:min(1320px,calc(100% - 70px));
  margin:0 auto;
}

.two-col{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:76px;
  align-items:center;
}

.section-heading h1,
.section-heading h2,
.membership-layout h1,
.about-copy h1,
.contact-card h1{
  margin:0;
  font-size:clamp(2.4rem,4.6vw,5.2rem);
  line-height:1.02;
  letter-spacing:-.07em;
}

.section-copy p,
.membership-layout p,
.about-copy p,
.contact-card p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.85;
  margin:0 0 22px;
}

.centre{
  max-width:900px;
  margin:0 auto 68px;
  text-align:center;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.feature-grid article{
  min-height:330px;
  padding:34px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.016));
  border-radius:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:.25s;
}

.feature-grid article:hover{
  transform:translateY(-6px);
  border-color:rgba(255,106,0,.45);
}

.feature-grid article span{
  color:var(--orange2);
  margin-bottom:auto;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.3em;
}

.feature-grid h2{
  margin:0 0 16px;
  font-size:1.4rem;
}

.feature-grid p{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}

.membership-layout{
  display:grid;
  grid-template-columns:1fr 460px;
  gap:80px;
  align-items:center;
}

.membership-panel,
.about-panel{
  border:1px solid var(--line);
  border-radius:26px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,106,0,.055),transparent 36%),
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.3);
}

.panel-line,
.about-panel div{
  padding:32px;
  border-bottom:1px solid rgba(255,255,255,.075);
}

.panel-line:last-child,
.about-panel div:last-child{
  border-bottom:0;
}

.panel-line strong,
.about-panel strong{
  display:block;
  text-transform:uppercase;
  letter-spacing:.16em;
  margin-bottom:10px;
}

.panel-line span,
.about-panel span{
  color:var(--muted);
}

.contact-section{
  justify-content:center;
}

.contact-card{
  width:min(780px,calc(100% - 34px));
  margin:0 auto;
  text-align:center;
  padding:60px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 0%,rgba(255,106,0,.06),transparent 36%),
    linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
  box-shadow:0 30px 90px rgba(0,0,0,.32);
}

.contact-form,
.contact-card form{
  display:grid;
  gap:14px;
  margin-top:32px;
}

.contact-card input{
  width:100%;
  border:1px solid rgba(255,255,255,.09);
  border-radius:16px;
  background:rgba(255,255,255,.035);
  color:#fff;
  padding:18px;
  font:inherit;
  outline:none;
}

.contact-card input:focus{
  border-color:rgba(255,106,0,.52);
}

.contact-card button{
  height:60px;
  border:0;
  border-radius:999px;
  background:linear-gradient(135deg,#ff7a18,#ff5b00);
  color:#fff;
  font-weight:800;
  letter-spacing:.22em;
  cursor:pointer;
}

.site-footer{
  width:min(1320px,calc(100% - 70px));
  margin:0 auto;
  padding:0 0 48px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:26px;
  align-items:center;
  color:var(--faint);
  font-size:.78rem;
}

.site-footer a{
  color:var(--faint);
  text-decoration:none;
}

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

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:24px;
}

@media(max-width:1000px){
  .two-col,
  .membership-layout{
    grid-template-columns:1fr;
    gap:42px;
  }

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

  .site-footer{
    grid-template-columns:1fr;
    text-align:center;
  }
}

@media(max-width:760px){
  .site-header{padding:26px 24px}
  .logo{font-size:.72rem}
  .fullscreen-menu .menu-inner{
    width:calc(100% - 40px);
    padding-top:110px;
  }

  .menu-links a{
    font-size:3rem;
  }

  .menu-footer{
    flex-direction:column;
  }

  .tagline{
    letter-spacing:.34em;
    font-size:.62rem;
  }

  .section-shell{
    width:min(100% - 34px,560px);
  }

  .section{
    min-height:auto;
    padding:82px 0;
  }

  .section-heading h1,
  .section-heading h2,
  .membership-layout h1,
  .about-copy h1,
  .contact-card h1{
    font-size:2.35rem;
  }

  .contact-card{
    padding:36px 24px;
  }
}
