:root{
  --bg:#0b0b0b;
  --panel:#141414;
  --text:#f2f2f2;
  --muted:#bdbdbd;
  --gold:#B8963D;
  --stone:#6E6E6E;
  --line:rgba(255,255,255,.10);
  --max:1120px;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:var(--text);text-decoration:none}
a:hover{color:var(--gold)}
.wrap{max-width:var(--max);margin:0 auto;padding:0 18px}

.gold{color:var(--gold)}
.muted{color:var(--muted)}
.small{font-size:.92rem}

.h1{
  font-family:"Cinzel", serif;
  font-weight:700;
  letter-spacing:.02em;
  line-height:1.05;
  margin:.2rem 0 0;
  font-size:clamp(2.0rem, 4.5vw, 3.2rem);
  /* makes headline readable even with a busy hero image */
  text-shadow:
    0 2px 12px rgba(0,0,0,0.65),
    0 0 30px rgba(0,0,0,0.45);
}
.h2{
  font-family:"Cinzel", serif;
  font-weight:700;
  letter-spacing:.02em;
  margin:0 0 .25rem;
  font-size:clamp(1.4rem, 2.2vw, 1.8rem);
}
.h3{
  margin:.1rem 0 .35rem;
  font-size:1.1rem;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(180deg, #d7c07a, var(--gold));
  color:#111;
  font-weight:800;
  border:1px solid rgba(0,0,0,.2);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}
.btn:hover{filter:brightness(1.03)}
.btn--ghost{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(184,150,61,.65);
  box-shadow:none;
}
.btn--sm{padding:9px 12px;border-radius:12px;font-weight:700}

.header{
  position:sticky;top:0;z-index:50;
  background: rgba(11,11,11,.80);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}

/* Logo sizing */
.brand__logo{
  height:78px;   /* bigger on desktop */
  width:auto;
  display:block;
}
@media (max-width: 860px){
  .brand__logo{
    height:56px; /* clean on mobile */
    transform:scale(1.06);
  }
}

.nav{display:flex;gap:18px;align-items:center}
.menu{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  color:var(--text);
  border-radius:12px;
  padding:8px 10px;
  font-size:18px;
}

.hero{
  position:relative;
  padding:64px 0 34px;
  overflow:hidden;
  border-bottom:1px solid var(--line);
}

/* Hero background image */
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.90)),
    radial-gradient(900px 420px at 15% 15%, rgba(184,150,61,.22), transparent 58%),
    radial-gradient(900px 420px at 90% 10%, rgba(110,110,110,.18), transparent 58%),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center;
  filter:saturate(1.05) contrast(1.05);
}

/* Busy hero fix: adds a centered cinematic fade under the headline */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(
      ellipse at 35% 35%,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.62) 45%,
      rgba(0,0,0,0.85) 75%
    );
  z-index:0;
}

.hero__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.2fr .85fr;
  gap:22px;
  align-items:start;
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.78rem;
  color:var(--muted);
  margin:0 0 .45rem;
}
.lead{
  max-width:56ch;
  color:var(--muted);
  margin:.8rem 0 0;
  font-size:1.05rem;
}
.cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 0}
.badges{display:flex;gap:10px;flex-wrap:wrap;margin:18px 0 0}
.badge{
  border:1px solid rgba(184,150,61,.35);
  background: rgba(18,18,18,.65);
  padding:8px 10px;
  border-radius:999px;
  font-size:.9rem;
  color: var(--text);
}

.hero__card{
  background: rgba(18,18,18,.78);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.card__head{border-bottom:1px solid rgba(255,255,255,.10);padding-bottom:12px;margin-bottom:12px}
.card__title{
  font-family:"Cinzel", serif;
  font-size:1.15rem;
  margin:0;
  color:#d7c07a;
  letter-spacing:.05em;
}
.card__sub{margin:.25rem 0 0;color:var(--muted);font-size:.95rem}

.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin:7px 0}

.mini{margin-top:12px;padding-top:12px;border-top:1px solid rgba(255,255,255,.10)}
.mini__label{margin:0;color:var(--stone);font-size:.85rem;text-transform:uppercase;letter-spacing:.12em}
.mini__value{margin:.35rem 0 0;color:var(--text);font-weight:700}
.mini__value a{color:var(--text);text-decoration:underline;text-decoration-color:rgba(184,150,61,.45)}
.mini__value a:hover{color:var(--gold)}

.section{padding:46px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(18,18,18,.85), rgba(11,11,11,.95));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:14px}

.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

.panel{
  background: rgba(18,18,18,.75);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
}
.panel--wide{padding:18px}

.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.pricing__col{
  background: rgba(18,18,18,.75);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
}
.priceRow{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--muted);
}
.priceRow:last-child{border-bottom:none}
.note{margin:10px 0 0;color:var(--stone);font-size:.95rem}

.pricing__bar{
  grid-column:1 / -1;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
  background: rgba(184,150,61,.08);
  border:1px solid rgba(184,150,61,.25);
  border-radius: var(--radius);
  padding:14px 16px;
}

.form{
  max-width: 820px;
  background: rgba(18,18,18,.75);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
}
label{display:block;margin:10px 0;color:var(--muted);font-size:.95rem}
input, textarea, select{
  width:100%;
  margin-top:6px;
  padding:12px;
  border-radius:14px;
  background: rgba(11,11,11,.9);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
  font-family:inherit;
}
input:focus, textarea:focus, select:focus{
  outline:2px solid rgba(184,150,61,.28);
  border-color: rgba(184,150,61,.55);
}
.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

/* Hide honeypot row */
.hidden{display:none}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  background: rgba(11,11,11,.92);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}
.footer__logo{height:40px;width:auto;display:block}
.footer__links{display:flex;flex-direction:column;gap:6px}

/* Social icons */
.socials{
  display:flex;
  gap:14px;
  margin-top:8px;
}
.socials a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid rgba(184,150,61,.35);
  background: rgba(18,18,18,.75);
  transition: all .25s ease;
}
.socials svg{
  width:18px;
  height:18px;
  fill: var(--text);
  transition: fill .25s ease;
}
.socials a:hover{
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(184,150,61,.35);
}
.socials a:hover svg{fill: var(--gold)}

/* Header socials (slightly tighter) */
.socials--header{
  margin-top:0;
  align-items:center;
}
.socials--header a{
  width:34px;
  height:34px;
  border-radius:12px;
}
.socials--header svg{
  width:17px;
  height:17px;
}

@media (max-width: 980px){
  .grid{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 860px){
  .hero__inner{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .form__grid{grid-template-columns:1fr}

  .nav{
    display:none;
    position:absolute;
    right:18px;
    top:88px;
    width:min(340px, calc(100vw - 36px));
    flex-direction:column;
    gap:10px;
    padding:12px;
    background: rgba(18,18,18,.95);
    border:1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
  }
  .nav.open{display:flex}
  .menu{display:block}

  .socials--header{
    width:100%;
    justify-content:flex-start;
    padding-top:8px;
    border-top:1px solid rgba(255,255,255,.10);
    margin-top:6px;
  }
}
@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
}
