:root {
  --ink: #080706;
  --ink-soft: #11100e;
  --panel: #171511;
  --panel-2: #211d16;
  --gold: #cda85b;
  --gold-light: #efd798;
  --gold-dark: #7f612c;
  --paper: #f5efe3;
  --muted: #b8ad9a;
  --line: rgba(205, 168, 91, .25);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 22px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 10%, rgba(127, 97, 44, .13), transparent 28rem),
    radial-gradient(circle at 10% 65%, rgba(205, 168, 91, .07), transparent 32rem),
    var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image: url("../images/mark.svg");
  background-repeat: no-repeat;
  background-size: min(62vw, 760px);
  background-position: calc(100% + 180px) calc(100% + 190px);
  z-index: -1;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -8rem;
  z-index: 999;
  padding: .8rem 1rem;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: .35rem;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section--compact { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--line { border-top: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  max-width: 980px;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 7.5vw, 6.3rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.title {
  margin: 0;
  max-width: 850px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.025em;
}
.subtitle {
  max-width: 720px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}
.gold { color: var(--gold-light); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(205, 168, 91, .16);
  background: rgba(8, 7, 6, .86);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .04em; }
.brand-copy span { color: var(--gold); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; }
.site-header .brand { gap: .9rem; }
.site-header .brand img { width: 50px; height: 50px; }
.site-header .brand-copy strong {
  color: #fff8ec;
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(205, 168, 91, .18);
}
.site-header .brand-copy span {
  margin-top: .28rem;
  font-size: .66rem;
  letter-spacing: .19em;
}
.nav-wrap--onepage { min-height: 84px; }
.section-nav { display: flex; align-items: center; gap: 1.35rem; margin-left: auto; }
.section-nav a {
  color: #d7cdbd;
  font-size: .92rem;
  text-decoration: none;
}
.section-nav a:hover, .section-nav a:focus-visible { color: var(--gold-light); }
.header-contact { flex: 0 0 auto; }
.header-contact__mobile { display: none; }
.nav { display: flex; align-items: center; gap: 1.45rem; }
.nav a { color: #d7cdbd; font-size: .88rem; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-light); }
.nav a.btn { color: var(--ink); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .78rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); background: #ffe8ab; }
.btn--ghost { color: var(--gold-light); background: transparent; }
.btn--ghost:hover { color: var(--ink); background: var(--gold-light); }
.btn--small { min-height: 42px; padding: .62rem 1rem; font-size: .73rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.quick-access {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(205, 168, 91, .035);
}
.quick-access__label {
  margin: 0 0 .75rem;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.quick-access__links { display: grid; grid-template-columns: repeat(4, 1fr); gap: .7rem; }
.quick-access__links a {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  color: var(--paper);
  background: rgba(255,255,255,.02);
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
}
.quick-access__links a:hover, .quick-access__links a:focus-visible { border-color: var(--gold); background: rgba(205,168,91,.1); }

.hero { min-height: calc(100svh - 78px); display: grid; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: clamp(2rem, 7vw, 7rem); }
.hero-copy { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; z-index: 1; }
.hero-copy .subtitle { max-width: 680px; }
.hero-art { position: relative; min-height: 570px; display: grid; place-items: center; }
.hero-art::before {
  content: "";
  position: absolute;
  width: min(58vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(205,168,91,.16), rgba(205,168,91,0) 68%);
  filter: blur(8px);
}
.hero-art img { width: min(38vw, 410px); opacity: .96; filter: drop-shadow(0 0 35px rgba(205,168,91,.16)); }
.hero-seal {
  position: absolute;
  right: 0;
  bottom: 12%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(17,16,14,.75);
  text-align: center;
  font-family: var(--serif);
  font-size: .88rem;
  line-height: 1.35;
  transform: rotate(8deg);
}
.hero-note { margin-top: 2.2rem; color: #8e8475; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.prose { max-width: 740px; color: #c9beae; font-size: 1.06rem; }
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--paper); }
.quote {
  margin: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(205,168,91,.08), rgba(205,168,91,.015));
  box-shadow: var(--shadow);
}
.quote p { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 3vw, 3rem); line-height: 1.22; }
.quote footer { margin-top: 1.4rem; color: var(--gold); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  min-height: 260px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.card-index { color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.card h3 { margin: 2.6rem 0 .6rem; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.card p { margin: 0; color: var(--muted); font-size: .94rem; }
.card-link { display: inline-flex; margin-top: 1.25rem; color: var(--gold-light); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }

.method-steps { counter-reset: steps; display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.method-step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}
.method-step::before { content: "0" counter(steps); color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.method-step h3 { margin: 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.method-step p { margin: 0; color: var(--muted); }

.profile { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.portrait-wrap {
  position: relative;
  width: min(100%, 300px);
  justify-self: center;
  padding: .65rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
}
.portrait-wrap::before { content: ""; position: absolute; inset: -.6rem; border: 1px solid rgba(205,168,91,.12); border-radius: 1.65rem; }
.portrait { display: block; width: 100%; height: auto; border-radius: .9rem; object-fit: contain; filter: sepia(.08) contrast(1.04); }
.facts { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.fact { padding: .55rem .8rem; border: 1px solid var(--line); border-radius: 999px; color: #d7cdbd; font-size: .8rem; }

.page-hero { padding: clamp(5rem, 10vw, 9rem) 0 clamp(3rem, 7vw, 6rem); border-bottom: 1px solid var(--line); }
.page-hero .display { max-width: 920px; font-size: clamp(2.8rem, 7vw, 5.6rem); }
.breadcrumb { margin-bottom: 1.4rem; color: #8f8576; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumb a { text-decoration: none; }

.service-list { display: grid; gap: 1rem; margin-top: 2.5rem; }
.service {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.45rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255,255,255,.018);
}
.service-number { color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.service h3 { margin: 0 0 .25rem; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.service p { margin: 0; color: var(--muted); }
.tag { white-space: nowrap; padding: .5rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--gold-light); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }

.faq { display: grid; gap: .75rem; margin-top: 2rem; }
.faq details { border: 1px solid var(--line); border-radius: .8rem; background: rgba(255,255,255,.02); }
.faq summary { cursor: pointer; padding: 1.15rem 1.25rem; color: var(--paper); font-weight: 650; }
.faq details p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--muted); }

.cta {
  padding: clamp(2.2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 80% 25%, rgba(205,168,91,.18), transparent 18rem),
    linear-gradient(135deg, #171511, #0c0b09);
  box-shadow: var(--shadow);
}
.cta .title { max-width: 780px; }

.site-footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 2rem; }
.footer-grid h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: .88rem; }
.footer-grid a { display: block; margin: .3rem 0; text-decoration: none; }
.footer-grid a:hover { color: var(--gold-light); }
.legal { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #766e63; font-size: .75rem; }

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #eed58f;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 12px 35px rgba(0,0,0,.42);
  text-decoration: none;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: currentColor; }

@media (max-width: 900px) {
  body { font-size: 1.04rem; }
  .section-nav { display: none; }
  .quick-access__links { grid-template-columns: repeat(2, 1fr); }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: .75rem 1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(8,7,6,.98);
    transform: translateY(-140%);
    transition: transform .25s;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .85rem 0; border-bottom: 1px solid rgba(205,168,91,.1); font-size: 1rem; }
  .nav .btn { margin-top: .6rem; border-bottom: 1px solid var(--gold); }
  .hero-grid, .split, .profile { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { padding-bottom: 1rem; }
  .hero-art { min-height: 390px; }
  .hero-art img { width: min(78vw, 390px); }
  .hero-seal { right: 8%; bottom: 6%; width: 120px; height: 120px; }
  .cards { grid-template-columns: 1fr; }
  .cards--2 { grid-template-columns: 1fr; }
  .method-step { grid-template-columns: 55px 1fr; }
  .method-step p { grid-column: 2; }
  .service { grid-template-columns: 55px 1fr; }
  .service .tag { grid-column: 2; justify-self: start; }
  .profile { max-width: 720px; }
  .portrait-wrap { width: min(64vw, 240px); margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .nav-wrap--onepage { min-height: 76px; gap: .45rem; }
  .site-header .brand { gap: .5rem; }
  .site-header .brand img { width: 38px; height: 38px; }
  .site-header .brand-copy strong { font-size: 1.22rem; letter-spacing: .025em; white-space: nowrap; }
  .site-header .brand-copy span { display: none; }
  .header-contact.btn { width: auto; min-height: 44px; padding: .62rem .78rem; font-size: .68rem; letter-spacing: .025em; }
  .header-contact__desktop { display: none; }
  .header-contact__mobile { display: inline; }
  .quick-access { padding: 1.15rem 0; }
  .quick-access__links { gap: .55rem; }
  .quick-access__links a { min-height: 56px; padding: .65rem .45rem; font-size: .96rem; }
  .section { padding: 4rem 0; }
  .display { font-size: clamp(2.35rem, 13vw, 4rem); }
  .hero-art { min-height: 315px; }
  .hero-seal { width: 104px; height: 104px; font-size: .75rem; }
  .actions { display: grid; }
  .btn { width: 100%; }
  .card { min-height: 225px; }
  .service { padding: 1.2rem; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .legal { display: grid; }
}

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

@media print {
  .site-header, .whatsapp-float, .actions { display: none !important; }
  body { color: #111; background: #fff; }
  .card, .quote, .cta, .service { color: #111; border-color: #999; background: #fff; box-shadow: none; }
  .subtitle, .prose, .card p, .service p { color: #333; }
}
