﻿:root {
  color-scheme: dark;
  --bg: #0d2836;
  --bg-dark: #081720;
  --ink: #f7f7f7;
  --accent: #d7a34a;
  --accent-dark: #c89a40;
  --muted: #cfc6b8;
  --card: rgba(0, 0, 0, 0.2);
  --line: rgba(215, 163, 74, 0.4);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --font-display: "DM Serif Display", "Georgia", serif;
  --font-body: "Roboto", "Segoe UI", sans-serif;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at top, #193b4f 0, var(--bg-dark) 55%);
  color: var(--ink);
}

@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Roboto:wght@400;600&display=swap");

.bg-shape {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(215, 163, 74, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  background: rgba(8, 23, 32, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.5px;
}


.site-nav {
  justify-self: end;
}

.site-nav a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

.site-nav a:hover {
  color: #e4b76d;
}

.site-logo {
  justify-self: center;
}

.site-logo img {
  width: clamp(96px, 14vw, 168px);
  height: clamp(96px, 14vw, 168px);
  object-fit: contain;
}

main {
  padding: 0 6vw 80px;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 80px 0 40px;
  align-items: center;
}

.book-hero {
  width: min(320px, 100%);
  display: block;
  margin: 0 auto 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  margin: 12px 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #1a1205;
  box-shadow: 0 10px 20px rgba(215, 163, 74, 0.25);
}

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

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card ul {
  padding-left: 18px;
}

.card-badge {
  display: inline-block;
  background: rgba(181, 73, 42, 0.12);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.price {
  margin-top: 18px;
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.section {
  margin-top: 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 8px;
}

.form-card {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.form-grid.order-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.order-grid .full {
  grid-column: 1 / -1;
}

.form-grid.order-grid .half {
  grid-column: span 1;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 14px;
  background: #ffffff;
  color: #1a1a1a;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(181, 73, 42, 0.2);
}

label.full {
  grid-column: 1 / -1;
}

.consents {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  justify-items: start;
  text-align: left;
}

.checkbox {
  font-weight: 400;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.checkbox {
  font-weight: 400;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.turnstile-wrap {
  margin-top: 16px;
}

.form-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.status {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
}

.status.success {
  color: #2c6b3f;
}

.status.error {
  color: #b04949;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 40px;
  border-top: 1px solid var(--line);
}

.footer-links a {
  margin-left: 12px;
  text-decoration: none;
  color: var(--accent);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 18px;
}

.lang-switch img {
  width: 28px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid var(--line);
}

.footer-links a:hover {
  color: #e4b76d;
}

.page-wrapper {
  background: transparent;
}

.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.2);
}

.legal-page main {
  padding: 40px 6vw 80px;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: 36px;
}

.legal h2 {
  margin-top: 24px;
  font-size: 22px;
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .site-nav a {
    margin-left: 12px;
  }

  .lang-switch {
    margin-left: 12px;
  }

  .form-grid.order-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-self: center;
  }

  .site-footer {
    flex-direction: column;
    gap: 10px;
  }
}
