:root {
  --bg: #0f1b2d;
  --bg-2: #142340;
  --surface: #1a2b4a;
  --surface-2: #1f3354;
  --ivory: #f5f0e8;
  --text: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.68);
  --accent: #c9a66b;
  --accent-2: #d9b67c;
  --border: rgba(245, 240, 232, 0.12);
  --border-strong: rgba(201, 166, 107, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); text-decoration: underline; }

.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Header --- */
header {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.brand-modus {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  color: var(--ivory);
}

.brand-dom {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--accent);
}

.contact-link {
  font-size: 14px;
  color: var(--muted);
}
.contact-link:hover { color: var(--accent); }

/* --- Main --- */
main {
  padding: 72px 0 96px;
}

/* --- Hero --- */
.hero { margin-bottom: 72px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 0 36px;
  line-height: 1.55;
}

/* --- CTAs --- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-2);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* --- Bullets --- */
.bullets {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0 0 72px;
}

.bullet {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px 26px;
  border-radius: 10px;
}

.bullet h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.bullet p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* --- Offer --- */
.offer {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  padding: 36px 40px;
  margin: 0 0 72px;
}

.offer-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.price-amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ivory);
}

.price-suffix {
  font-size: 14px;
  color: var(--muted);
  margin-right: 6px;
}

.price-divider {
  color: var(--accent);
  font-size: 22px;
  margin: 0 4px;
}

.offer ul {
  margin: 0 0 28px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.offer ul li { margin: 4px 0; }

/* --- Positioning --- */
.positioning {
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.positioning h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--ivory);
}

.positioning p {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.65;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted);
  font-size: 14px;
  margin-top: 48px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Mobile --- */
@media (max-width: 600px) {
  main { padding: 48px 0 72px; }
  .hero { margin-bottom: 48px; }
  .bullets { margin-bottom: 48px; }
  .offer { padding: 28px 22px; margin-bottom: 48px; }
}
