@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #1a2540;
  --gold: #c9a227;
  --gold-light: #e8c45a;
  --gold-dim: rgba(201, 162, 39, 0.15);
  --text: #e8e6e1;
  --text-dim: #9ca3af;
  --text-muted: #6b7280;
  --border: rgba(201, 162, 39, 0.2);
  --card-bg: rgba(26, 37, 64, 0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ─── Nav ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-logo span {
  color: var(--text);
  font-style: italic;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 162, 39, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(26, 37, 64, 0.8) 0%, transparent 60%),
    linear-gradient(170deg, #0a0f1e 0%, #0d1525 50%, #0a0f1e 100%);
  z-index: 0;
}

/* Subtle grid texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.25);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
  display: inline-block;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  color: var(--text);
  border-color: var(--text);
}

/* ─── Trust bar ─── */
.trust-bar {
  background: var(--navy-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── Section base ─── */
section {
  padding: 100px 48px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.75;
}

/* ─── Who It's For ─── */
.audience {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.audience-card:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: rgba(201, 162, 39, 0.4);
}

.audience-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.audience-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-family: 'Instrument Serif', serif;
  font-size: 3rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing-card {
  display: inline-block;
  background: var(--card-bg);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 60px 80px;
  max-width: 520px;
  width: 100%;
  margin-top: 60px;
  position: relative;
  box-shadow: 0 0 80px rgba(201, 162, 39, 0.08);
}

.pricing-card::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 16px;
}

.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 5rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount sup {
  font-size: 2rem;
  vertical-align: super;
  color: var(--gold);
}

.price-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 48px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Social Proof ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px;
}

.testimonial-text {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--gold);
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.author-handle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section .section-title {
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-section .section-sub {
  max-width: 480px;
  margin: 0 auto 48px;
}

/* ─── Footer ─── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Instrument Serif', serif;
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
}

footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── Booking page ─── */
.booking-page {
  min-height: 100vh;
  padding: 80px 48px;
  background: var(--navy);
}

.booking-container {
  max-width: 640px;
  margin: 0 auto;
}

.booking-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.booking-page .subtitle {
  color: var(--text-dim);
  margin-bottom: 48px;
  font-size: 1rem;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 28px;
}

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

label span.req {
  color: var(--gold);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a227' fill='none' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

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

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 18px;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.25);
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── Payment bridge page ─── */
.pay-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.pay-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 64px 56px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 0 80px rgba(201, 162, 39, 0.08);
}

.pay-card .step-badge {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.pay-card h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.pay-card p {
  color: var(--text-dim);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ─── Confirmed page ─── */
.confirmed-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
}

.confirmed-card {
  background: var(--card-bg);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 64px 56px;
  max-width: 520px;
  width: 100%;
}

.confirmed-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  display: block;
}

.confirmed-card h1 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.confirmed-card p {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 12px;
}

.confirmed-card a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }

  .hero { padding: 100px 24px 80px; }
  .hero h1 { font-size: 2.5rem; }

  section { padding: 72px 24px; }

  .trust-bar { padding: 20px 24px; gap: 24px; }

  .pricing-card { padding: 48px 32px; }

  .booking-page { padding: 60px 24px; }

  footer { padding: 32px 24px; flex-direction: column; text-align: center; }

  .pay-card, .confirmed-card { padding: 48px 28px; }
}
