:root {
  color-scheme: light;
  --bg: #f6f0f7;
  --surface: #ffffff;
  --ink: #1f1630;
  --muted: #5b4b6f;
  --accent: #6a2d7a;
  --accent-2: #d4a84e;
  --accent-3: #3c2a56;
  --border: rgba(31, 22, 48, 0.12);
  --shadow: 0 24px 60px rgba(31, 22, 48, 0.16);
  --radius: 22px;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fbf7ff 0%, #f6f0f7 45%, #ede3f4 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.35;
  z-index: -1;
}

.bg-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 168, 78, 0.4) 0%, rgba(212, 168, 78, 0) 70%);
  top: -120px;
  left: -120px;
}

.bg-orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(106, 45, 122, 0.4) 0%, rgba(106, 45, 122, 0) 70%);
  bottom: -160px;
  right: -160px;
}

.container {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

h1, h2, h3, h4, h5 {
  font-family: "Fraunces", "Times New Roman", serif;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

p {
  margin: 0 0 16px 0;
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(36, 20, 58, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d4a84e 0%, #f0d38a 100%);
  color: #2b163f;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-text strong {
  display: block;
  font-size: 18px;
  color: #f6e9c9;
}

.brand-text small {
  color: #d9c7e6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(246, 233, 201, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  color: #f6e9c9;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #f6e9c9;
  font-weight: 500;
}

.site-nav .cta {
  background: linear-gradient(135deg, #d4a84e 0%, #f0d38a 100%);
  color: #2b163f;
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  padding: 80px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease forwards;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 168, 78, 0.2);
  color: #6a2d7a;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #6a2d7a 0%, #8a49a1 100%);
  color: #fff;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.metric {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--border);
}

.metric strong {
  font-size: 20px;
}

.panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.panel-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease forwards;
}

.card strong {
  font-size: 18px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(201, 123, 67, 0.16);
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-banner {
  background: linear-gradient(120deg, #3a1f5c 0%, #6a2d7a 60%, #8a49a1 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 12px;
  align-items: center;
}

.cta-banner .btn {
  background: #f6e9c9;
  color: #2b163f;
}

.listing-card {
  display: grid;
  gap: 16px;
}

.listing-card .price {
  font-size: 22px;
  font-weight: 700;
}

.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

form {
  display: grid;
  gap: 16px;
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-family: "Sora", system-ui, sans-serif;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    top: 78px;
    right: 5vw;
    background: #2b163f;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }
  .site-nav.is-open {
    display: flex;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero-royal {
  background: linear-gradient(135deg, rgba(43, 22, 63, 0.96) 0%, rgba(90, 47, 124, 0.96) 55%, rgba(122, 75, 151, 0.92) 100%);
  color: #f6e9c9;
  border: 1px solid rgba(212, 168, 78, 0.3);
}

.hero-royal .muted {
  color: rgba(246, 233, 201, 0.8);
}

.hero-royal .btn-outline {
  color: #f6e9c9;
  border-color: #f6e9c9;
}

.hero-royal .metric {
  background: rgba(246, 233, 201, 0.12);
  border-color: rgba(212, 168, 78, 0.25);
}

.hero-royal .metric .muted {
  color: rgba(246, 233, 201, 0.8);
}

.gold-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 168, 78, 0.2);
  color: #f6e9c9;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
}

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

.service-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #d4a84e;
  color: #2b163f;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 12px;
  flex: 0 0 22px;
}

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

.wheel-center {
  grid-column: 1 / -1;
  text-align: center;
  padding: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3a1f5c 0%, #6a2d7a 100%);
  color: #f6e9c9;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.highlight-panel {
  background: rgba(246, 233, 201, 0.2);
  border: 1px solid rgba(212, 168, 78, 0.35);
  border-radius: 24px;
  padding: 26px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
