:root{
  --gold:#D4AF37;
  --black:#0D0D0D;
  --soft:#F7F5EF;
  --muted:#666666;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--black);
  background:#ffffff;
  line-height:1.65;
}

a{
  color:inherit;
}

.wrap{
  width:min(1100px,92%);
  margin:auto;
}

.topbar{
  background:var(--black);
  color:#ffffff;
  padding:10px 0;
  font-size:.9rem;
}

.topbar .wrap{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

header{
  background:#ffffff;
  border-bottom:1px solid #dddddd;
  position:sticky;
  top:0;
  z-index:10;
}

nav{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:14px;
}

.mark{
  width:48px;
  height:48px;
  border:2px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-family:Georgia, serif;
  font-weight:700;
}

.brand strong{
  display:block;
  font-family:Georgia, serif;
  letter-spacing:.05em;
}

.brand span{
  display:block;
  color:#B8860B;
  font-size:.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.navlinks{
  display:flex;
  gap:20px;
  align-items:center;
}

.navlinks a{
  text-decoration:none;
}

.btn{
  display:inline-block;
  padding:12px 18px;
  background:var(--gold);
  border:1px solid var(--gold);
  border-radius:4px;
  text-decoration:none;
  font-weight:700;
  color:#111111;
  cursor:pointer;
}

.hero{
  background:
    linear-gradient(rgba(13,13,13,.90),rgba(13,13,13,.90)),
    radial-gradient(circle at 70% 30%,#4b4123,#0d0d0d 60%);
  color:#ffffff;
  padding:88px 0 78px;
}

.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.82rem;
  font-weight:700;
}

h1,
h2,
h3{
  font-family:Georgia, "Times New Roman", serif;
  line-height:1.2;
}

h1{
  font-size:clamp(2.7rem,6vw,5rem);
  margin:.2em 0;
}

h2{
  font-size:clamp(1.8rem,3vw,2.6rem);
}

h3{
  font-size:1.2rem;
}

.hero p{
  max-width:760px;
  font-size:1.12rem;
  color:#e9e9e9;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn.secondary{
  background:transparent;
  color:#ffffff;
}

section{
  padding:68px 0;
}

.alt{
  background:var(--soft);
}

.lead{
  max-width:850px;
  font-size:1.08rem;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:28px;
}

.card{
  border:1px solid #dddddd;
  background:#ffffff;
  padding:24px;
  border-radius:6px;
}

.num{
  color:var(--gold);
  font-family:Georgia, serif;
  font-size:1.5rem;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
}

.contact-box{
  background:var(--black);
  color:#ffffff;
  padding:30px;
  border-radius:6px;
}

.contact-box a{
  color:var(--gold);
}

form{
  border:1px solid #dddddd;
  padding:28px;
  border-radius:6px;
  background:#ffffff;
}

label{
  display:block;
  font-weight:700;
  margin:14px 0 6px;
}

input,
textarea{
  width:100%;
  padding:12px;
  border:1px solid #bbbbbb;
  border-radius:4px;
  font:inherit;
}

textarea{
  min-height:130px;
}

.consent{
  display:grid;
  grid-template-columns:20px 1fr;
  gap:10px;
  margin:18px 0;
  font-size:.9rem;
}

.consent input{
  width:auto;
  margin-top:5px;
}

.consent label{
  margin:0;
  font-weight:400;
}

.small{
  font-size:.86rem;
  color:var(--muted);
}

.policy{
  max-width:900px;
}

.policy h2{
  margin-top:36px;
  font-size:1.5rem;
}

.notice{
  border-left:4px solid var(--gold);
  padding:14px 18px;
  background:#fff9df;
  margin:22px 0;
}

footer{
  background:var(--black);
  color:#dddddd;
  padding:30px 0;
}

footer .wrap{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

footer a{
  color:var(--gold);
  text-decoration:none;
}

@media(max-width:800px){
  .navlinks{
    display:none;
  }

  .grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .brand strong{
    font-size:.9rem;
  }
}/* Official Auren Aegis Holdings logo */
.brand-logo {
  display: block;
  width: auto;
  height: 120px;
  max-width: 300px;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

@media (max-width: 700px) {
  .brand-logo {
    height: 64px;
    max-width: 220px;
  }
}