*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0a;
  --parchment: #c8b89a;
  --amber: #d4a847;
  --muted: #6a6358;
  --dim: #3a3530;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--parchment);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ────────────────────────────────────────── */

.page-header {
  padding: 2rem 2rem 0;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.back-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.back-link:hover { color: var(--parchment); }

/* ── Main content ──────────────────────────────────── */

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  width: 100%;
  flex: 1;
}

.page-content h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.page-content .effective-date {
  font-size: 0.8rem;
  color: var(--dim);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.page-content h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--parchment);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.page-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-content ul, .page-content ol {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content li {
  margin-bottom: 0.4rem;
}

.page-content a {
  color: var(--amber);
  text-decoration: none;
  transition: opacity 0.3s;
}

.page-content a:hover { opacity: 0.7; }

.page-content strong {
  color: var(--parchment);
  font-weight: 400;
}

/* ── Pricing page (wider container) ───────────────── */

.page-content.pricing-page {
  max-width: 960px;
}

/* ── Pricing cards ────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.pricing-card {
  background: #181816;
  border: 1px solid #2a2822;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: var(--muted);
}

.pricing-card .product-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--parchment);
  margin-bottom: 0.3rem;
}

.pricing-card .product-type {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.pricing-card .price {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pricing-card .price-note {
  font-size: 0.85rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
}

.pricing-card .features {
  list-style: none;
  padding: 0;
}

.pricing-card .features li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
}

.pricing-card .features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dim);
}

.coming-soon-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #2a2822;
}

.coming-soon-block h2 {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  margin-top: 0;
}

.coming-soon-block p {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

/* ── Footer ────────────────────────────────────────── */

.page-footer {
  border-top: 1px solid #151515;
  padding: 2rem;
  text-align: center;
}

.page-footer nav {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-footer nav a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.page-footer nav a:hover { color: var(--parchment); }

.page-footer .copyright {
  font-size: 0.75rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}

/* ── Legal disclaimer ──────────────────────────────── */

.legal-disclaimer {
  font-size: 0.8rem;
  color: var(--dim);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Language switcher styles now injected by i18n-core.js */

.page-header {
  display: flex;
  align-items: center;
}

/* ── Responsive ────────────────────────────────────── */

@media (max-width: 600px) {
  .page-content { padding: 2rem 1.5rem 4rem; }
  .page-header { padding: 1.5rem 1.5rem 0; }
  .pricing-card { padding: 1.5rem; }
}
