@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg: #0c0c0e;
  --panel: #16161a;
  --line: #2a2a30;
  --text: #f4f1ea;
  --muted: #a9a6a0;
  --gold: #e9c65f;
  --gold-dark: #cca63f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Lora', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.brand span { color: var(--gold); }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
nav a:hover, nav a.active { color: var(--gold); }

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.hero {
  text-align: center;
  padding: 40px 0 24px;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: var(--muted);
  margin: 0;
}
.tagline strong { color: var(--text); display:block; font-size: 48px; margin-bottom: 12px; }

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  line-height: 1.25;
  margin: 0 0 20px;
  font-weight: 700;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  margin: 56px 0 18px;
  font-weight: 700;
  text-align: center;
}
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--gold);
}
p { color: var(--text); }
.lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}
.center { text-align: center; }
h1.center-title, .hero h1 { text-align: center; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 18px;
}

form.card { display: flex; flex-direction: column; gap: 18px; }
form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
form input[type="text"],
form input[type="email"],
form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Lora', Georgia, serif;
  font-size: 15px;
  resize: vertical;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
form button.btn { align-self: center; margin-top: 4px; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #14140f;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.hero .btn { padding: 14px 28px; font-size: 15px; }
.btn:hover { background: var(--gold-dark); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #14140f; }
.btn-center { display:flex; justify-content:center; margin: 28px 0; }

.phone-shot {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}
.phone-shot img {
  max-width: 320px;
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0 48px;
  align-items: stretch;
}
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.pricing-card-highlight {
  border: 1px solid var(--gold);
  box-shadow: 0 20px 50px rgba(233, 198, 95, 0.14);
}
.pricing-badge {
  display: inline-block;
  align-self: flex-start;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Lora', Georgia, serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.pricing-badge-solid {
  background: var(--gold);
  color: #14140f;
  border: none;
}
.pricing-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 6px;
}
.pricing-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 4px;
}
.pricing-card-price span {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  margin-top: 3px;
}
.pricing-card-sub {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  margin: 14px 0 18px;
}
.pricing-card-desc {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 18px;
  flex-grow: 1;
}
.pricing-card-for {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 22px;
}
.pricing-card-for strong { color: var(--text); }
.pricing-card-btn { align-self: stretch; text-align: center; }

@media (max-width: 700px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

footer {
  border-top: 1px solid var(--line);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--gold); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-note {
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

ul { padding-left: 20px; }

@media (max-width: 600px) {
  h1 { font-size: 30px; }
  header { padding: 18px 20px; }
  nav a { margin-left: 16px; font-size: 13px; }
  .tagline strong { font-size: 36px; }
  .tagline { font-size: 20px; }
  .hero .btn { padding: 12px 22px; font-size: 13px; }
  .hero-ctas { gap: 12px; }
}
