:root {
  --ink: #171717;
  --muted: #625f58;
  --paper: #f6f2ea;
  --panel: #ffffff;
  --charcoal: #1f2020;
  --charcoal-soft: #30302d;
  --gold: #b98932;
  --gold-light: #ead7ad;
  --sage: #5f7c70;
  --sage-soft: #e8efea;
  --line: #ddd5c8;
  --green: #24c263;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: #fff;
  background: rgba(31, 32, 32, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--charcoal);
  background: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 800;
}

.brand-copy strong,
.brand-copy small {
  display: block;
  overflow-wrap: anywhere;
}

.brand-copy strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand-copy small {
  margin-top: 3px;
  color: #d6d1c8;
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #e5e0d8;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--gold-light);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--charcoal);
  background: var(--gold-light);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.header-cta:hover,
.button.primary:hover {
  background: #f1ddb2;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 7px auto;
  background: #fff;
  border-radius: 99px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 98px) clamp(20px, 6vw, 84px);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(95, 124, 112, 0.34), transparent 34%),
    linear-gradient(135deg, #1f2020 0%, #2c2924 48%, #141414 100%);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 86px);
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.5vw, 54px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 800;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 28px;
  color: #eee9df;
  font-size: clamp(18px, 1.6vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin-bottom: 0;
}

.quick-facts div {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  min-height: 106px;
  padding: 19px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(234, 215, 173, 0.22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quick-facts div::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 51px;
  height: 1px;
  background: rgba(234, 215, 173, 0.18);
}

.quick-facts dt {
  margin: 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  padding-top: 8px;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 850;
  line-height: 1.28;
  text-wrap: balance;
}

.hero-media {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  border: 1px solid rgba(234, 215, 173, 0.34);
  border-radius: 8px;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(76%, 260px);
  padding: 15px 18px;
  color: #fff;
  background: rgba(31, 32, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.portrait-label strong,
.portrait-label span {
  display: block;
}

.portrait-label span {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
}

.intro,
.credentials,
.areas,
.process,
.contact {
  padding: clamp(62px, 9vw, 106px) clamp(20px, 6vw, 84px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.highlight .eyebrow,
.process .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

.section-heading p,
.feature p,
.practice-card p,
.highlight-panel p,
.process-copy p,
.contact-box p,
.credential-card p {
  color: var(--muted);
}

.intro-grid,
.credential-grid,
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature,
.credential-card,
.practice-card {
  min-width: 0;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(28, 28, 28, 0.06);
}

.feature span,
.credential-card span,
.practice-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials {
  background: #fff;
}

.credentials .section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.credential-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.credential-card {
  background: var(--paper);
}

.highlight {
  padding: clamp(58px, 9vw, 96px) clamp(20px, 6vw, 84px);
  background: var(--sage-soft);
}

.highlight-panel {
  max-width: 980px;
  padding: clamp(32px, 5vw, 56px);
  color: var(--ink);
  background: var(--panel);
  border-left: 6px solid var(--sage);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.highlight-panel p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 19px;
}

.practice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.primary-area {
  color: #fff;
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.primary-area p {
  color: #e8e1d4;
}

.primary-area span {
  color: var(--gold-light);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: #fff;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 18px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps strong {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--charcoal);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 20px;
}

.steps p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.contact {
  color: #fff;
  background: var(--charcoal);
}

.contact-box {
  max-width: 850px;
}

.contact-box p {
  color: #e7e1d7;
  font-size: 18px;
}

.button.wide {
  width: min(100%, 360px);
  margin: 10px 0 24px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  color: #f7f4ef;
}

.contact-lines p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  padding: 24px clamp(20px, 6vw, 84px);
  color: #d8d2c7;
  background: #151515;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 15;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    padding: 24px;
    color: #fff;
    background: var(--charcoal);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    justify-self: start;
    width: min(100%, 390px);
  }

  .intro-grid,
  .credential-grid,
  .practice-grid,
  .process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .site-nav {
    inset: 70px 0 auto;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .portrait-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    min-width: 0;
  }

  .feature,
  .credential-card,
  .practice-card,
  .highlight-panel {
    padding: 22px;
  }

  .steps article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .steps strong {
    width: 44px;
    height: 44px;
  }
}
