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

:root {
  --bg: #0d1218;
  --bg-2: #1b222d;
  --ink: #f6f2ea;
  --muted: #c5bdb0;
  --accent: #c9a970;
  --accent-2: #6b7a95;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 22px;
  --shadow: 0 30px 70px rgba(3, 6, 12, 0.55);
  --font-display: "Palatino", "Times New Roman", serif;
  --font-body: "Avenir Next", "Helvetica Neue", sans-serif;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(700px circle at 15% -5%, rgba(201, 169, 112, 0.2), transparent 60%),
    radial-gradient(800px circle at 90% 0%, rgba(107, 122, 149, 0.18), transparent 55%),
    linear-gradient(180deg, #1c2230, #0d1218 55%, #0a0e14);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 4px 4px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(12, 16, 23, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
}

.brand {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn.primary {
  background: var(--accent);
  color: #10141b;
  box-shadow: 0 18px 40px rgba(201, 169, 112, 0.25);
}

.btn.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.9rem);
  margin-bottom: 1.2rem;
}

.hero p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-aside {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(18, 22, 30, 0.9);
  box-shadow: var(--shadow);
}

.hero-aside h3 {
  font-family: var(--font-display);
  margin-bottom: 0.8rem;
}

.hero-badge {
  display: inline-flex;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(201, 169, 112, 0.12);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 0.6rem;
}

.section-title p {
  color: var(--muted);
  max-width: 640px;
}

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

.flow-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.signature-menu {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(18, 22, 30, 0.85);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.menu-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.route-card {
  padding: 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(201, 169, 112, 0.15), rgba(18, 22, 30, 0.8));
}

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

.price-card {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.price-value {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.4rem;
}

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

.testimonial {
  padding: 1.4rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.lead {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(16, 20, 28, 0.9);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
textarea {
  background: rgba(8, 10, 16, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  font-family: inherit;
}

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

.form-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-success {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 169, 112, 0.4);
  background: rgba(201, 169, 112, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .hero,
  .lead {
    grid-template-columns: 1fr;
  }
}
