:root {
  --navy-950: #0b1f3a;
  --navy-900: #102A4C;
  --navy-800: #16345f;
  --gold-500: #c9a24b;
  --gold-400: #d9b968;
  --bg-light: #faf9f6;
  --bg-muted: #f1efe9;
  --text-dark: #14213d;
  --text-muted: #556074;
  --white: #ffffff;
  --border-light: #e4e1d8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy-950);
}

h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: 20px; }

p { margin: 0 0 16px; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.eyebrow-light { color: var(--gold-400); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
}

.brand-mark { color: var(--gold-500); display: flex; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.brand-name-accent {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}

.primary-nav a { color: var(--text-dark); transition: color 0.2s; }
.primary-nav a:hover { color: var(--gold-500); }

.nav-cta {
  background: var(--navy-950);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--navy-800); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-950);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Cpath d='M0 250 C 60 250, 60 100, 120 100 S 180 220, 240 220 S 300 60, 360 60' fill='none' stroke='%23c9a24b' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 60%;
}

.hero-inner { position: relative; max-width: 720px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
}

.hero-lead {
  font-size: 18px;
  color: #cdd6e6;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, background 0.2s, color 0.2s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950) !important;
}
.btn-primary:hover { background: var(--gold-400); }

.btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white) !important;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-full { width: 100%; text-align: center; }

/* Sections */
.section { padding: 88px 0; }
.section-muted { background: var(--bg-muted); }
.section-dark {
  background: var(--navy-950);
  color: var(--white);
}
.section-title-light { color: var(--white); }
.section-lead {
  max-width: 620px;
  font-size: 17px;
}
.section-lead-light {
  max-width: 620px;
  font-size: 17px;
  color: #cdd6e6;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.avatar-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold-500);
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}
.credentials li {
  padding-left: 26px;
  position: relative;
  color: var(--text-dark);
  font-weight: 500;
}
.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* Methodology */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.method-card {
  background: var(--navy-900);
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: 8px;
  padding: 28px;
}

.method-number {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-500);
  font-weight: 700;
}

.method-card h3 { color: var(--white); margin-top: 8px; }
.method-card p { color: #b9c3d6; margin-bottom: 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px;
  border-top: 3px solid var(--gold-500);
}
.service-card p { margin-bottom: 0; }

/* Fees */
.fees-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 560px;
}

.fees-table th, .fees-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
}

.fees-table th {
  background: var(--navy-950);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
}

.fees-table tbody tr:last-child td { border-bottom: none; }
.fees-table tbody tr:hover { background: var(--bg-muted); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}

.contact-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-list a { font-weight: 600; color: var(--navy-950); }
.contact-list a:hover { color: var(--gold-500); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 32px;
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--bg-light);
}

.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}
.form-status.success { color: #2f7a4a; }
.form-status.error { color: #b3382c; }

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: #aab4c8;
  padding: 48px 0 32px;
  font-size: 13px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.disclaimer { max-width: 760px; line-height: 1.7; }

.copyright { margin: 24px 0 0; color: #7f8aa3; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo { justify-self: center; }

  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg-light);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .primary-nav.open { max-height: 400px; }
  .primary-nav a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-cta { border-radius: 0; text-align: center; }
}
