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

:root {
  --gold: #A07820;
  --gold-light: #C49A28;
  --gold-dark: #6B5010;
  --gold-bg: #1a1508;
  --black: #0E0E0E;
  --surface: #111111;
  --border: #1e1e1e;
  --text-muted: #888;
  --text-dim: #555;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 0.5px solid var(--border);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-top { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; color: #fff; }
.logo-bot { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; color: var(--gold); }

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }

.nav-book {
  font-size: 11px;
  font-weight: 500;
  background: #25D366;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}
.nav-book:hover { opacity: 0.88; }
.nav-book svg { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

/* ─── HERO ─── */
.hero {
  padding: 72px 24px 60px;
  border-bottom: 0.5px solid var(--border);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 14vw, 120px);
  line-height: 0.88;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: #fff;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.88; }
.btn-wa svg { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid #333;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 0.5px solid var(--border);
}
.stat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--gold-light);
  line-height: 1;
}
.stat-l {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-top: 4px;
  line-height: 1.4;
}

/* ─── SECTION SHARED ─── */
.section {
  padding: 64px 24px;
  border-bottom: 0.5px solid var(--border);
}

.section-label {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  color: #fff;
  margin-bottom: 32px;
  line-height: 1;
}

/* ─── SERVICES ─── */
.service-table { width: 100%; border-collapse: collapse; }
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 0.5px solid #171717;
}
.service-row:last-child { border-bottom: none; }
.s-name { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.s-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; max-width: 320px; }
.s-badge {
  font-size: 9px;
  background: var(--gold-bg);
  color: var(--gold-light);
  padding: 3px 8px;
  margin-top: 8px;
  display: inline-block;
  letter-spacing: 1px;
  border: 0.5px solid var(--gold-dark);
}
.s-right { text-align: right; flex-shrink: 0; padding-left: 16px; }
.s-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #fff; }
.s-note { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.online-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.o-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 20px;
}
.o-card.featured { border-color: var(--gold); }
.o-tag { font-size: 9px; color: var(--gold); letter-spacing: 1px; margin-bottom: 10px; }
.o-name { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 8px; }
.o-price { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: #fff; }
.o-period { font-size: 11px; color: var(--text-dim); }
.o-feats { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.o-feat {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  line-height: 1.4;
}
.o-feat::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ─── PROCESS ─── */
.process { display: flex; flex-direction: column; }
.p-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 0.5px solid #171717;
  align-items: flex-start;
}
.p-step:last-child { border-bottom: none; }
.p-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--gold-dark);
  flex-shrink: 0;
  width: 20px;
  padding-top: 2px;
}
.p-title { font-size: 15px; font-weight: 500; color: #fff; margin-bottom: 4px; }
.p-desc { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* ─── RESULTS ─── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.result-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 20px;
}
.r-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.r-name { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.r-type { font-size: 9px; color: var(--gold); letter-spacing: 1px; }
.r-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.r-photo {
  background: #1a1a1a;
  border: 0.5px solid var(--border);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #333;
  letter-spacing: 1px;
  overflow: hidden;
}
.r-photo img { width: 100%; height: 100%; object-fit: cover; }
.r-stats {
  display: flex;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  padding: 12px 0;
  margin-bottom: 14px;
}
.r-stat { flex: 1; text-align: center; }
.r-stat + .r-stat { border-left: 0.5px solid var(--border); }
.r-stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold-light); }
.r-stat-l { font-size: 9px; color: var(--text-dim); margin-top: 2px; }
.r-quote { font-size: 12px; color: var(--text-muted); line-height: 1.6; font-style: italic; }
.r-quote::before { content: '\201C'; color: var(--gold); font-size: 18px; font-style: normal; line-height: 0; vertical-align: -4px; margin-right: 2px; }
.r-quote::after  { content: '\201D'; color: var(--gold); font-size: 18px; font-style: normal; line-height: 0; vertical-align: -4px; margin-left: 2px; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-photo {
  background: #1a1a1a;
  border: 0.5px solid var(--border);
  aspect-ratio: 3/4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #333;
  letter-spacing: 1px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 0.9;
  margin-bottom: 6px;
  color: #fff;
}
.about-name em { color: var(--gold); font-style: normal; }
.about-role { font-size: 11px; color: var(--text-dim); letter-spacing: 1px; margin-bottom: 20px; }
.about-body { font-size: 13px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.philosophy {
  background: var(--gold-bg);
  border-left: 2px solid var(--gold);
  padding: 16px 18px;
  margin-bottom: 28px;
}
.philosophy p { font-size: 12px; color: var(--text-muted); line-height: 1.75; font-style: italic; }
.cred-list { display: flex; flex-direction: column; gap: 8px; }
.cred {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 12px 14px;
}
.cred-title { font-size: 12px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.cred-sub { font-size: 10px; color: var(--text-dim); }

/* ─── TIMELINE ─── */
.timeline { display: flex; flex-direction: column; margin-top: 32px; }
.t-item {
  display: flex;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 0.5px solid #171717;
  align-items: flex-start;
}
.t-item:last-child { border-bottom: none; }
.t-year { font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--gold-dark); flex-shrink: 0; width: 36px; padding-top: 2px; }
.t-title { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.t-desc { font-size: 12px; color: var(--text-dim); line-height: 1.5; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.contact-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--gold); }
.contact-card.primary { border-color: var(--gold); }
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-bg);
  border: 0.5px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; fill: var(--gold-light); }
.contact-label { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.contact-value { font-size: 11px; color: var(--text-dim); }
.contact-arrow { font-size: 14px; color: var(--gold); margin-left: auto; }

.faq { display: flex; flex-direction: column; }
.faq-item { padding: 18px 0; border-bottom: 0.5px solid #171717; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 13px; font-weight: 500; color: #fff; margin-bottom: 6px; }
.faq-a { font-size: 12px; color: var(--text-dim); line-height: 1.7; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--gold-bg);
  border-top: 0.5px solid var(--gold-dark);
  padding: 64px 24px;
  text-align: center;
}
.cta-band-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1;
}
.cta-band-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.f-top { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 2px; color: #333; }
.f-bot { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 2px; color: var(--gold-dark); }
.footer-links { display: flex; gap: 20px; align-items: center; }
.footer-links a { font-size: 11px; color: #333; text-decoration: none; letter-spacing: 0.5px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

/* ─── UTILITY ─── */
.wa-icon { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.divider { border: none; border-top: 0.5px solid var(--border); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.response-note { font-size: 11px; color: #444; margin-top: 10px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hero { padding: 48px 20px 40px; }
  .hero-stats { gap: 20px; }
  .section { padding: 48px 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .online-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
