:root {
  --bg: #0d0a0e;
  --bg-subtle: #141017;
  --fg: #f0ece4;
  --fg-muted: #a8a09a;
  --accent: #d4a574;
  --accent-glow: #e8b888;
  --rose: #c4727a;
  --surface: #1a1520;
  --surface-border: rgba(212, 165, 116, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 3rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  border: 1px solid var(--surface-border);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.08) 0%, rgba(196, 114, 122, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* ===== FEATURES ===== */
.features {
  padding: 8rem 2rem;
  background: var(--bg-subtle);
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(212, 165, 116, 0.3);
}

.feature-icon {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== NUMBERS ===== */
.numbers {
  padding: 8rem 2rem;
}

.numbers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.number-item {
  text-align: center;
  padding: 2rem 1rem;
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-glow);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.number-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ===== PILLARS ===== */
.pillars {
  padding: 8rem 2rem;
  background: var(--bg-subtle);
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.pillar-row:last-child {
  margin-bottom: 0;
}

.pillar-row.reverse {
  flex-direction: row-reverse;
}

.pillar-text {
  flex: 1;
}

.pillar-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.pillar-text p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

.pillar-visual {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-height: 280px;
}

.visual-block {
  border-radius: 16px;
  min-height: 130px;
}

.block-1 {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
  border: 1px solid var(--surface-border);
  grid-row: span 2;
}

.block-2 {
  background: linear-gradient(135deg, rgba(196, 114, 122, 0.12), rgba(196, 114, 122, 0.04));
  border: 1px solid rgba(196, 114, 122, 0.1);
}

.block-3 {
  background: linear-gradient(135deg, rgba(196, 114, 122, 0.12), rgba(196, 114, 122, 0.04));
  border: 1px solid rgba(196, 114, 122, 0.1);
  grid-row: span 2;
}

.block-4 {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.15), rgba(212, 165, 116, 0.05));
  border: 1px solid var(--surface-border);
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--surface-border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-row,
  .pillar-row.reverse {
    flex-direction: column;
    gap: 2rem;
  }

  .pillar-visual {
    min-height: 200px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 5rem 1.5rem;
  }

  .features,
  .numbers,
  .pillars {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(13, 10, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-glow);
}

.nav-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}

/* ===== LANDING CTA BUTTON ===== */
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--accent);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 1rem 2rem;
  border: 1px solid rgba(212, 165, 116, 0.4);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-cta-secondary:hover {
  border-color: var(--accent);
  background: rgba(212, 165, 116, 0.08);
  transform: translateY(-2px);
}

/* ===== BOOK PAGE ===== */
.book-hero {
  position: relative;
  padding: 10rem 2rem 5rem;
  overflow: hidden;
}

.book-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.book-section {
  padding: 0 2rem 8rem;
}

.book-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Service Tier Cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.tier-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2rem;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.2s ease;
  display: block;
  user-select: none;
}

.tier-card:hover {
  border-color: rgba(212, 165, 116, 0.3);
  transform: translateY(-2px);
}

.tier-card.selected {
  border-color: var(--accent);
  background: rgba(212, 165, 116, 0.06);
}

.tier-radio {
  display: none;
}

.tier-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: transparent;
  transition: all 0.2s ease;
}

.tier-card.selected .tier-check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.tier-badge-popular {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg);
  background: var(--rose);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Booking Form */
.booking-form-wrap {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-error {
  background: rgba(196, 114, 122, 0.12);
  border: 1px solid rgba(196, 114, 122, 0.3);
  color: var(--rose);
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.required {
  color: var(--rose);
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: rgba(212, 165, 116, 0.4);
}

.form-input option {
  background: var(--surface);
  color: var(--fg);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.selected-service-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.summary-label {
  color: var(--fg-muted);
}

.summary-name {
  font-weight: 500;
}

.summary-price {
  color: var(--accent);
  font-weight: 600;
}

.btn-book {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: var(--accent);
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover:not(:disabled) {
  background: var(--accent-glow);
}

.btn-book:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ===== CONFIRM PAGE ===== */
.confirm-section {
  min-height: 100vh;
  padding: 8rem 2rem 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-inner {
  max-width: 600px;
  width: 100%;
}

.confirm-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.confirm-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.confirm-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--surface-border);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  min-width: 90px;
  padding-top: 0.1rem;
}

.confirm-value {
  font-size: 0.95rem;
  flex: 1;
  line-height: 1.5;
}

.confirm-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.confirm-note {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  border: 1px solid var(--surface-border);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(212, 165, 116, 0.4);
}

/* Status Badges */
.status-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

.status-pending {
  background: rgba(212, 165, 116, 0.12);
  color: var(--accent);
  border: 1px solid rgba(212, 165, 116, 0.25);
}

.status-confirmed {
  background: rgba(196, 114, 122, 0.12);
  color: var(--rose);
  border: 1px solid rgba(196, 114, 122, 0.25);
}

.status-cancelled {
  background: rgba(168, 160, 154, 0.1);
  color: var(--fg-muted);
  border: 1px solid rgba(168, 160, 154, 0.15);
}

/* ===== ADMIN PAGE ===== */
.admin-section {
  padding: 7rem 2rem 6rem;
  min-height: 100vh;
}

.admin-inner {
  max-width: 900px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.admin-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--fg-muted);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

.booking-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}

.booking-item:hover {
  border-color: rgba(212, 165, 116, 0.25);
}

.booking-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.booking-who {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.booking-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.booking-email {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.booking-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.booking-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.booking-notes {
  grid-column: span 2;
}

.booking-detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.detail-val {
  font-size: 0.9rem;
  line-height: 1.5;
}

.booking-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.action-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s ease;
}

.action-confirm {
  color: var(--rose);
  border-color: rgba(196, 114, 122, 0.3);
}

.action-confirm:hover {
  background: rgba(196, 114, 122, 0.1);
}

.action-cancel {
  color: var(--fg-muted);
  border-color: rgba(168, 160, 154, 0.2);
}

.action-cancel:hover {
  background: rgba(168, 160, 154, 0.08);
}

.action-pending {
  color: var(--accent);
  border-color: rgba(212, 165, 116, 0.25);
}

.action-pending:hover {
  background: rgba(212, 165, 116, 0.08);
}

/* ===== GUIDES PAGE ===== */

.guides-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 9rem 2rem 6rem;
  overflow: hidden;
}

.guides-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.guides-hero-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Bundle section */
.bundle-section {
  padding: 0 2rem 5rem;
}

.bundle-inner {
  max-width: 900px;
  margin: 0 auto;
}

.bundle-card {
  position: relative;
  background: linear-gradient(135deg, rgba(212,165,116,0.1) 0%, rgba(196,114,122,0.06) 100%);
  border: 1px solid rgba(212,165,116,0.35);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  overflow: hidden;
}

.bundle-card::before {
  /* Atmospheric glow top-right */
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bundle-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.bundle-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.bundle-text {
  flex: 1;
}

.bundle-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.bundle-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bundle-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.line-price {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.bundle-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 160px;
  text-align: center;
  flex-shrink: 0;
}

.bundle-save {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose);
  background: rgba(196,114,122,0.12);
  border: 1px solid rgba(196,114,122,0.25);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent-glow);
  line-height: 1;
  margin-top: 0.3rem;
}

.bundle-was {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.btn-buy {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-bundle {
  color: var(--bg);
  background: var(--accent);
  margin-top: 0.3rem;
}

.btn-bundle:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--bg);
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

/* Products section */
.products-section {
  padding: 5rem 2rem 8rem;
}

.products-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.product-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
}

.product-row-reverse {
  flex-direction: row-reverse;
}

.product-divider {
  height: 1px;
  background: var(--surface-border);
}

/* Product visual */
.product-visual {
  flex: 0 0 340px;
  position: relative;
  height: 320px;
}

.product-visual-block {
  position: absolute;
  border-radius: 16px;
}

.pb-1 {
  top: 0; left: 0;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(212,165,116,0.14), rgba(212,165,116,0.04));
  border: 1px solid var(--surface-border);
}

.pb-2 {
  bottom: 0; right: 0;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, rgba(196,114,122,0.1), rgba(196,114,122,0.03));
  border: 1px solid rgba(196,114,122,0.1);
}

.pb-3 {
  top: 0; right: 0;
  width: 190px; height: 190px;
  background: linear-gradient(135deg, rgba(196,114,122,0.12), rgba(196,114,122,0.03));
  border: 1px solid rgba(196,114,122,0.1);
}

.pb-4 {
  bottom: 0; left: 0;
  width: 155px; height: 155px;
  background: linear-gradient(135deg, rgba(212,165,116,0.12), rgba(212,165,116,0.04));
  border: 1px solid var(--surface-border);
}

.product-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  border: 1px solid rgba(212,165,116,0.25);
  border-radius: 14px;
  padding: 1.5rem;
  width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.mockup-2 {
  border-color: rgba(196,114,122,0.25);
}

.mockup-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--accent);
}

.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ml {
  height: 4px;
  border-radius: 2px;
  background: rgba(240,236,228,0.1);
}
.ml-long { width: 100%; }
.ml-med  { width: 75%; }
.ml-short { width: 50%; }

.mockup-stat {
  margin-bottom: 0.75rem;
}

.ms-label {
  font-size: 0.6rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ms-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-glow);
  letter-spacing: -0.02em;
}

/* Product text */
.product-text {
  flex: 1;
}

.product-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.product-tagline {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.product-desc {
  font-size: 0.97rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.product-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.product-perks li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.product-perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.product-cta-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.product-price-note {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.bundle-nudge {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.nudge-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,165,116,0.3);
  transition: border-color 0.2s ease;
}

.nudge-link:hover {
  border-color: var(--accent);
}

/* Closing CTAs */
.closing-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ===== RESPONSIVE BOOKING ===== */
@media (max-width: 768px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-book {
    text-align: center;
    width: 100%;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-details {
    grid-template-columns: 1fr;
  }

  .booking-notes {
    grid-column: span 1;
  }
}

/* ===== SHOP PAGE ===== */

.shop-page {
  background: var(--bg);
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--surface-border);
  position: sticky;
  top: 0;
  background: rgba(13, 10, 14, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.shop-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.shop-logo:hover { color: var(--accent); }

.shop-nav-cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid var(--surface-border);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.shop-nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.shop-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.shop-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.shop-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--fg);
}

.shop-subtitle {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== BUNDLE BANNER ===== */

.bundle-banner {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.08), inset 0 0 60px rgba(212, 165, 116, 0.03);
}

.bundle-badge {
  position: absolute;
  top: -0.75rem;
  left: 2.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
}

.bundle-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.bundle-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.bundle-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 500px;
}

.bundle-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bundle-includes li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.bundle-right {
  text-align: center;
  min-width: 200px;
}

.bundle-pricing {
  margin-bottom: 1.25rem;
}

.bundle-original {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-bottom: 0.2rem;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.bundle-save {
  font-size: 0.8rem;
  color: var(--accent-glow);
  font-weight: 500;
  margin-top: 0.25rem;
}

.btn-bundle {
  display: block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 2px;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-bundle:hover {
  background: var(--accent-glow);
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.35);
  transform: translateY(-1px);
}

.instant-delivery {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.6rem;
}

/* ===== PRODUCT CARDS ===== */

.products-label {
  margin-bottom: 1.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease;
}

.product-card:hover {
  border-color: rgba(212, 165, 116, 0.35);
}

.featured-product {
  border-color: rgba(212, 165, 116, 0.2);
}

.product-tag {
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

.product-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.product-hook {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 1.75rem;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.feat-marker {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 0.1rem;
  min-width: 1.5rem;
}

.product-footer {
  border-top: 1px solid var(--surface-border);
  padding-top: 1.5rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.btn-primary {
  display: block;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.25);
  transform: translateY(-1px);
}

.product-note {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 0.03em;
}

/* ===== SHOP CLOSING ===== */

.shop-closing {
  text-align: center;
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--surface-border);
}

.closing-line {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.closing-cta {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 165, 116, 0.3);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease;
}

.closing-cta:hover { border-color: var(--accent); }

/* ===== SHOP FOOTER ===== */

.shop-footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--surface-border);
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.shop-footer a {
  color: var(--fg-muted);
  text-decoration: none;
}

.shop-footer a:hover { color: var(--accent); }

/* ===== SHOP RESPONSIVE ===== */

@media (max-width: 768px) {
  .bundle-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bundle-right {
    text-align: left;
  }

  .btn-bundle {
    max-width: 280px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .shop-header {
    padding: 1.2rem 1.25rem;
  }

  .shop-main {
    padding: 3rem 1.25rem 5rem;
  }

  .bundle-banner {
    padding: 2rem 1.5rem;
  }
}
}