:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --fg: #F0EEE8;
  --fg-muted: #8A8880;
  --accent: #00D4C8;
  --accent-dim: rgba(0, 212, 200, 0.12);
  --warm: #C8B89A;
  --border: rgba(200, 184, 154, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* TOPBAR */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.topbar-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}
.topbar-book-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0A0A0A;
  background: var(--accent);
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.topbar-book-btn:hover { opacity: 0.85; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 100px 48px 120px;
  min-height: 640px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,212,200,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,212,200,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #0A0A0A;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  margin-top: 8px;
}
.hero-cta:hover { opacity: 0.85; }
.hero-cta:active { transform: scale(0.98); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.shine-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,200,0.15);
}
.shine-ring.outer { width: 380px; height: 380px; }
.shine-ring.middle { width: 260px; height: 260px; border-color: rgba(0,212,200,0.25); }
.shine-ring.inner { width: 150px; height: 150px; border-color: rgba(0,212,200,0.4); }
.shine-dot {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(0,212,200,0.3)); }
  50% { filter: drop-shadow(0 0 28px rgba(0,212,200,0.6)); }
}

/* WHY */
.why {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 48px;
}
.why-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}
.why-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.why-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.why-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* SERVICES */
.services {
  padding: 100px 48px;
}
.services-header {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 40px 32px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--surface-2); }
.service-card.featured {
  border: 1px solid rgba(0,212,200,0.3);
  background: var(--accent-dim);
}
.service-card.featured:hover { background: rgba(0,212,200,0.16); }
.service-icon {
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.how-content {
  max-width: 700px;
}
.how-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 28px 0 56px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-top: 2px;
  flex-shrink: 0;
}
.step-text {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  text-align: center;
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-sep { color: var(--border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 48px; }
  .hero-visual { display: none; }
  .why-grid { flex-direction: column; gap: 32px; }
  .why-divider { display: none; }
  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .how { padding: 64px 24px; }
  .how-steps { padding-left: 24px; }
  .closing { padding: 80px 24px; }
  .site-footer { padding: 40px 24px; }
  .why-item { padding: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-headline { font-size: 26px; }
  .closing h2 { font-size: 28px; }
}