/* Lumina-craft brand styles */
:root {
  --bg: #0f1216;
  --bg-soft: #151a21;
  --text: #e6e9ee;
  --muted: #aab3c2;
  --accent: #c8a96a;
  --accent-strong: #e1c37a;
  --line: #263041;
  --success: #7ecb9a;
  --danger: #d98b8b;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max);
  padding: 0 20px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 18, 22, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
}

.nav-toggle {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: inline-flex;
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, 0.96);
  display: none;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  z-index: 60;
}

.mobile-menu[aria-hidden="false"] {
  display: flex;
}

.mobile-menu .menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu .menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--bg-soft);
}

.hero {
  padding: 72px 0 56px;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 0.9rem;
  border: 1px solid var(--line);
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.section {
  padding: 56px 0;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
}

.section p {
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow);
}

.card .meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 169, 106, 0.15);
  color: var(--accent);
  font-size: 0.85rem;
  border: 1px solid rgba(200, 169, 106, 0.4);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.list-item span {
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.testimonial {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial p {
  margin: 0;
}

.testimonial .author {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.2), rgba(15, 18, 22, 0.2));
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: rgba(15, 18, 22, 0.98);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-panel .detail {
  color: var(--muted);
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-content h2 {
  margin-bottom: 8px;
}

.service-price {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 70;
  box-shadow: var(--shadow);
}

.cookie-banner.active {
  display: flex;
}

.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 22, 0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 24px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal .modal-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-modal .modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .split {
    flex-direction: row;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 280px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 280px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }

  .cookie-banner .cookie-actions,
  .cookie-modal .modal-actions {
    flex-direction: row;
  }
}
