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

:root {
  --navy: #0c3954;
  --navy-mid: #0a3428;
  --teal: #106552;
  --teal-light: #28beac;
  --teal-pale: #e3f4f6;
  --accent: #ffce4c;
  --sky: #9ccbd5;
  --sand: #f5f8f8;
  --sand-dark: #e0eff2;
  --white: #ffffff;
  --gray-100: #f4f7f8;
  --gray-200: #dde8ec;
  --gray-400: #7a9aaa;
  --gray-600: #3a5a6a;
  --gray-800: #0c2030;
  --text: #0c2030;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-height: 76px;
  --max-width: 1100px;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(12,57,84,0.09);
  --shadow-lg: 0 8px 40px rgba(12,57,84,0.15);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 16px; color: var(--navy); letter-spacing: 0.06em; line-height: 1.2;
  font-weight: 600;
}
.nav-logo-tag {
  font-size: 10px; color: var(--teal-light); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  text-decoration: none; letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 10px 22px; border-radius: 2px;
  font-weight: 600 !important; font-size: 13px !important;
  letter-spacing: 0.03em; transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--teal-light) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; }

/* ── PAGE WRAPPER ────────────────────────────────────────────────────────── */
main { padding-top: var(--nav-height); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--max-width); margin: 0 auto; padding: 80px 32px;
  gap: 80px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--teal);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12; color: var(--navy); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--teal); }
.hero-sub {
  font-size: 17px; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 40px; max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: var(--white);
  padding: 14px 32px; border-radius: 2px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: inline-block; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }
.btn-secondary {
  color: var(--navy); font-weight: 500; font-size: 15px;
  text-decoration: none; border-bottom: 1px solid var(--navy);
  padding-bottom: 2px; transition: color var(--transition), border-color var(--transition);
}
.btn-secondary:hover { color: var(--teal); border-color: var(--teal); }
.hero-image-wrap {
  position: relative; display: flex; justify-content: center;
}
.hero-image-frame {
  width: 100%; max-width: 420px; aspect-ratio: 4/5;
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
}
.hero-image-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--teal);
}
.hero-image-placeholder svg { opacity: 0.4; }
.hero-image-placeholder p { font-size: 13px; color: var(--gray-400); font-style: italic; }
.hero-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 14px;
}
.hero-badge-icon {
  width: 42px; height: 42px; background: var(--teal-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.hero-badge-text { font-size: 13px; color: var(--gray-600); line-height: 1.4; }
.hero-badge-text strong { display: block; color: var(--navy); font-size: 14px; }
.hero-stats {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--gray-200);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: var(--max-width); margin-left: auto; margin-right: auto;
  padding-left: 32px; padding-right: 32px;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 36px; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.hero-stat-label { font-size: 13px; color: var(--gray-600); }

/* ── SECTION BASICS ──────────────────────────────────────────────────────── */
section { padding: 96px 32px; }
.container { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--navy); line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--teal-light); }
.section-sub {
  font-size: 16px; color: var(--gray-600); max-width: 560px; line-height: 1.7;
  margin-bottom: 56px;
}

/* ── SPECIALTIES GRID ────────────────────────────────────────────────────── */
.specialties-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--gray-200); border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
}
.specialty-card {
  background: var(--white); padding: 32px 28px;
  transition: background var(--transition);
}
.specialty-card:hover { background: var(--teal-pale); }
.specialty-icon {
  width: 44px; height: 44px; background: var(--teal-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 16px;
}
.specialty-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.specialty-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ── SPLIT SECTION ───────────────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-image {
  aspect-ratio: 1/1; background: var(--teal-pale);
  border-radius: var(--radius-lg); overflow: hidden;
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--gray-600);
}
.check-list li::before {
  content: ''; display: block; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ── SAND SECTION ────────────────────────────────────────────────────────── */
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); }
.bg-navy .section-label, .bg-navy .section-title, .bg-navy h2,
.bg-navy h3, .bg-navy p, .bg-navy li { color: var(--white) !important; }
.bg-navy .section-label { color: rgba(255,255,255,0.5) !important; }
.bg-navy .section-label::before { background: rgba(255,255,255,0.3); }
.bg-navy .section-sub { color: rgba(255,255,255,0.65) !important; }

/* ── PROCESS STEPS ───────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step { position: relative; }
.step-num {
  font-family: var(--font-display); font-size: 48px; color: var(--teal-pale);
  line-height: 1; margin-bottom: 16px; display: block;
}
.step h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }
.step:not(:last-child)::after {
  content: '→'; position: absolute; right: -20px; top: 8px;
  color: var(--teal-light); font-size: 20px;
}

/* ── PRICING TABLE ───────────────────────────────────────────────────────── */
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  text-align: left; padding: 14px 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-400);
  border-bottom: 2px solid var(--gray-200);
}
.pricing-table td { padding: 18px 20px; border-bottom: 1px solid var(--gray-200); font-size: 15px; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--gray-100); }
.price-amount { font-weight: 600; color: var(--teal); font-size: 17px; }
.pricing-note {
  margin-top: 24px; padding: 20px 24px;
  background: var(--teal-pale); border-radius: var(--radius-lg);
  font-size: 14px; color: var(--gray-600); line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 22px 0;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center;
  gap: 20px; transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.faq-icon::before { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon::after { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
  font-size: 15px; color: var(--gray-600); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* ── CONTACT FORM ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--teal-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--teal); flex-shrink: 0;
}
.contact-detail h4 { font-size: 13px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 15px; color: var(--navy); text-decoration: none; font-weight: 500; }
.contact-detail a:hover { color: var(--teal); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600; color: var(--gray-600);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,125,111,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-notice {
  font-size: 12px; color: var(--gray-400); line-height: 1.6; margin-top: 12px;
}
.form-success {
  display: none; text-align: center; padding: 40px;
  background: var(--teal-pale); border-radius: var(--radius-lg);
}
.form-success h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

/* ── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  background: var(--navy); padding: 80px 32px 72px;
  text-align: center;
}
.page-header .section-label { justify-content: center; }
.page-header .section-label::before { display: none; }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  color: var(--white); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px;
}
.page-header p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 540px; margin: 0 auto; }

/* ── ABOUT ───────────────────────────────────────────────────────────────── */
.about-hero { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.about-photo {
  aspect-ratio: 3/4; background: var(--teal-pale);
  border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 100px;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.credential-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.credential-tag {
  background: var(--teal-pale); color: var(--teal);
  padding: 6px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
}
.about-body p {
  font-size: 16px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px;
}
.about-body h2 {
  font-family: var(--font-display); font-size: 26px; color: var(--navy);
  margin: 40px 0 16px; letter-spacing: -0.01em;
}

/* ── TMS PLACEHOLDER ─────────────────────────────────────────────────────── */
.coming-soon-wrap {
  min-height: 60vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 32px;
}
.coming-soon-badge {
  display: inline-block; background: var(--teal-pale); color: var(--teal);
  padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy); padding: 64px 32px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display); font-size: 16px; color: var(--white); margin-bottom: 6px; letter-spacing: 0.06em;
}
.footer-brand-tag { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-width); margin: 32px auto 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-crisis {
  font-size: 13px; color: rgba(255,255,255,0.4);
  padding: 12px 20px; background: rgba(255,255,255,0.04);
  border-radius: var(--radius); border-left: 2px solid var(--teal);
}
.footer-crisis strong { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; min-height: auto; }
  .hero-image-wrap { order: -1; }
  .hero-image-frame { max-width: 320px; margin: 0 auto; }
  .hero-badge { display: none; }
  .hero-stats { grid-template-columns: repeat(3,1fr); padding: 40px 24px 0; margin-top: 40px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-photo { position: static; max-width: 300px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 64px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px; list-style: none;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    z-index: 99;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .mobile-menu li a { display: block; padding: 14px 0; font-size: 15px; font-weight: 500; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gray-100); }
  .mobile-menu li:last-child a { border-bottom: none; color: var(--teal); font-weight: 600; }
}
@media (max-width: 600px) {
  .specialties-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
