﻿:root{
  --cream:#f3ede3;
  --cream-2:#efe6da;
  --green:#0f2217;
  --green-2:#13301f;
  --white:#ffffff;

  --text:#f6f1e8;
  --text-dim: rgba(246,241,232,.82);
  --text-dimmer: rgba(246,241,232,.72);

  --accent:#c9782c;
  --accent-dark:#b6671f;

  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;

  --container: 1180px;

  --logo-size: 177px;
  --logo-overhang: calc(var(--logo-size) * 0.5);
  --nav-height: calc(var(--logo-size) * 0.25);
  --header-height: calc(44px + var(--nav-height));
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#0a120c;
  color: var(--text);
}
a{color:inherit; text-decoration:none}
.container{
  width:min(var(--container), calc(100% - 44px));
  margin:0 auto;
}
#site-header{
  display:block;
  min-height: var(--header-height);
  position:absolute;
  top:0;
  left:0;
  right:0;
}

/* TOP STRIP */
.topbar{
  position:relative;
  z-index:10;
  background: linear-gradient(180deg, rgba(243,237,227,.92), rgba(243,237,227,.72));
  color: rgba(15,34,23,.88);
  border-bottom: 1px solid rgba(15,34,23,.14);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
}
.topbar__group{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.topitem{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(15,34,23,.14);
}
.topitem svg{width:16px;height:16px}

/* NAV STRIP */
.navstrip{
  position:relative;
  z-index:10;
  background: linear-gradient(180deg, rgba(15,34,23,.8), rgba(15,34,23,.35));
  border-bottom: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.navgrid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap: 14px;
  height: var(--nav-height);
  padding: 0 calc((var(--logo-size) / 2) + 22px);
}
.nav-left, .nav-right{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav-right{justify-content:flex-end}
.navlink{
  color: rgba(246,241,232,.88);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .12s ease, color .12s ease;
}
.navlink:hover{
  background: rgba(255,255,255,.10);
  color: rgba(246,241,232,1);
}

.brand-float{
  position:absolute;
  left:50%;
  top: calc(-1 * var(--logo-overhang));
  transform: translateX(-50%);
  z-index: 30;
  pointer-events:auto;
}
.brand-float img{
  height: var(--logo-size);
  width: auto;
  display:block;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.55));
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 900;
  letter-spacing:.2px;
  box-shadow: 0 12px 26px rgba(201,120,44,.24);
  border: 1px solid rgba(255,255,255,.18);
  white-space:nowrap;
  transition: filter .12s ease, transform .15s ease, box-shadow .2s ease;
}
.cta:hover{
  filter:brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201,120,44,.30);
}
.cta:active{transform: translateY(1px)}

.cta-row{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  align-items:center;
}
.ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(246,241,232,.95);
  transition: transform .15s ease, box-shadow .2s ease;
}
.ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,255,255,.18);
}

.form-check{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items:start;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(27,45,32,.8);
}
.section--deep .form-check{
  color: rgba(246,241,232,.85);
}
.form-check input{
  width: 18px;
  height: 18px;
  margin: 0;
}
.form-check a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile drawer */
.burger{display:none}
.drawer{
  display:none;
  position:fixed;
  inset:0;
  z-index:999;
  background: rgba(0,0,0,.55);
}
.drawer__panel{
  position:absolute;
  right:0; top:0; bottom:0;
  width: min(420px, 92vw);
  background: rgba(243,237,227,.96);
  color: rgba(15,34,23,.92);
  padding: 18px;
}
.drawer__panel a{
  display:block;
  padding: 14px 12px;
  margin-top: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(15,34,23,.14);
  font-weight: 900;
}
.drawer__close{
  width:100%;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(15,34,23,.16);
  background: rgba(255,255,255,.75);
  font-weight: 900;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}
.drawer__close:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15,34,23,.18);
}

@media (max-width: 980px){
  :root{
    --logo-size: 132px;
    --logo-overhang: calc(var(--logo-size) * 0.42);
    --nav-height: calc(var(--logo-size) * 0.34);
  }
  .navgrid{
    grid-template-columns: 44px 1fr 44px;
    height: var(--nav-height);
    padding: 0;
  }
  .nav-left, .nav-right{display:none}
  .burger{
    display:flex;
    width:44px;height:44px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.16);
    background: rgba(15,34,23,.45);
    align-items:center;justify-content:center;
    cursor:pointer;
  }
  .burger svg{width:22px;height:22px}
  .topbar__inner{gap:10px}
  .topbar__group{display:none}
}
