@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:       #0a0a0b;
  --bg2:      #111114;
  --bg3:      #18181d;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.15);
  --text:     #f0ede8;
  --muted:    #8a8880;
  --faint:    #4a4845;
  --gold:     #c9a84c;
  --gold2:    #e8c97a;
  --teal:     #2dd4a0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --max:      1140px;
  --radius:   10px;
}

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

html, body { overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 500;
  padding: 9px 22px; border-radius: 6px;
  background: #c9a84c; color: #0a0a0b;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
}
.nav-cta:hover { background: #e8c97a; color: #0a0a0b; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: 0.3s; }

/* ── LAYOUT ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; }
.pt-nav { padding-top: 68px; }

/* ── TYPOGRAPHY ── */
.display {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.01em;
}
.display em { font-style: italic; color: var(--gold); }
h1 { font-family: var(--font-display); font-size: clamp(36px,4vw,58px); font-weight: 300; line-height: 1.15; }
h2 { font-family: var(--font-display); font-size: clamp(28px,3vw,44px); font-weight: 300; line-height: 1.2; }
h3 { font-family: var(--font-display); font-size: clamp(20px,2vw,28px); font-weight: 400; }
h4 { font-size: 15px; font-weight: 500; letter-spacing: 0.02em; }
.label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.lead { font-size: 18px; font-weight: 300; color: var(--muted); line-height: 1.7; }
p { color: var(--muted); line-height: 1.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 6px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.02em;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: #0a0a0b; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { background: transparent; color: var(--muted); padding: 14px 0; }
.btn-ghost:hover { color: var(--text); }
.btn-ghost::after { content: ' →'; }

/* ── CARDS ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px); }

/* ── DIVIDERS ── */
.rule { border: none; border-top: 1px solid var(--border); margin: 0; }
.gold-line { width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; }

/* ── STATS STRIP ── */
.stats-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 160px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 300;
  color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 300; margin-bottom: 14px; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border); }
.footer-copy { font-size: 12px; color: var(--faint); }
.footer-email { font-size: 13px; color: var(--muted); }

/* ── HERO SECTION ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero-tag span { font-size: 12px; font-weight: 500; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-headline { margin-bottom: 24px; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.proof-item { font-size: 13px; color: var(--faint); }
.proof-item strong { color: var(--muted); font-weight: 500; }
.hero-img-wrap { position: relative; }
.hero-img {
  width: 100%; max-width: 480px; margin-left: auto;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.hero-img img { width: 100%; height: 600px; object-fit: cover; object-position: top center; }

/* ── TRIGGER SECTION ── */
.trigger-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.trigger-item {
  background: var(--bg2); padding: 36px 32px;
  cursor: pointer; transition: background 0.2s;
  display: flex; flex-direction: column; gap: 16px;
}
.trigger-item:hover { background: var(--bg3); }
.trigger-icon { font-size: 24px; }
.trigger-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.4; }
.trigger-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.trigger-link { font-size: 13px; color: var(--gold); margin-top: auto; }

/* ── HOW I WORK ── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 60px; }
.process-step { background: var(--bg2); padding: 40px 36px; }
.step-num { font-family: var(--font-display); font-size: 64px; font-weight: 300; color: var(--border2); line-height: 1; margin-bottom: 20px; }
.step-title { font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── RESULTS CARDS ── */
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
.result-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  transition: border-color 0.2s;
}
.result-card:hover { border-color: var(--border2); }
.result-tag { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.result-title { font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.result-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.result-metrics { display: flex; gap: 24px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--border); }
.metric { }
.metric-val { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--gold); line-height: 1; }
.metric-label { font-size: 11px; color: var(--faint); margin-top: 2px; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card.featured { border-color: var(--gold); }
.service-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.service-card.featured:hover { border-color: var(--gold2); }
.service-badge { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.service-name { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.service-price { font-size: 28px; font-weight: 300; color: var(--text); margin: 16px 0 4px; white-space: nowrap; }
.service-price span { font-size: 13px; color: var(--muted); font-weight: 400; white-space: nowrap; }
.service-price-sub { font-size: 12px; color: var(--faint); margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }
.service-features { list-style: none; margin-bottom: 32px; flex: 1; }
.service-features li { font-size: 13px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; }
.service-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.service-features li:first-child { border-top: 1px solid var(--border); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about-img img { width: 100%; height: 500px; object-fit: cover; object-position: top; }
.credentials { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cred-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; font-size: 13px; color: var(--muted); }
.cred-item strong { color: var(--text); font-weight: 500; display: block; margin-bottom: 2px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.blog-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: border-color 0.2s, transform 0.15s;
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.blog-cat { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-title { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--text); line-height: 1.35; margin-bottom: 12px; }
.blog-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.blog-meta { font-size: 11px; color: var(--faint); display: flex; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── SINGLE BLOG POST ── */
.post-header { padding: 140px 0 60px; border-bottom: 1px solid var(--border); }
.post-body { max-width: 720px; margin: 0 auto; padding: 60px 40px; }
.post-body h2 { font-size: 28px; margin: 48px 0 16px; color: var(--text); }
.post-body h3 { font-size: 22px; margin: 36px 0 12px; color: var(--text); }
.post-body p { margin-bottom: 20px; font-size: 16px; }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; color: var(--muted); }
.post-body li { margin-bottom: 8px; font-size: 15px; line-height: 1.7; }
.post-body blockquote { border-left: 3px solid var(--gold); padding-left: 24px; margin: 32px 0; font-family: var(--font-display); font-size: 22px; font-style: italic; color: var(--text); line-height: 1.5; }
.post-cta { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; margin: 48px 0; text-align: center; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; padding: 14px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg2); }

/* ── RESOURCES ── */
.resource-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px;
  display: flex; gap: 28px; align-items: flex-start;
  transition: border-color 0.2s;
}
.resource-card:hover { border-color: var(--border2); }
.resource-icon { width: 56px; height: 56px; border-radius: 10px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.resource-body { flex: 1; }
.resource-title { font-size: 18px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.resource-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── RESPONSIVE ── */
/* ── TABLET (≤900px) ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  section { padding: 60px 0; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-proof { gap: 20px; }

  /* Grids */
  .trigger-grid, .process-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .credentials { grid-template-columns: 1fr 1fr; }
  .resource-card { flex-direction: column; }

  /* Stats strip — 2 column on tablet */
  .stats-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-num { font-size: 34px; }

  /* About image constrain */
  .about-img img { height: 360px; }

  /* Timeline inline grid */
  .timeline-row { grid-template-columns: 80px 1fr !important; gap: 16px !important; }

  /* Post body */
  .post-body { padding: 40px 20px; }

  /* Two-col inline grids used in about/services/pe pages */
  .two-col-inline { grid-template-columns: 1fr !important; gap: 32px !important; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-desc { max-width: 100%; }
}

/* ── MOBILE (≤600px) ── */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  section { padding: 48px 0; }

  /* Typography scale */
  .display { font-size: 34px; line-height: 1.15; }
  h1 { font-size: 28px; line-height: 1.2; }
  h2 { font-size: 22px; line-height: 1.3; }
  h3 { font-size: 19px; }
  .lead { font-size: 16px; }

  /* Hero */
  .hero { padding-top: 88px; min-height: auto; padding-bottom: 48px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { gap: 14px; flex-direction: column; }
  .hero-proof { padding-top: 20px; }

  /* Stats — single column on mobile */
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 16px; }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 11px; }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: 13px; }

  /* Blog grid — single column */
  .blog-grid { grid-template-columns: 1fr; }

  /* Cards */
  .card { padding: 24px 20px; }
  .result-card { padding: 24px 20px; }
  .service-card { padding: 24px 20px; }
  .blog-card { padding: 20px; }

  /* Services price */
  .service-price { font-size: 22px; }

  /* Credentials — single col */
  .credentials { grid-template-columns: 1fr; }

  /* Timeline rows */
  .timeline-row { grid-template-columns: 1fr !important; gap: 4px !important; padding: 16px !important; }
  .timeline-year { font-size: 14px !important; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band .btn { width: 100%; justify-content: center; }

  /* Process steps */
  .step-num { font-size: 48px; }

  /* Post header padding */
  .post-header { padding: 110px 0 40px; }
  .post-body { padding: 32px 16px; }
  .post-body h2 { font-size: 22px; }
  .post-body blockquote { font-size: 18px; padding-left: 16px; }

  /* Footer */
  .footer-grid { gap: 24px; }
  nav { height: 60px; }
  .pt-nav { padding-top: 60px; }

  /* Resource cards */
  .resource-icon { width: 44px; height: 44px; font-size: 20px; }

  /* Trigger items */
  .trigger-item { padding: 24px 20px; }

  /* Stats travel badges on services */
  .travel-badges { flex-direction: column !important; }
  .travel-badges > div { width: 100% !important; }

  /* Results metrics */
  .result-metrics { gap: 16px; }
  .metric-val { font-size: 22px; }

  /* About img */
  .about-img img { height: 280px; }

  /* Inline 2-col grids used in index differentiator + pe page */
  .two-col-inline { grid-template-columns: 1fr !important; gap: 28px !important; }
  .two-col-inline img { max-height: 280px; object-fit: cover; }

  /* Three-col inline grids → single col */
  .three-col-inline { grid-template-columns: 1fr !important; }

  /* Hide desktop decorative elements */
  .hero-bg { opacity: 0.4; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-3 { animation-delay: 0.35s; opacity: 0; }
.fade-up-4 { animation-delay: 0.5s; opacity: 0; }

/* mobile nav open */
nav.open .nav-links {
  display: flex; flex-direction: column;
  position: fixed; top: 68px; left: 0; right: 0;
  background: var(--bg); padding: 24px;
  border-bottom: 1px solid var(--border);
  gap: 20px; z-index: 99;
}
nav.open .nav-links a { font-size: 16px; color: var(--text); padding: 4px 0; }
nav.open .nav-links .nav-cta { width: 100%; justify-content: center; margin-top: 8px; }

/* Three col inline — becomes 1 col on mobile */
@media (max-width: 600px) {
  .three-col-inline { grid-template-columns: 1fr !important; gap: 16px !important; }
  .two-col-inline { grid-template-columns: 1fr !important; gap: 28px !important; }
  .timeline-row { grid-template-columns: 1fr !important; padding: 16px 20px !important; gap: 4px !important; }
  .timeline-year { font-size: 13px !important; color: var(--gold); margin-bottom: 2px; }
}
@media (max-width: 900px) {
  .three-col-inline { grid-template-columns: 1fr !important; gap: 16px !important; }
}
