:root {
  --bg: #070707;
  --bg-elev: #0e0e0e;
  --bg-card: #121212;
  --bg-soft: #161616;
  --line: rgba(198, 163, 90, 0.22);
  --line-strong: rgba(198, 163, 90, 0.45);
  --gold: #c6a35a;
  --gold-bright: #e8d5a3;
  --gold-deep: #8d6d2f;
  --ivory: #f4efe6;
  --ivory-dim: #cfc6b6;
  --muted: #9a9286;
  --danger: #c45c4a;
  --ok: #7d9a6a;
  --shadow: 0 30px 80px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1180px;
  --nav-h: 84px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ivory); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.wrap-wide { width: min(1320px, calc(100% - 48px)); margin-inline: auto; }

/* Top bar */
.announce {
  background: linear-gradient(90deg, #0a0a0a, #16110a 40%, #0a0a0a);
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 16px;
}
.announce strong { color: var(--ivory); font-weight: 500; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(7,7,7,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  min-width: 170px;
}
.brand img.mark {
  width: 42px; height: 42px; object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.brand .name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.28em;
  color: var(--gold-bright);
  line-height: 1;
}
.brand .name span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.42em;
  color: var(--muted);
  margin-top: 4px;
}
.menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.menu a:hover, .menu a.active { color: var(--gold-bright); }
.menu .has-sub { position: relative; }
.submenu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: none;
  box-shadow: var(--shadow);
}
.has-sub:hover .submenu { display: block; }
.submenu a {
  display: block; padding: 10px 12px; border-radius: 8px;
  letter-spacing: 0.12em;
}
.submenu a:hover { background: #1a1a1a; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.burger {
  display: none; width: 40px; height: 40px;
  border: 1px solid var(--line); background: transparent; color: var(--ivory);
  border-radius: 8px; cursor: pointer;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(180deg, #e8d5a3, #c6a35a 55%, #9a7636);
  color: #1a1408; font-weight: 600;
  box-shadow: 0 8px 24px rgba(198,163,90,.22);
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ivory);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-wide { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(92vh - var(--nav-h));
  display: grid; place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 70% 20%, rgba(198,163,90,.16), transparent 60%),
    radial-gradient(600px 400px at 10% 80%, rgba(198,163,90,.08), transparent 55%),
    url("../img/hero-bg.jpg") center/cover no-repeat;
  opacity: .55;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,7,.35), rgba(7,7,7,.88));
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 72px 0 88px; }
.kicker {
  color: var(--gold);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}
.lede {
  max-width: 640px; margin: 26px auto 0;
  color: var(--ivory-dim);
  font-size: 18px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.hero-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 46px;
}
.pill {
  border: 1px solid var(--line);
  background: rgba(0,0,0,.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* Sections */
section { padding: 92px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-head p { margin-top: 14px; color: var(--muted); font-size: 17px; }
.gold { color: var(--gold-bright); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
  background: linear-gradient(180deg, #141414, #0d0d0d);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 10px;
}
.card p { color: var(--muted); }
.icon-line {
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: #0f0f0f;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: var(--gold);
  background:
    radial-gradient(400px 180px at 50% 0%, rgba(198,163,90,.16), transparent 60%),
    #12100c;
  transform: translateY(-10px);
}
.badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold);
  color: #1a1408;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; font-weight: 600;
}
.price-card .size {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--ivory);
}
.price-card .fee {
  margin: 6px 0 18px;
  color: var(--gold-bright);
  font-size: 28px;
  letter-spacing: -0.02em;
}
.price-card .fee small { font-size: 14px; color: var(--muted); letter-spacing: 0; }
.spec-list { list-style: none; margin: 8px 0 24px; flex: 1; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  color: var(--ivory-dim);
}
.spec-list span { color: var(--ivory); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
th {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; background: #101010;
}
td { color: var(--ivory-dim); }
td strong { color: var(--ivory); font-weight: 500; }

/* FAQ */
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #101010;
  padding: 0 20px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); padding-bottom: 18px; }

/* Forms */
.form {
  display: grid; gap: 14px;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
}
.form label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.form input, .form select, .form textarea {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--line);
  color: var(--ivory);
  border-radius: 12px;
  padding: 14px 14px;
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus {
  border-color: var(--gold);
}
.form textarea { min-height: 140px; resize: vertical; }

/* Owner */
.owner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.portrait {
  aspect-ratio: 4/5;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(180deg, rgba(198,163,90,.12), rgba(0,0,0,.2)),
    repeating-linear-gradient(45deg, #141414 0 12px, #101010 12px 24px);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait .slot {
  text-align: center; color: var(--muted); padding: 24px;
}
.portrait .slot b { display: block; color: var(--gold-bright); margin-bottom: 8px; letter-spacing: 0.2em; text-transform: uppercase; font-size: 12px; }

.about-hero-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}
.avatar-sm {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(198,163,90,.14);
  flex-shrink: 0;
}
.avatar-meta .who {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
}
.avatar-meta .role {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  margin-top: 6px;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  margin: 34px 0 10px;
}
.prose p { color: var(--ivory-dim); margin-top: 12px; }
.prose ul { margin: 10px 0 0 4px; }
.prose li { color: var(--ivory-dim); margin: 8px 0 8px 18px; }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  background: #090909;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.foot-brand .name {
  font-family: var(--font-display);
  letter-spacing: 0.28em;
  font-size: 22px;
  color: var(--gold-bright);
}
footer h4 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
footer a { display: block; color: var(--ivory-dim); padding: 4px 0; font-size: 14px; }
footer a:hover { color: var(--gold-bright); }
.legal {
  margin-top: 36px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted); font-size: 12px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

.page-hero {
  padding: 72px 0 36px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(198,163,90,.12), transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 0.95;
}
.crumbs { color: var(--muted); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.crumbs a { color: var(--gold); }

.note {
  border-left: 2px solid var(--gold);
  padding: 12px 16px;
  color: var(--ivory-dim);
  background: rgba(198,163,90,.05);
  border-radius: 0 12px 12px 0;
  margin: 18px 0;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 24px; border-top: 1px solid var(--gold); }
.step .n {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
}
.step h3 { margin: 8px 0; font-family: var(--font-display); font-size: 24px; font-weight: 500; }
.step p { color: var(--muted); }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.stat { background: #0e0e0e; padding: 28px 22px; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-bright);
  font-weight: 500;
}
.stat span { color: var(--muted); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.checkout-box {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 24px;
  background: #10100c;
}
.warn { color: #d7b38a; font-size: 13px; }

@media (max-width: 980px) {
  .menu, .nav-cta .btn-ghost { display: none; }
  .burger { display: grid; place-items: center; }
  .menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #0b0b0b; border-bottom: 1px solid var(--line);
    padding: 18px 24px 24px; gap: 16px;
  }
  .grid-3, .grid-4, .pricing-grid, .steps, .stat-row, .owner-grid, .split, .foot-grid, .grid-2 {
    grid-template-columns: 1fr;
  }
  .price-card.featured { transform: none; }
  .hero-actions { flex-direction: column; align-items: center; }
}
