:root {
  --ink: #10201c;
  --forest: #102a24;
  --forest-2: #173b32;
  --forest-3: #235648;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #66716c;
  --line: #d7d9d1;
  --gold: #b9935a;
  --gold-light: #d6ba8f;
  --shadow: 0 24px 70px rgba(16, 42, 36, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(16, 42, 36, 0.92);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 186, 143, .8);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .04em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 15px; letter-spacing: .02em; }
.brand-copy small { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 20px; font-size: 14px; }
.primary-nav > a:not(.btn) { color: rgba(255,255,255,.78); transition: color .2s ease; }
.primary-nav > a:not(.btn):hover { color: var(--white); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.section { padding: 112px 0; }
.section-dark { position: relative; color: var(--white); background: var(--forest); overflow: hidden; }
.section-soft { background: var(--cream); }

.eyebrow {
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.1; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.025em; }
h1 { margin-bottom: 25px; font-size: clamp(3.15rem, 6vw, 6rem); }
h1 span { color: var(--gold-light); }
h2 { margin-bottom: 20px; font-size: clamp(2.3rem, 4vw, 4.1rem); }
h3 { font-size: 1.22rem; }
p { margin-top: 0; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--forest); background: var(--gold-light); }
.btn-primary:hover { background: #e1c79f; }
.btn-secondary { color: var(--white); background: var(--forest); }
.btn-secondary:hover { background: var(--forest-2); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: var(--gold-light); }
.btn-small { min-height: 40px; padding-inline: 18px; }
.btn.full { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 4px;
}
.text-link.dark { color: var(--forest); border-color: rgba(16,42,36,.25); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { min-height: 760px; padding: 112px 0 85px; display: flex; align-items: center; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: center; }
.hero-intro { max-width: 720px; margin-bottom: 34px; color: rgba(255,255,255,.76); font-size: clamp(1.04rem, 1.55vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero-proof { list-style: none; margin: 64px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 700px; }
.hero-proof li { padding-right: 20px; border-right: 1px solid rgba(255,255,255,.16); }
.hero-proof li + li { padding-left: 27px; }
.hero-proof li:last-child { border-right: 0; }
.hero-proof strong { display: block; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 500; }
.hero-proof span { display: block; margin-top: 3px; color: rgba(255,255,255,.56); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }

.hero-panel {
  position: relative;
  padding: 42px 40px 38px;
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 90px rgba(0,0,0,.15);
}
.panel-topline { position: absolute; top: 0; left: 40px; width: 95px; height: 3px; background: var(--gold-light); }
.panel-kicker { margin-bottom: 17px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-panel h2 { font-family: inherit; font-size: 1.55rem; font-weight: 750; letter-spacing: -.02em; line-height: 1.25; }
.hero-panel > p:not(.panel-kicker) { color: rgba(255,255,255,.69); }
.availability { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.13); display: flex; gap: 11px; align-items: flex-start; color: rgba(255,255,255,.8); font-size: 13px; }
.status-dot { width: 9px; height: 9px; flex: 0 0 auto; margin-top: 6px; border-radius: 50%; background: #8bb99e; box-shadow: 0 0 0 6px rgba(139,185,158,.12); }
.hero-pattern { position: absolute; right: -140px; bottom: -260px; width: 640px; height: 640px; border: 1px solid rgba(214,186,143,.12); border-radius: 50%; }
.hero-pattern::before, .hero-pattern::after { content: ""; position: absolute; inset: 70px; border: 1px solid rgba(214,186,143,.1); border-radius: 50%; }
.hero-pattern::after { inset: 150px; }

.trust-strip { padding: 20px 0; color: var(--forest); background: var(--gold-light); }
.trust-list { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.trust-list span { padding: 5px 25px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-right: 1px solid rgba(16,42,36,.22); }
.trust-list span:last-child { border-right: 0; }

.section-heading { max-width: 800px; margin-bottom: 55px; }
.section-heading > p:last-child { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.section-heading.light > p:last-child { color: rgba(255,255,255,.65); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 480px; padding: 38px 34px 33px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 14px 40px rgba(16,42,36,.045); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card.featured { color: var(--white); background: var(--forest); border-color: var(--forest); }
.service-number { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 3.5rem; line-height: 1; opacity: .72; }
.card-label { margin: 31px 0 8px; color: var(--gold); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { margin-bottom: 17px; font-size: 1.7rem; }
.service-card > p:not(.card-label) { color: var(--muted); }
.service-card.featured > p:not(.card-label) { color: rgba(255,255,255,.7); }
.service-card ul { list-style: none; padding: 18px 0 0; margin: 25px 0 0; border-top: 1px solid var(--line); }
.service-card.featured ul { border-color: rgba(255,255,255,.15); }
.service-card li { position: relative; padding: 7px 0 7px 18px; font-size: 14px; }
.service-card li::before { content: ""; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }


.section-expertise { background: var(--paper); }
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.expertise-card { min-height: 520px; padding: 42px 38px 36px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 14px 40px rgba(16,42,36,.045); }
.expertise-card-dark { color: var(--white); border-color: var(--forest); background: var(--forest); }
.expertise-card h3 { max-width: 540px; margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -.02em; }
.expertise-card > p:not(.card-label):not(.expertise-note) { color: var(--muted); }
.expertise-card-dark > p:not(.card-label):not(.expertise-note) { color: rgba(255,255,255,.7); }
.expertise-card ul { list-style: none; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); }
.expertise-card-dark ul { border-color: rgba(255,255,255,.16); }
.expertise-card li { position: relative; padding: 8px 0 8px 20px; font-size: 14px; }
.expertise-card li::before { content: ""; position: absolute; left: 0; top: 17px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.expertise-note { margin: 27px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: var(--gold-light); font-size: 12px; font-weight: 750; letter-spacing: .04em; }

.split-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.sticky-copy { position: sticky; top: 128px; }
.sticky-copy > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }
.challenge-list { border-top: 1px solid rgba(16,42,36,.16); }
.challenge-item { display: grid; grid-template-columns: 52px 1fr; gap: 24px; padding: 31px 0; border-bottom: 1px solid rgba(16,42,36,.16); }
.challenge-item > span { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.challenge-item h3 { margin-bottom: 9px; font-size: 1.3rem; }
.challenge-item p { margin-bottom: 0; color: var(--muted); }

.results-section { background: #0c211c; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.result-card { min-height: 285px; padding: 38px 32px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.result-card strong { display: block; margin-bottom: 27px; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.35rem, 4vw, 4rem); font-weight: 500; line-height: 1; }
.result-card h3 { margin-bottom: 11px; font-size: 1.1rem; }
.result-card p { margin-bottom: 0; color: rgba(255,255,255,.59); font-size: 14px; }

.method-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.method-card { padding: 32px 25px; border-top: 3px solid var(--forest); background: var(--white); box-shadow: 0 12px 35px rgba(16,42,36,.05); }
.method-card > span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 47px; border-radius: 50%; color: var(--white); background: var(--forest); font-weight: 800; }
.method-card h3 { margin-bottom: 13px; }
.method-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.section-profile { background: #e9e5db; }
.profile-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 85px; align-items: center; }
.profile-visual { position: relative; min-height: 540px; padding: 45px; display: flex; flex-direction: column; justify-content: space-between; color: var(--white); background: var(--forest); overflow: hidden; }
.profile-visual::before { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: -170px; border: 1px solid rgba(214,186,143,.25); border-radius: 50%; }
.profile-visual::after { content: ""; position: absolute; inset: 25px; border: 1px solid rgba(255,255,255,.1); }
.initials { position: relative; z-index: 1; color: var(--gold-light); font-family: Georgia, "Times New Roman", serif; font-size: clamp(6rem, 14vw, 10rem); line-height: .85; }
.profile-caption { position: relative; z-index: 1; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; }
.profile-copy .lead { color: var(--ink); font-size: 1.15rem; }
.profile-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 31px 0; }
.profile-tags span { padding: 8px 12px; border: 1px solid rgba(16,42,36,.18); border-radius: 999px; font-size: 12px; font-weight: 700; }

.cta-section { padding: 105px 0; }
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: start; }
.cta-grid h2 { max-width: 700px; }
.cta-grid > div > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.67); font-size: 1.05rem; }
.direct-contact { margin-top: 35px; display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.direct-contact a { color: var(--gold-light); font-size: 1.1rem; font-weight: 750; }
.contact-form { padding: 34px; color: var(--ink); background: var(--white); box-shadow: 0 30px 90px rgba(0,0,0,.2); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid #d2d6d1; border-radius: 8px; background: #fbfbf8; padding: 12px 13px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-row textarea { resize: vertical; min-height: 112px; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--forest-3); box-shadow: 0 0 0 4px rgba(35,86,72,.1); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 11px; text-align: center; }

.site-footer { padding: 36px 0; color: rgba(255,255,255,.7); background: #081713; }
.footer-grid { display: grid; grid-template-columns: 1.2fr auto auto; gap: 42px; align-items: center; }
.footer-grid strong { color: var(--white); }
.footer-grid p { margin: 5px 0 0; font-size: 12px; }
.footer-links { display: flex; gap: 20px; font-size: 13px; }
.copyright { margin: 0 !important; white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .primary-nav { gap: 18px; }
  .hero-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 95px; }
  .hero-panel { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: 1 / -1; min-height: auto; }
  .expertise-grid { grid-template-columns: 1fr; }
  .split-layout { gap: 55px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { gap: 45px; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; z-index: 2; }
  .primary-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    background: var(--forest);
    transform: translateX(100%);
    transition: transform .28s ease;
    font-size: 19px;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split-layout, .profile-grid { grid-template-columns: 1fr; }
  .sticky-copy { position: static; }
  .profile-visual { min-height: 400px; }
  .trust-list span { padding-inline: 13px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; padding: 76px 0 65px; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .hero-proof { grid-template-columns: 1fr; gap: 20px; margin-top: 45px; }
  .hero-proof li, .hero-proof li + li { padding: 0 0 17px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-proof li:last-child { border-bottom: 0; }
  .hero-panel { padding: 36px 27px 30px; }
  .panel-topline { left: 27px; }
  .trust-strip { display: none; }
  .service-grid, .results-grid, .method-grid, .expertise-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured, .expertise-card { grid-column: auto; min-height: auto; }
  .challenge-item { grid-template-columns: 40px 1fr; gap: 10px; }
  .result-card { min-height: auto; }
  .profile-visual { min-height: 330px; padding: 30px; }
  .cta-grid { gap: 45px; }
  .contact-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { flex-wrap: wrap; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
