
:root {
  --bg: #f7f9fc;
  --bg-soft: #eef3f8;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.10);
  --brand: #2563eb;
  --brand-strong: #1d4ed8;
  --accent: #0f766e;
  --success: #15803d;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.05), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.90);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}
.brand { display: grid; gap: .1rem; }
.brand-mark { font-size: 0.78rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
.brand-name { font-size: 1.02rem; font-weight: 650; letter-spacing: .02em; }
.brand-sub { font-size: .84rem; color: var(--muted); }
.nav-links { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.button, .button-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 48px; padding: 0 1.1rem; border-radius: 999px; font-weight: 650;
  border: 1px solid transparent; transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button { background: #2563eb; color: #ffffff; }
.button-secondary { background: #ffffff; border-color: rgba(37, 99, 235, 0.20); color: #1e3a8a; }
.button:hover, .button-secondary:hover { transform: translateY(-1px); }
.hero { padding: 5.5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: stretch; }
.eyebrow { display: inline-flex; gap: .55rem; align-items: center; color: var(--brand); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 700; }
.hero h1 { margin: 1rem 0 1rem; font-size: clamp(2.7rem, 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.03em; }
.lead { font-size: 1.14rem; color: #334155; max-width: 63ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 1rem 1.35rem; margin-top: 1.5rem; color: var(--muted); font-size: .95rem; }
.hero-card, .card, .quote, .contact-panel, .summary-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { padding: 1.6rem; display: grid; gap: 1.15rem; }
.metric { display: grid; gap: .2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: 0; padding-bottom: 0; }
.metric strong { font-size: 2rem; line-height: 1; }
.metric span { color: var(--muted); }
.profile-card { align-content: start; }
.profile-intro { display: grid; gap: .35rem; }
.profile-intro strong { font-size: 1.2rem; color: var(--text); }
.profile-intro span { color: var(--muted); line-height: 1.55; }
.profile-photo-wrap { display: flex; justify-content: center; margin-bottom: .2rem; }
.profile-photo-wrap-left { justify-content: flex-start; }
.profile-photo {
  width: min(100%, 220px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #fff;
}
.profile-summary-card { display: grid; gap: 1rem; align-content: start; }
section { padding: 2.3rem 0; }
.section-heading { display: grid; gap: .75rem; margin-bottom: 1.5rem; max-width: 72ch; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; }
.section-heading p { margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.card { padding: 1.35rem; }
.card h3 { margin: 0 0 .55rem; font-size: 1.12rem; }
.card p, .card li { color: var(--muted); }
.kicker { color: var(--brand); text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 700; }
.badge-row { display: flex; flex-wrap: wrap; gap: .65rem; }
.badge { padding: .48rem .8rem; border-radius: 999px; border: 1px solid rgba(37, 99, 235, 0.16); color: #1e3a8a; background: rgba(37, 99, 235, 0.08); font-size: .9rem; }
.results-list, .bullet-list { display: grid; gap: .7rem; padding: 0; margin: 0; list-style: none; }
.results-list li, .bullet-list li { display: flex; gap: .75rem; align-items: flex-start; }
.results-list li::before, .bullet-list li::before { content: "•"; color: var(--brand); font-size: 1.2rem; line-height: 1; }
.process { counter-reset: step; display: grid; gap: 1rem; }
.process .card::before {
  counter-increment: step; content: "0" counter(step);
  display: inline-flex; width: 2.2rem; height: 2.2rem; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(37, 99, 235, 0.10); color: var(--brand); font-weight: 700; margin-bottom: .9rem;
}
.quote { padding: 1.4rem; }
.quote p { margin: 0 0 .8rem; color: #1e293b; }
.quote strong { display: block; }
.quote span { color: var(--muted); font-size: .94rem; }
.cta-band { padding: 2rem; display: flex; justify-content: space-between; gap: 1.5rem; align-items: center; }
.cta-band h2 { margin: 0 0 .5rem; }
.site-footer { border-top: 1px solid var(--line); margin-top: 2rem; padding: 2rem 0 2.5rem; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1.25rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-end; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.2rem; }
.contact-panel { padding: 1.35rem; }
.contact-panel h3 { margin-top: 0; }
.contact-methods { display: grid; gap: .95rem; margin-top: 1rem; }
.contact-method { padding-bottom: .95rem; border-bottom: 1px solid var(--line); }
.contact-method:last-child { border-bottom: 0; padding-bottom: 0; }
.summary-card { padding: 1.35rem; }
.summary-card h3 { margin-top: 0; }
.summary-card p, .summary-card li { color: var(--muted); }
.small { font-size: .92rem; color: var(--muted); }
.spacer-top { margin-top: 1rem; }
@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-2, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .nav-row { align-items: flex-start; padding: .9rem 0; }
  .nav-links { gap: .85rem; }
  .hero { padding-top: 4rem; }
  .hero h1 { font-size: 2.5rem; }
}

.button:hover { background: #1d4ed8; }


.booking-embed-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.booking-embed-frame {
  width: 100%;
  min-height: 780px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}
@media (max-width: 720px) {
  .booking-embed-card { padding: .5rem; }
  .booking-embed-frame { min-height: 700px; }
}
