:root {
  --bg: #0f0f10;
  --panel: #17181b;
  --text: #f4f0e8;
  --muted: #c7bfaf;
  --line: rgba(255,255,255,0.08);
  --gold: #c4a46b;
  --gold-soft: rgba(196,164,107,0.12);
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.section-dark { background: linear-gradient(180deg, #111214 0%, #0c0c0d 100%); }
.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-heading { margin-bottom: 28px; }
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.05;
  margin: 0 0 14px;
}
h1 { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 780px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3 { font-size: 1.75rem; }
p { margin: 0 0 16px; color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(10,10,10,0.62);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196,164,107,0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}
.brand-text { letter-spacing: 0.04em; }
nav { display: flex; gap: 24px; flex-wrap: wrap; }
nav a { color: var(--muted); }
nav a:hover { color: var(--white); }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.82), rgba(0,0,0,0.42)),
    radial-gradient(circle at top right, rgba(196,164,107,0.16), transparent 30%),
    linear-gradient(180deg, #141414 0%, #0e0e10 100%);
}
.overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 90%);
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
}
.hero-copy { max-width: 650px; font-size: 1.05rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.25s ease;
}
.btn-primary {
  background: var(--gold);
  color: #1a140c;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-secondary {
  border-color: rgba(255,255,255,0.18);
  color: var(--white);
  background: rgba(255,255,255,0.02);
}
.btn-secondary:hover { background: rgba(255,255,255,0.06); }

.grid.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card, .service-item, .contact-form, .cta-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.card {
  padding: 28px;
  min-height: 240px;
  background: linear-gradient(180deg, rgba(196,164,107,0.07), rgba(255,255,255,0.02));
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-item {
  padding: 26px;
}
.service-item span {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-box {
  padding: 34px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, rgba(196,164,107,0.15), rgba(255,255,255,0.02));
}
.contact-grid { align-items: start; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-list li { margin-bottom: 10px; color: var(--muted); }
.contact-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}
input, textarea {
  width: 100%;
  background: #101113;
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}
input::placeholder, textarea::placeholder { color: #8e8a83; }
.form-message { min-height: 24px; margin: 0; color: var(--gold); }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 34px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .grid.two-col, .cards, .service-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  nav { display: none; }
  .section { padding: 72px 0; }
  h1 { font-size: 2.8rem; }
}
