:root {
  --black: #0a0a0a;
  --white: #f5f2ed;
  --accent: #e8c547;
  --accent-dark: #c9a82e;
  --red: #d94f3d;
  --surface: #141414;
  --surface2: #1c1c1c;
  --border: rgba(255,255,255,0.08);
  --text-muted: rgba(245,242,237,0.55);
  --text-mid: rgba(245,242,237,0.72);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.1rem;
  color: var(--white); text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 0.5rem; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 0.875rem; padding: 0.4rem 0.85rem;
  border-radius: 20px; transition: all 0.2s; font-weight: 400;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,197,71,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(217,79,61,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg.corporate {
  background: radial-gradient(ellipse 80% 60% at 50% 10%, rgba(217,79,61,0.12) 0%, transparent 70%);
}
.hero-tag {
  display: inline-block;
  background: rgba(232,197,71,0.12);
  border: 0.5px solid rgba(232,197,71,0.35);
  color: var(--accent);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 2rem;
}
.hero-tag.red {
  background: rgba(217,79,61,0.12);
  border-color: rgba(217,79,61,0.35);
  color: var(--red);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 1.25rem;
  max-width: 820px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 em.red { color: var(--red); }
.hero p {
  font-size: 1rem; color: var(--text-mid);
  max-width: 520px; margin: 0 auto 2.5rem; font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* BUTTONS */
.btn-primary {
  background: var(--accent); color: var(--black);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 30px; border: none;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary.red { background: var(--red); }
.btn-primary.red:hover { background: #b8392a; }
.btn-secondary {
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-weight: 400; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.04); }

/* SECTIONS */
section { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.section-label.red { color: var(--red); }
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 1.25rem;
}
h2 em { font-style: normal; color: var(--accent); }
h2 em.red { color: var(--red); }

/* AUDIENCE SWITCHER */
.audience-switcher { display: flex; gap: 1rem; flex-wrap: wrap; }
.audience-card {
  flex: 1; min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem; cursor: pointer; text-align: left;
  transition: all 0.3s; position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.audience-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.3s;
}
.audience-card.community::before { background: var(--accent); }
.audience-card.corporate::before { background: var(--red); }
.audience-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.audience-card:hover::before { opacity: 1; }
.audience-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.audience-card h3 {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.015em;
}
.audience-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.5rem; }
.audience-link { font-size: 0.9rem; font-weight: 500; display: flex; align-items: center; gap: 0.4rem; }
.audience-link.gold { color: var(--accent); }
.audience-link.red-link { color: var(--red); }

/* GRIDS */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.offer-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem; transition: border-color 0.2s;
}
.offer-card:hover { border-color: rgba(232,197,71,0.3); }
.offer-card.red-hover:hover { border-color: rgba(217,79,61,0.3); }
.offer-num {
  font-family: var(--font-head); font-size: 0.7rem;
  font-weight: 700; color: var(--accent);
  letter-spacing: 0.1em; margin-bottom: 1.2rem;
}
.offer-num.red { color: var(--red); }
.offer-card h3 {
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.offer-card p { color: var(--text-mid); font-size: 0.9rem; }

.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.for-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem; transition: all 0.2s;
}
.for-card:hover { background: var(--surface2); border-color: rgba(255,255,255,0.12); }
.for-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.for-card h4 {
  font-family: var(--font-head); font-size: 0.95rem;
  font-weight: 600; margin-bottom: 0.4rem; letter-spacing: -0.01em;
}
.for-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.55; }

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.step { padding: 2rem; border-left: 2px solid rgba(232,197,71,0.25); }
.step.red-border { border-left-color: rgba(217,79,61,0.3); }
.step-num {
  font-family: var(--font-head); font-size: 2rem;
  font-weight: 700; color: rgba(232,197,71,0.15);
  line-height: 1; margin-bottom: 0.75rem;
}
.step-num.red { color: rgba(217,79,61,0.2); }
.step h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.step p { color: var(--text-mid); font-size: 0.875rem; }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.review-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 1rem; }
.stars.red { color: var(--red); }
.review-text {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 1.65; margin-bottom: 1.25rem; font-style: italic;
}
.reviewer { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

/* BOOKING */
.book-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 3rem;
}
.form-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { margin-bottom: 1.1rem; }
label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 8px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.7rem 1rem; outline: none; transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: rgba(232,197,71,0.5); }
select option { background: #1c1c1c; }
textarea { resize: vertical; min-height: 100px; line-height: 1.5; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%; background: var(--accent); color: var(--black);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.9rem; border-radius: 30px; border: none;
  cursor: pointer; margin-top: 0.5rem; transition: background 0.2s;
}
.submit-btn:hover { background: var(--accent-dark); }
.submit-btn.red { background: var(--red); }
.submit-btn.red:hover { background: #b8392a; }
.form-success {
  display: none;
  background: rgba(29,158,117,0.1);
  border: 0.5px solid rgba(29,158,117,0.3);
  border-radius: var(--radius); padding: 1.5rem;
  text-align: center; color: #5dcaa5;
}
.book-perks { list-style: none; }
.book-perks li {
  padding: 0.7rem 0; border-bottom: 0.5px solid var(--border);
  font-size: 0.95rem; color: var(--text-mid);
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.book-perks li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.book-perks.red li::before { color: var(--red); }

/* SERVICE PILLS */
.service-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 0.5rem 0; }
.pill {
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 30px; padding: 0.55rem 1.1rem;
  font-size: 0.875rem; cursor: pointer; transition: all 0.2s;
  background: transparent; color: var(--text-mid);
  font-family: var(--font-body);
}
.pill:hover, .pill.selected {
  background: rgba(232,197,71,0.1);
  border-color: var(--accent); color: var(--white);
}
.pill.selected { font-weight: 500; }

/* DIVIDERS / FOOTER */
.full-divider {
  border: none; border-top: 0.5px solid var(--border);
  max-width: 1100px; margin: 0 auto;
}
footer {
  border-top: 0.5px solid var(--border);
  padding: 3rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: var(--white); text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.back-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.875rem;
  cursor: pointer; background: none; border: none;
  padding: 0.4rem 0; transition: color 0.2s; text-decoration: none;
  margin-bottom: 2rem;
}
.back-btn:hover { color: var(--white); }
.insta-cta { text-align: center; padding: 5rem 2rem; max-width: 600px; margin: 0 auto; }
.insta-cta a { color: var(--accent); text-decoration: none; font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 768px) { .book-wrapper { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  section { padding: 4rem 1.5rem; }
  footer { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
