/* CRB Coming Soon - Ocean inspired layout */
:root{
  --overlay: rgba(12, 31, 54, 0.55);
  --white: #ffffff;
  --secondary: rgba(255,255,255,0.75);
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%;overflow:hidden}

body{
  font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  background:#5c0202;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:url("assets/website.png") center/cover no-repeat;
  z-index:-2;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(160deg, rgba(92,0,0,0.75) 0%, rgba(25,0,0,0.8) 55%, rgba(10,0,0,0.9) 100%);
  z-index:-1;
}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:20;
  backdrop-filter:blur(14px);
  background:linear-gradient(180deg, rgba(20,0,0,0.7) 0%, rgba(10,0,0,0.2) 100%);
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.header-top,
.header-bottom{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 24px;
  gap:16px;
}

.header-top{
  border-bottom:1px solid rgba(255,255,255,0.08);
}

.social-bar{
  display:flex;
  align-items:center;
  gap:12px;
}

.social-bar a{
  color:rgba(255,255,255,0.75);
  transition:color 0.3s ease;
}

.social-bar svg{
  width:16px;
  height:16px;
}

.social-bar a:hover{
  color:#ffffff;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:2px;
  text-transform:uppercase;
  position:relative;
}

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

.mobile-menu-btn{
  display:none;
  background:none;
  border:none;
  color:rgba(255,255,255,0.7);
  cursor:pointer;
  padding:8px;
  transition:color 0.3s ease;
  align-items:center;
  justify-content:center;
}

.mobile-menu-btn svg{
  width:20px;
  height:20px;
}

.mobile-menu-btn:hover{
  color:#ffffff;
}

.mobile-menu-dropdown{
  display:none;
  position:absolute;
  top:100%;
  right:0;
  margin-top:8px;
  background:linear-gradient(180deg, rgba(20,0,0,0.95) 0%, rgba(10,0,0,0.98) 100%);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:8px;
  padding:12px 0;
  min-width:140px;
  box-shadow:0 8px 24px rgba(0,0,0,0.5);
  z-index:100;
  flex-direction:column;
  gap:0;
}

.mobile-menu-dropdown.active{
  display:flex;
}

.mobile-menu-link{
  display:block;
  padding:10px 20px;
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:all 0.3s ease;
  font-family:'Bebas Neue', sans-serif;
}

.mobile-menu-link:hover{
  color:#ffffff;
  background:rgba(255,255,255,0.1);
}

.link-sm{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
  transition:color 0.3s ease;
}

.link-sm:hover{
  color:#ffffff;
}

.top-divider{
  color:rgba(255,255,255,0.35);
}

.top-icons{
  display:flex;
  align-items:center;
  gap:8px;
}

.top-icons a{
  color:rgba(255,255,255,0.7);
  transition:color 0.3s ease;
}

.top-icons svg{
  width:16px;
  height:16px;
}

.top-icons a:hover{
  color:#ffffff;
}

.header-bottom{
  padding-top:16px;
  padding-bottom:16px;
}

.nav-group{
  display:flex;
  align-items:center;
  gap:20px;
}

.nav-link{
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:14px;
  color:rgba(255,255,255,0.65);
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
  transition:color 0.3s ease;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:rgba(255,255,255,0.9);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus{
  color:#ffffff;
}

.nav-link:hover::after,
.nav-link:focus::after{
  transform:scaleX(1);
}

.header-emblem{
  display:flex;
  align-items:center;
  justify-content:center;
}

.header-crest-large{
  width:76px;
  height:auto;
}

/* Main wrapper */
.wrap{
  position:relative;
  width:100vw;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:160px 24px 90px;
  text-align:center;
}

.hero{
  max-width:720px;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
  padding:60px 40px 80px;
  position:relative;
  animation:fadeUp 1.2s ease-out both;
}

.logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1200px;
}

.crest{
  width:clamp(220px, 28vw, 340px);
  max-width:70vw;
  height:auto;
  filter:drop-shadow(0 10px 24px rgba(0,0,0,0.4));
  display:block;
  pointer-events:none;
  object-fit:cover;
}

.crest-fallback{
  display:none;
}

.eyebrow{
  font-family:'Bebas Neue', sans-serif;
  font-size:16px;
  letter-spacing:6px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.65);
}

.headline{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(38px, 6vw, 68px);
  letter-spacing:8px;
  font-weight:700;
  text-transform:uppercase;
  text-shadow:0 12px 32px rgba(0,0,0,0.5);
}

.highlight{
  color:#E20814;
  text-shadow:0 12px 32px rgba(0,0,0,0.55);
  letter-spacing:10px;
}

.separator{
  width:170px;
  height:1px;
  background:rgba(255,255,255,0.55);
  margin-top:4px;
}

.lead{
  font-family:'Bebas Neue', sans-serif;
  font-size:clamp(16px, 2.1vw, 20px);
  line-height:1.7;
  color:rgba(255,255,255,0.85);
  max-width:520px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:16px;
}

.cta-group{
  display:flex;
  gap:16px;
  margin-top:16px;
}

.btn{
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:16px;
  padding:14px 32px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.6);
  text-decoration:none;
  transition:all 0.3s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(6px);
}

.btn.primary{
  background:#ffffff;
  color:#a40000;
  border-color:transparent;
  box-shadow:0 14px 36px rgba(0,0,0,0.4);
}

.btn.primary:hover{
  background:#a40000;
  color:#a40000;
}

.btn.ghost{
  color:#ffffff;
}

.btn.ghost:hover{
  background:rgba(255,255,255,0.2);
  border-color:rgba(255,255,255,0.8);
}

.credit{
  font-family:'Bebas Neue', sans-serif;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,0.55);
}

.socials{
  display:flex;
  gap:18px;
  margin-top:18px;
}

.s{
  font-family:'Bebas Neue', sans-serif;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.35);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  letter-spacing:1px;
  text-decoration:none;
  background:rgba(255,255,255,0.08);
  transition:all 0.3s ease;
  box-shadow:0 12px 26px rgba(0,0,0,0.35);
}

.s svg{
  width:22px;
  height:22px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.s:hover{
  background:rgba(255,255,255,0.88);
  color:#ba0c0c;
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(0,0,0,0.5);
  border-color:rgba(255,255,255,0.6);
}

.email-contact{
  margin-top:24px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.email-link{
  font-family:'Poppins', sans-serif;
  font-size:clamp(14px, 1.8vw, 16px);
  color:rgba(255,255,255,0.85);
  text-decoration:none;
  letter-spacing:0.5px;
  transition:all 0.3s ease;
  padding:8px 16px;
  border-radius:6px;
}

.email-link:hover{
  color:#ffffff;
  background:rgba(255,255,255,0.1);
  transform:translateY(-2px);
}

.notify{
  margin-top:12px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
}

.notify input{
  width: clamp(220px, 45vw, 320px);
  padding:14px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.5);
  background:rgba(0,0,0,0.25);
  color:#ffffff;
  font-family:'Poppins', sans-serif;
  font-size:14px;
  letter-spacing:0.8px;
  outline:none;
  transition:border-color 0.3s ease, background 0.3s ease;
}

.notify input::placeholder{
  color:rgba(255,255,255,0.6);
  text-transform:none;
  letter-spacing:0.5px;
}

.notify input:focus{
  border-color:#ffffff;
  background:rgba(255,255,255,0.18);
}

.notify button{
  padding:14px 26px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.8);
  background:#ffffff;
  color:#8f0000;
  font-family:'Bebas Neue', sans-serif;
  letter-spacing:3px;
  text-transform:uppercase;
  font-size:16px;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 12px 28px rgba(0,0,0,0.35);
}

.notify button:hover{
  background:#5c0202;
  color:#ffffff;
  border-color:rgba(255,255,255,0.9);
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}


/* Responsive adjustments */
@media (max-width:1024px){
  .header-top,
  .header-bottom{
    padding:12px 24px;
  }

  .nav-group{
    gap:16px;
  }

  .wrap{
    padding:150px 20px 80px;
  }

  .hero{
    max-width:640px;
    padding:54px 32px 70px;
    gap:24px;
  }

  .crest{
    width:clamp(200px, 32vw, 300px);
  }

  .eyebrow{
    letter-spacing:5px;
    font-size:14px;
  }

  .headline{
    font-size:clamp(36px, 8vw, 60px);
    letter-spacing:6px;
  }

  .highlight{
    letter-spacing:8px;
  }

  .lead{
    font-size:clamp(15px, 2.6vw, 18px);
    letter-spacing:1.6px;
  }

  .notify{
    gap:10px;
  }
}

@media (max-width:768px){
  .header-top{
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 16px;
  }

  .top-actions-desktop{
    display:none;
  }

  .mobile-menu-btn{
    display:flex;
  }

  .wrap{
    padding:140px 18px 70px;
  }

  .hero{
    padding:46px 26px 60px;
    gap:20px;
  }

  .logo-wrap{
    margin-bottom:6px;
  }

  .crest{
    width:clamp(190px, 40vw, 260px);
  }

  .headline{
    font-size:clamp(32px, 10vw, 52px);
  }

  .highlight{
    letter-spacing:6px;
  }

  .lead{
    letter-spacing:1.3px;
  }

  .notify input{
    padding:12px 16px;
    font-size:13px;
  }

  .notify button{
    padding:12px 22px;
    font-size:15px;
  }

  .socials{
    flex-wrap:wrap;
    justify-content:center;
  }

  .email-contact{
    margin-top:20px;
  }

  .email-link{
    font-size:14px;
    padding:6px 14px;
  }
}

@media (max-width:640px){
  .header-top,
  .header-bottom{
    padding:12px 18px;
  }

  .social-bar{
    gap:8px;
  }

  .social-bar svg{
    width:14px;
    height:14px;
  }

  /* Hide less essential social icons on very small screens (LinkedIn and TikTok) */
  .social-bar a:nth-child(5),
  .social-bar a:nth-child(6){
    display:none;
  }

  .mobile-menu-btn svg{
    width:18px;
    height:18px;
  }

  .top-icons svg{
    width:14px;
    height:14px;
  }

  .top-actions-desktop{
    display:none;
  }

  .mobile-menu-btn{
    display:flex;
  }

  .nav-group{
    display:none;
  }

  .header-bottom{
    justify-content:center;
  }

  .header-crest-large{
    width:62px;
  }

  .hero{
    padding:50px 28px 70px;
    gap:24px;
  }

  .crest{
    width:200px;
  }

  .separator{
    width:180px;
  }

  .lead{
    font-size:15px;
  }

  .highlight{
    letter-spacing:4px;
  }

  .notify{
    flex-direction:column;
    gap:10px;
    width:100%;
  }

  .notify input,
  .notify button{
    width:100%;
  }

  .cta-group{
    flex-direction:column;
    width:100%;
  }

  .btn{
  width:100%;
  }

  .socials{
    gap:14px;
  }

  .s{
    width:44px;
    height:44px;
    font-size:13px;
  }

  .email-contact{
    margin-top:18px;
  }

  .email-link{
    font-size:13px;
    padding:6px 12px;
  }
}

@media (max-width:420px){
  .header-top{
    padding:8px 14px;
    gap:8px;
  }

  .social-bar{
    gap:6px;
  }

  .social-bar svg{
    width:13px;
    height:13px;
  }

  .top-icons{
    gap:6px;
  }

  .top-icons svg{
    width:13px;
    height:13px;
  }

  .mobile-menu-btn{
    padding:6px;
  }

  .mobile-menu-btn svg{
    width:16px;
    height:16px;
  }

  .wrap{
    padding:130px 16px 64px;
  }

  .hero{
    padding:40px 22px 52px;
    gap:18px;
  }

  .crest{
    width:min(75vw, 220px);
  }

  .headline{
    font-size:32px;
    letter-spacing:3px;
  }

  .eyebrow{
    letter-spacing:4px;
    font-size:13px;
  }

  .lead{
    font-size:14px;
    letter-spacing:1px;
  }

  .separator{
    width:140px;
  }

  .notify input{
    padding:11px 14px;
  }

  .notify button{
    padding:11px 18px;
    font-size:14px;
  }

  .s{
    width:40px;
    height:40px;
  }

  .email-contact{
    margin-top:16px;
  }

  .email-link{
    font-size:12px;
    padding:5px 10px;
    letter-spacing:0.3px;
  }
}
