/* Godfather Antiques — Dark Luxury "Mafia" Style
   ------------------------------------------------
   Edit palette easily in :root variables.
*/

:root{
  --bg: #0b0b0f;
  --bg2:#07070a;
  --panel:#101017;
  --panel2:#0e0e14;
  --text:#f2f2f2;
  --muted:#b9b9c6;
  --gold:#d6b36a;
  --gold2:#b98a3d;
  --line: rgba(214,179,106,.28);
  --shadow: 0 18px 40px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 900px at 20% -10%, rgba(214,179,106,.14), transparent 55%),
              radial-gradient(900px 800px at 100% 0%, rgba(214,179,106,.10), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px;
  width:auto; height:auto;
  padding:10px 14px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius: 12px;
  z-index:9999;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(8,8,12,.68);
  border-bottom: 1px solid rgba(214,179,106,.12);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.brand-mark{
  width:52px;
  height:52px;
  border-radius: 14px;
  border:1px solid rgba(214,179,106,.22);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  background:#000;
  object-fit:cover;
}

.brand-name{
  font-family: Cinzel, serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight:700;
  font-size: 14px;
}

.brand-tagline{
  display:block;
  color: var(--muted);
  font-size: 12px;
  margin-top:3px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap: 16px;
}

.nav-link{
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  padding:10px 10px;
  border-radius: 12px;
  transition: .2s ease;
}
.nav-link:hover{ color: var(--text); background: rgba(255,255,255,.04); }

.nav-cta{
  margin-left: 6px;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid rgba(214,179,106,.32);
  background: linear-gradient(180deg, rgba(214,179,106,.18), rgba(214,179,106,.08));
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(214,179,106,.22);
  border-radius: 14px;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  color:var(--text);
}

.nav-toggle-lines{
  width:18px; height:12px;
  position:relative;
  display:block;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines{
  background: var(--text);
}
.nav-toggle-lines{
  background: transparent;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px; height:2px;
  border-radius: 2px;
  background: var(--text);
}
.nav-toggle-lines::before{ top:0; }
.nav-toggle-lines::after{ bottom:0; }
.nav-toggle-lines span{ display:none; }

/* Hero */
.hero{
  position:relative;
  padding: 70px 0 50px;
}

.hero-bg{
  position:absolute;
  inset:-120px -40px auto -40px;
  height: 440px;
  background:
    radial-gradient(600px 220px at 18% 35%, rgba(214,179,106,.18), transparent 65%),
    radial-gradient(520px 260px at 70% 10%, rgba(214,179,106,.12), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
  filter: blur(0px);
  pointer-events:none;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}

.kicker{
  display:inline-block;
  font-family: Cinzel, serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(214,179,106,.90);
  border: 1px solid rgba(214,179,106,.28);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214,179,106,.08);
}

h1{
  margin: 14px 0 10px;
  font-family: Cinzel, serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: .02em;
}
.accent{ color: var(--gold); }

.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  border:1px solid transparent;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  user-select:none;
  cursor:pointer;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(214,179,106,.24), rgba(214,179,106,.10));
  border-color: rgba(214,179,106,.36);
  box-shadow: var(--shadow);
}
.btn-primary:hover{
  background: linear-gradient(180deg, rgba(214,179,106,.30), rgba(214,179,106,.12));
  border-color: rgba(214,179,106,.46);
}

.btn-ghost{
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(214,179,106,.20);
}

.btn-small{
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
}

.trust{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-item{
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(214,179,106,.14);
  border-radius: 16px;
  min-width: 160px;
}

.trust-title{
  font-weight:700;
  font-size: 13px;
}
.trust-sub{
  display:block;
  margin-top:3px;
  color: var(--muted);
  font-size: 12px;
}

/* Hero card */
.hero-card{
  background:
    radial-gradient(500px 240px at 40% 0%, rgba(214,179,106,.14), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(214,179,106,.22);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: var(--radius2);
  background:
    linear-gradient(135deg, rgba(214,179,106,.30), transparent 35%),
    linear-gradient(225deg, rgba(214,179,106,.18), transparent 35%);
  opacity:.45;
  pointer-events:none;
}

.hero-card-inner{
  position:relative;
  padding: 18px;
  height:100%;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.sigil{
  display:flex;
  align-items:center;
  justify-content:center;
}
.sigil img{
  width: 170px;
  height: 170px;
  border-radius: 18px;
  border: 1px solid rgba(214,179,106,.22);
  background:#000;
  object-fit:cover;
}

.divider{
  height:1px;
  width:100%;
  background: linear-gradient(90deg, transparent, rgba(214,179,106,.55), transparent);
}

.divider.soft{
  background: linear-gradient(90deg, transparent, rgba(214,179,106,.28), transparent);
  margin: 8px 0;
}

.quote{
  font-family: Cinzel, serif;
  font-size: 18px;
  line-height: 1.35;
  margin: 0;
}

.small{ color: var(--muted); font-size: 13px; line-height:1.6; margin:0; }
.muted{ color: var(--muted); }

/* Sections */
.section{
  padding: 66px 0;
}

.section-head{
  max-width: 70ch;
  margin-bottom: 22px;
}

.section-head h2{
  font-family: Cinzel, serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
  font-size: 22px;
}

.section-head p{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
}

.section-dark{
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(214,179,106,.10), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 60%);
  border-top: 1px solid rgba(214,179,106,.12);
  border-bottom: 1px solid rgba(214,179,106,.10);
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(214,179,106,.14);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.panel-outline{
  background: rgba(0,0,0,.25);
  border-color: rgba(214,179,106,.18);
}

.panel h3{
  font-family: Cinzel, serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 16px;
}

.panel p{
  margin:0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pill-row{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.pill{
  border: 1px solid rgba(214,179,106,.22);
  background: rgba(214,179,106,.08);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(242,242,242,.92);
}

.note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(185,185,198,.92);
  opacity:.9;
}

.contact-grid .contact-email a{
  font-family: Cinzel, serif;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(214,179,106,.35);
  text-underline-offset: 4px;
}

/* Form */
.form{
  display:grid;
  gap: 12px;
  margin-top: 10px;
}

label span{
  display:block;
  color: rgba(242,242,242,.92);
  font-size: 13px;
  margin-bottom: 6px;
}

input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(214,179,106,.18);
  background: rgba(0,0,0,.35);
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(214,179,106,.45);
  box-shadow: 0 0 0 4px rgba(214,179,106,.10);
}

input::placeholder, textarea::placeholder{
  color: rgba(185,185,198,.70);
}

/* Footer */
.site-footer{
  padding: 28px 0 18px;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(214,179,106,.10);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-brand img{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(214,179,106,.18);
  background:#000;
  object-fit:cover;
}

.footer-name{
  font-family: Cinzel, serif;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}

.footer-small{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.footer-links{
  display:flex;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links a:hover{ color: var(--text); }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: rgba(185,185,198,.85);
  font-size: 12px;
  padding-top: 10px;
}

.to-top{
  width:34px; height:34px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border:1px solid rgba(214,179,106,.18);
  background: rgba(255,255,255,.03);
}

/* Responsive */
@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-card{ order: 2; }
  .hero-copy{ order: 1; }
}

@media (max-width: 760px){
  .grid{ grid-template-columns: 1fr; }
  .site-nav{
    position:absolute;
    right: 20px;
    top: 68px;
    background: rgba(12,12,18,.95);
    border:1px solid rgba(214,179,106,.18);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    min-width: 220px;
  }
  .site-nav.is-open{ display:flex; }
  .nav-toggle{ display:flex; }
  .nav-cta{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn{ transition:none; }
}
