:root {
  --navy-950: #070e22;
  --navy-900: #0b1738;
  --navy-850: #10224d;
  --navy-800: #17305f;
  --gold-500: #d9b64d;
  --gold-400: #ebcf72;
  --gold-300: #f1dc91;
  --cream: #f7f4ec;
  --paper: #fffdf8;
  --ink: #172038;
  --muted: #687086;
  --line: #ded9cb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 14, 34, .13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-900);
  text-decoration: none;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7, 14, 34, .96);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(1260px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(235, 207, 114, .65);
  border-radius: 8px;
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.brand-copy small {
  margin-top: 6px;
  color: rgba(255,255,255,.67);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  position: relative;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 650;
}
.site-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-400);
  transition: right .2s ease;
}
.site-nav a:not(.nav-cta):hover::after { right: 0; }
.site-nav a:hover { color: var(--white); }
.nav-cta {
  padding: 11px 17px;
  color: var(--navy-950) !important;
  background: var(--gold-400);
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(217,182,77,.14), transparent 26%),
    linear-gradient(118deg, #071027 0%, #0b1738 50%, #142a59 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 25%, transparent 94%);
}
.hero::after {
  content: '';
  position: absolute;
  right: -180px;
  top: 80px;
  width: 660px;
  height: 660px;
  border: 1px solid rgba(235,207,114,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(235,207,114,.025), 0 0 0 130px rgba(235,207,114,.018);
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.orb-one { width: 14px; height: 14px; right: 24%; top: 23%; background: var(--gold-400); box-shadow: 0 0 35px var(--gold-400); }
.orb-two { width: 7px; height: 7px; left: 9%; bottom: 15%; background: rgba(235,207,114,.65); box-shadow: 0 0 28px var(--gold-400); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}
.eyebrow, .section-kicker {
  margin: 0 0 16px;
  color: #9a7821;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow, .section-kicker.light { color: var(--gold-400); }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.045em;
}
.hero h1 span { color: var(--gold-400); }
.hero-name {
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}
.hero-stat {
  width: fit-content;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 2px solid var(--gold-500);
  padding-left: 16px;
}
.hero-stat strong { font-size: 2.6rem; line-height: .9; color: var(--gold-400); }
.hero-stat span { color: rgba(255,255,255,.64); font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; line-height: 1.25; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold-400); color: var(--navy-950); box-shadow: 0 12px 34px rgba(217,182,77,.18); }
.button-ghost { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.035); }
.button-ghost:hover { background: rgba(255,255,255,.09); }
.button-gold { background: var(--gold-400); color: var(--navy-950); }
.hero-visual { justify-self: end; width: min(100%, 470px); }
.logo-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(235,207,114,.48);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: rotate(1.3deg);
}
.logo-frame::after {
  content: '';
  position: absolute;
  inset: -12px 18px 18px -12px;
  z-index: -1;
  border: 1px solid rgba(217,182,77,.16);
  border-radius: 28px;
}
.logo-frame img {
  width: 100%;
  aspect-ratio: 410 / 253;
  object-fit: cover;
  border-radius: 15px;
}
.logo-frame p {
  margin: 12px 3px 2px;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.logo-frame-topline { position: absolute; left: 34px; top: -1px; width: 38%; height: 2px; background: var(--gold-400); }

.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.profile-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.profile-card h2, .section-heading h2, .experts h2, .experience h2, .contact h2, .final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.credential-row {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.credential-row:first-of-type { margin-top: 28px; border-top: 1px solid var(--line); }
.credential-label { color: var(--muted); font-size: .82rem; }
.credential-row strong { font-size: .95rem; }
.profile-quote { padding: 24px 0; }
.gold-rule { display: block; width: 74px; height: 3px; margin-bottom: 28px; background: var(--gold-500); }
.profile-quote > p {
  max-width: 520px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.22;
}
.practice-tags { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.practice-tags span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fbfaf5;
  font-size: .8rem;
  font-weight: 700;
}

.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading > p:last-child { max-width: 630px; margin: 18px 0 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.service-card {
  border: 1px solid #ddd7c8;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.78);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.service-card:hover { transform: translateY(-2px); border-color: #c9b267; box-shadow: 0 18px 45px rgba(14,29,66,.08); }
.service-card:nth-child(5) { grid-column: 1 / -1; }
.service-head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.service-number { color: #9b7d2a; font-size: .73rem; font-weight: 900; letter-spacing: .12em; }
.service-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.service-plus { font-size: 1.6rem; color: #9b7d2a; transition: transform .25s ease; }
.service-card.is-open .service-plus { transform: rotate(45deg); }
.service-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.service-body > ul { overflow: hidden; }
.service-card.is-open .service-body { grid-template-rows: 1fr; }
.service-body ul {
  margin: 0;
  padding: 0 30px 24px 58px;
  columns: 2;
  column-gap: 40px;
  color: #4d566d;
}
.service-body li { break-inside: avoid; margin: 8px 0; padding-left: 3px; }

.experts {
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-850));
  overflow: hidden;
}
.experts::before {
  content: '§';
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-52%);
  color: rgba(235,207,114,.05);
  font-family: var(--serif);
  font-size: 23rem;
  line-height: 1;
}
.experts-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.experts-copy p:last-child { max-width: 430px; color: rgba(255,255,255,.62); }
.expert-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.expert-list span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.9);
  font-family: var(--serif);
  font-size: 1.18rem;
}
.expert-list b { margin-left: 5px; color: var(--gold-400); }

.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.location-grid span {
  position: relative;
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 20px 22px 20px 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-family: var(--serif);
  font-size: 1.16rem;
}
.location-grid span::before {
  content: '';
  position: absolute;
  left: 21px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold-500);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.experience { padding-top: 20px; }
.experience-box {
  min-height: 310px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
  padding: clamp(32px, 6vw, 66px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.experience-number {
  color: var(--gold-400);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: .72;
  letter-spacing: -.08em;
}
.experience-copy h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
.experience-copy > p:last-child { margin: 14px 0 0; color: rgba(255,255,255,.6); }
.experience-mark svg { width: 110px; height: 110px; fill: none; stroke: rgba(235,207,114,.36); stroke-width: 1.5; }

.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: stretch; }
.contact-intro { max-width: 520px; color: var(--muted); }
.contact-actions { margin-top: 32px; display: grid; gap: 10px; }
.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-link:hover { transform: translateY(-2px); border-color: #bda55d; box-shadow: 0 14px 35px rgba(7,14,34,.07); }
.contact-link span { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-link strong { overflow-wrap: anywhere; font-size: .91rem; text-align: right; }
.contact-panel {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(150deg, #10234e, #09142f);
  box-shadow: 0 26px 65px rgba(7,14,34,.16);
}
.address-block + .social-block { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }
.mini-label { display: block; margin-bottom: 11px; color: var(--gold-400); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-panel p { margin: 0; color: rgba(255,255,255,.82); }
.social-name { font-family: var(--serif); font-size: 1.45rem; }
.social-pills { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 9px; }
.social-pills span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.68); font-size: .76rem; }

.final-cta { padding: 62px 0; background: var(--navy-950); color: var(--white); }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.final-cta p { margin: 0 0 8px; color: var(--gold-400); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.final-cta h2 { max-width: 700px; font-size: clamp(1.9rem, 3.2vw, 3rem); }

.site-footer { padding: 38px 0 95px; color: rgba(255,255,255,.64); background: #040916; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .6fr 1fr; gap: 38px; }
.footer-grid strong { display: block; color: var(--white); }
.footer-grid p { margin: 6px 0 0; }
.footer-grid span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.4); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid a { color: var(--gold-300); text-decoration: none; overflow-wrap: anywhere; }

.whatsapp-float {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 17px;
  border-radius: 999px;
  color: #082315;
  background: #62d88a;
  box-shadow: 0 16px 40px rgba(0,0,0,.23);
  text-decoration: none;
  font-weight: 850;
  font-size: .84rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 19px 45px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }

.reveal { opacity: 1; transform: none; transition: transform .25s ease, box-shadow .25s ease; }
.reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 860px); }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(7,14,34,.98);
    box-shadow: 0 22px 55px rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { width: 100%; padding: 12px 13px; border-radius: 10px; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav a:hover { background: rgba(255,255,255,.06); }
  .nav-cta { margin-top: 4px; text-align: center; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero { min-height: auto; padding: 140px 0 85px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 580px); justify-self: start; }
  .profile-grid, .experts-grid, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .experts-grid { gap: 44px; }
  .contact-panel { min-height: 340px; }
  .experience-box { grid-template-columns: auto 1fr; }
  .experience-mark { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 28px); }
  .section { padding: 72px 0; }
  .nav-shell { width: calc(100% - 22px); min-height: 72px; }
  .brand img { width: 50px; height: 36px; }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { font-size: .6rem; letter-spacing: .12em; }
  .hero { padding: 124px 0 72px; }
  .hero::after { width: 430px; height: 430px; right: -260px; top: 170px; }
  .hero h1 { font-size: clamp(2.65rem, 13vw, 4.6rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .logo-frame { padding: 9px; border-radius: 18px; }
  .logo-frame img { border-radius: 11px; }
  .profile-card { padding: 26px 22px; }
  .credential-row { grid-template-columns: 1fr; gap: 5px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(5) { grid-column: auto; }
  .service-head { padding: 19px 17px; gap: 12px; }
  .service-title { font-size: 1.17rem; }
  .service-body ul { columns: 1; padding: 0 24px 22px 45px; }
  .expert-list { grid-template-columns: 1fr; }
  .expert-list span { min-height: 66px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-grid span { min-height: 72px; }
  .experience-box { min-height: 0; grid-template-columns: 1fr; gap: 24px; }
  .experience-number { font-size: 7.5rem; }
  .contact-link { align-items: flex-start; flex-direction: column; gap: 5px; }
  .contact-link strong { text-align: left; }
  .final-cta-inner { align-items: stretch; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .whatsapp-float { width: 54px; height: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

@media (max-width: 390px) {
  .brand-copy small { display: none; }
  .hero h1 { font-size: 2.7rem; }
}

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