:root {
  --navy: #07162c;
  --navy-2: #0c2346;
  --blue: #174a8b;
  --gold: #d4a84e;
  --gold-light: #f1d999;
  --ice: #eef3f8;
  --white: #ffffff;
  --ink: #10213a;
  --muted: #5e6c7d;
  --line: rgba(16, 33, 58, .14);
  --shadow: 0 24px 70px rgba(7, 22, 44, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
}
.nav-shell {
  width: min(1200px, calc(100% - 48px));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  letter-spacing: -.06em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 15px; letter-spacing: .01em; }
.brand-text small { margin-top: 3px; opacity: .68; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
.main-nav > a:not(.nav-cta) { opacity: .84; transition: opacity .2s ease; }
.main-nav > a:hover { opacity: 1; }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.nav-cta:hover { background: var(--white); color: var(--navy); }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 6px 0; background: var(--white); }

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(44, 100, 170, .42), transparent 30%),
    linear-gradient(120deg, #061326 0%, #0a2245 55%, #0d3260 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -220px;
  top: 110px;
  border: 1px solid rgba(212,168,78,.2);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -330px;
  bottom: -150px;
  border: 80px solid rgba(255,255,255,.025);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 {
  max-width: 720px;
  margin-bottom: 17px;
  font-size: clamp(4rem, 7.8vw, 7.2rem);
  line-height: .84;
  letter-spacing: -.06em;
}
h1 span {
  display: block;
  color: var(--gold-light);
  font-size: .54em;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-tagline {
  max-width: 620px;
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -.025em;
}
.hero-lead { max-width: 650px; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--navy); box-shadow: 0 14px 32px rgba(212,168,78,.2); }
.button-ghost { border: 1px solid rgba(255,255,255,.38); color: var(--white); }
.button-dark { background: var(--navy); color: var(--white); }
.button-gold { background: var(--gold); color: var(--navy); }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px 27px; margin-top: 42px; color: rgba(255,255,255,.63); font-size: 13px; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--gold); font-weight: 700; }
.portrait-wrap { position: relative; min-width: 0; }
.portrait-frame {
  position: relative;
  width: min(470px, 100%);
  margin-left: auto;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: .82;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: 19px;
  filter: saturate(.92) contrast(1.02);
}
.name-card {
  position: absolute;
  left: -24px;
  bottom: 28px;
  width: 225px;
  padding: 20px 22px;
  color: var(--navy);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.name-card-kicker { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.name-card strong { margin-top: 3px; font-family: "Playfair Display", serif; font-size: 20px; }
.name-card > span:last-child { color: var(--muted); font-size: 13px; }
.hero-number {
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.025);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap;
}

.section-shell { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.intro {
  display: grid;
  grid-template-columns: 90px 1.25fr .75fr;
  gap: 50px;
  align-items: start;
  padding-block: 115px;
}
.section-number { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: .15em; }
.intro h2, .section-heading h2, .about h2, .contact h2, .guide h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.intro > p:last-child { margin-top: 42px; color: var(--muted); line-height: 1.8; }

.services { padding: 110px 0; background: var(--ice); }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 48px; }
.section-heading > div { max-width: 680px; }
.section-heading > p { max-width: 330px; margin-bottom: 8px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  min-height: 310px;
  padding: 31px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(7,22,44,.04);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover, .service-card:focus-within { transform: translateY(-6px); border-color: rgba(23,74,139,.14); box-shadow: 0 20px 40px rgba(7,22,44,.09); }
.service-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 44px; }
.service-index { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; }
.service-icon { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); }
.service-card h3 { margin-bottom: 13px; font-family: "Playfair Display", serif; font-size: 25px; line-height: 1.2; }
.service-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.text-link {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 0 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23,74,139,.28);
  font-weight: 700;
  cursor: pointer;
}
.text-link span { margin-left: 7px; }
.service-card-accent { color: var(--white); background: var(--blue); }
.service-card-accent p, .service-card-accent .service-index { color: rgba(255,255,255,.72); }
.service-card-accent .service-icon { border-color: rgba(255,255,255,.25); color: var(--gold-light); }
.service-card-accent .text-link { color: var(--white); border-color: rgba(255,255,255,.3); }
.service-card-wide {
  grid-column: span 3;
  min-height: 210px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 38px 46px;
  background: linear-gradient(120deg, #f7f0df, #fff);
}
.service-card-wide .service-top { margin-bottom: 17px; }
.service-card-wide p { max-width: 700px; margin-bottom: 0; }

.guide { padding: 120px 0; color: var(--white); background: var(--navy); }
.guide-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 100px; align-items: center; }
.eyebrow-light { color: var(--gold-light); }
.guide-copy > p:not(.eyebrow) { max-width: 600px; margin-top: 25px; color: rgba(255,255,255,.63); }
.guide-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.guide-option {
  padding: 11px 17px;
  color: rgba(255,255,255,.72);
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  cursor: pointer;
  transition: .2s ease;
}
.guide-option:hover, .guide-option.active { color: var(--navy); background: var(--white); }
.guide-result { min-height: 415px; padding: 42px; color: var(--navy); background: var(--white); border-radius: var(--radius); box-shadow: 0 25px 60px rgba(0,0,0,.2); }
.result-label { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.result-icon { margin: 28px 0 18px; color: var(--gold); font-size: 34px; }
.guide-result h3 { margin-bottom: 17px; font-family: "Playfair Display", serif; font-size: 31px; line-height: 1.2; }
.guide-result p { min-height: 82px; color: var(--muted); }

.about { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: center; padding-block: 120px; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: .86; object-fit: cover; object-position: 50% 45%; border-radius: 24px; }
.photo-caption {
  position: absolute;
  right: -30px;
  bottom: 30px;
  padding: 13px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-size: 13px;
}
.about-copy .section-number { margin-bottom: 42px; }
.about-lead { margin: 24px 0 16px; color: var(--blue); font-family: "Playfair Display", serif; font-size: 23px; line-height: 1.4; }
.about-copy > p:not(.eyebrow):not(.section-number):not(.about-lead) { color: var(--muted); }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-points div { display: flex; flex-direction: column; gap: 5px; }
.about-points strong { color: var(--blue); }
.about-points span { color: var(--muted); font-size: 13px; line-height: 1.5; }

.contact { padding-bottom: 100px; }
.contact-card {
  padding: 65px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(41,103,177,.45), transparent 33%),
    var(--navy);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: center;
}
.contact-card h2 { max-width: 680px; }
.contact-card p:not(.eyebrow) { margin-top: 20px; color: rgba(255,255,255,.66); }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 20px; }
.phone-link { display: flex; flex-direction: column; align-items: center; color: var(--white); }
.phone-link span { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; opacity: .56; }
.phone-link strong { font-size: 22px; }
.social-strip { padding: 29px 12px 0; display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 14px; }
.social-links { display: flex; gap: 13px; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px 15px 8px 9px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(7,22,44,.07);
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-link:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7,22,44,.12); }
.social-logo {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  border-radius: 50%;
}
.social-logo svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-logo .social-dot { fill: currentColor; stroke: none; }
.instagram .social-logo { background: linear-gradient(135deg, #7438bc, #e52f6a 55%, #f7a42b); }
.tiktok .social-logo { background: #090b10; }
.tiktok .social-logo svg { stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

footer { padding: 42px 0; color: rgba(255,255,255,.56); background: #040d1b; font-size: 13px; }
.footer-inner { width: min(1120px, calc(100% - 48px)); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand-footer { color: var(--white); }
.brand-footer .brand-mark { border-color: rgba(255,255,255,.2); }
.footer-inner p { margin: 0; }

.floating-whatsapp {
  position: fixed;
  z-index: 15;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  color: #fff;
  background: #168c5b;
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(5,60,37,.32);
  font-weight: 700;
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 24px; fill: currentColor; }

.service-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 45px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
}
.service-dialog::backdrop { background: rgba(4,13,27,.72); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; right: 18px; top: 14px; padding: 7px 12px; color: var(--muted); background: transparent; border: 0; font-size: 26px; cursor: pointer; }
.dialog-kicker { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.service-dialog h2 { margin: 16px 0; font-family: "Playfair Display", serif; font-size: 37px; line-height: 1.15; }
.service-dialog p { color: var(--muted); }
.service-dialog ul { margin: 22px 0 30px; padding: 0; list-style: none; }
.service-dialog li { padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line); position: relative; }
.service-dialog li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-cta) { display: none; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 35px; }
  h1 { font-size: clamp(3.8rem, 8vw, 5.3rem); }
  .intro { grid-template-columns: 60px 1fr; }
  .intro > p:last-child { grid-column: 2; margin-top: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-wide { grid-column: span 2; }
  .guide-grid { gap: 45px; }
  .about { gap: 55px; }
  .about-points { grid-template-columns: 1fr; }
  .contact-card { padding: 50px; grid-template-columns: 1fr; }
  .contact-actions { align-items: flex-start; }
}

@media (max-width: 700px) {
  .nav-shell, .hero-grid, .section-shell, .footer-inner { width: min(100% - 32px, 1120px); }
  .nav-shell { height: 78px; }
  .brand-text small { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    padding: 18px;
    background: rgba(7,22,44,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav > a:not(.nav-cta) { display: block; padding: 8px; }
  .nav-cta { text-align: center; }
  .hero { padding: 118px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(4rem, 18vw, 5.2rem); }
  .hero-lead { font-size: 17px; }
  .portrait-wrap { margin: 18px auto 0; width: min(90%, 410px); }
  .name-card { left: -12px; bottom: 19px; width: 195px; padding: 15px 17px; }
  .hero-number { display: none; }
  .trust-row { gap: 10px 20px; }
  .intro { grid-template-columns: 1fr; gap: 18px; padding-block: 78px; }
  .intro > p:last-child { grid-column: auto; margin: 5px 0 0; }
  .services, .guide { padding-block: 80px; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading > p { margin-top: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .service-card-wide { grid-column: auto; min-height: 330px; flex-direction: column; align-items: stretch; gap: 28px; padding: 31px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-result { min-height: auto; padding: 32px 26px; }
  .guide-result p { min-height: 0; }
  .about { grid-template-columns: 1fr; gap: 60px; padding-block: 80px; }
  .about-photo { width: min(90%, 440px); margin: 0 auto; }
  .photo-caption { right: -10px; }
  .about-points { grid-template-columns: 1fr; }
  .contact { padding-bottom: 70px; }
  .contact-card { padding: 38px 26px; gap: 38px; }
  .social-strip, .footer-inner { flex-direction: column; align-items: flex-start; }
  .social-links { width: 100%; flex-direction: column; }
  .social-link { width: 100%; justify-content: flex-start; }
  .social-link > span:last-child { margin-left: auto; }
  .footer-inner { gap: 17px; }
  .footer-inner > span { opacity: .7; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 54px; height: 54px; padding: 14px; }
  .service-dialog { padding: 38px 24px 28px; }
  .service-dialog h2 { font-size: 31px; }
}

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