:root {
  --bg: #09090b;
  --panel: rgba(16, 17, 20, 0.92);
  --panel-2: rgba(19, 20, 23, 0.88);
  --text: #f5f2ec;
  --muted: #cbc1b3;
  --line: rgba(215, 181, 122, 0.18);
  --line-strong: rgba(215, 181, 122, 0.36);
  --gold: #d7b57a;
  --gold-soft: #ecd5ab;
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
  --radius: 28px;
  --container: min(1200px, calc(100vw - 48px));
  --header-height: 92px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 14px);
}
body,
body *:not(svg):not(path) {
  font-family: 'Montserrat', Calibri, 'Segoe UI', Arial, sans-serif !important;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(201, 164, 102, 0.10), transparent 24%),
    linear-gradient(180deg, #060607 0%, #0c0d10 58%, #09090b 100%);
  color: var(--text);
  line-height: 1.65;
}
p, li, .hero-copy, .practice-copy p, .method-copy p, .agenda-point p, .contact-item strong, .footer-copy, .firma-card p, .content-card p, .section-head p, .method-intro p, .agenda-intro p {
  text-align: justify;
  text-wrap: pretty;
  hyphens: auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: calc(var(--header-height) + 14px); }
.container { width: var(--container); margin: 0 auto; }

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 80%);
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(8,8,10,.90), rgba(8,8,10,.22));
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.header.scrolled {
  background: rgba(9, 9, 11, 0.94);
  border-color: rgba(215, 181, 122, 0.12);
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  width: 188px;
  max-width: 44vw;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav a:hover { color: var(--gold-soft); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5,5,6,.92) 0%, rgba(5,5,6,.62) 42%, rgba(5,5,6,.38) 100%),
    linear-gradient(180deg, rgba(5,5,6,.08) 0%, rgba(5,5,6,.60) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 122px;
  padding-bottom: 74px;
}
.eyebrow,
.section-tag,
.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before,
.section-tag::before,
.card-kicker::before {
  content: '';
  width: 42px;
  height: 1px;
  background: rgba(215,181,122,.8);
}
.hero h1,
h1,
h2,
h3,
strong,
.footer-brand,
blockquote {
  font-family: 'Montserrat', Calibri, 'Segoe UI', Arial, sans-serif !important;
}
.hero h1 {
  margin: 0 0 22px;
  max-width: 860px;
  font-size: clamp(2.5rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.04em;
}
.hero-copy {
  max-width: 700px;
  margin: 0 0 34px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.84);
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
}
.hero-meta strong { font-weight: 600; }
.hero-meta span {
  width: 34px;
  height: 1px;
  background: rgba(215,181,122,.52);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #d7b57a, #f0d6aa);
  color: #18130d;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
}
.btn-secondary:hover { background: rgba(215,181,122,.07); }

.section { padding: 112px 0; }
.section-dark { background: linear-gradient(180deg, rgba(10,10,12,.96), rgba(8,8,10,.96)); }
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.firma-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
}
.firma-card,
.content-card,
.practice-panel,
.agenda-panel,
.booking-card,
.contact-card,
.social-grid a,
.map-card,
.method-step,
.method-visual {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.firma-card,
.content-card,
.agenda-panel,
.booking-card,
.contact-card {
  border-radius: var(--radius);
  padding: 36px;
}
.firma-card--accent h2,
.content-card h2,
.firma-card h3,
.section-head h2,
.method-intro h2,
.agenda-intro h2,
.contact-section h2 {
  margin: 0 0 18px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.04em;
}
.firma-card--accent h2 { font-size: clamp(1.8rem, 3.1vw, 2.6rem); }
.firma-card h3 { font-size: clamp(1.7rem, 2.8vw, 2.45rem); }
.section-head h2,
.method-intro h2,
.agenda-intro h2,
.contact-section h2,
.content-card h2 { font-size: clamp(1.55rem, 2.4vw, 2.25rem); }
.firma-card p,
.content-card p,
.section-head p,
.method-intro p,
.agenda-intro p,
.agenda-point p,
.contact-section p,
.contact-item strong,
.footer-copy,
.practice-copy p,
.method-copy p {
  color: var(--muted);
}
.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.trust-ribbon div {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 12px;
  text-align: center;
  background: rgba(255,255,255,.02);
}
.trust-ribbon span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 30px;
  align-items: center;
}
.media-card,
.content-card {
  border-radius: 30px;
  overflow: hidden;
}
.media-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.88);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.section-head {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head .section-tag {
  justify-content: center;
}
.practice-panel {
  border-radius: 30px;
  padding: 34px;
}
.practice-list {
  display: grid;
  gap: 0;
}
.practice-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 26px 0;
  border-top: 1px solid rgba(215,181,122,.22);
}
.practice-row:first-child { padding-top: 6px; border-top: 0; }
.practice-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.practice-icon svg,
.method-step-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.practice-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
}
.practice-copy p {
  margin: 0;
  max-width: 800px;
}
.practice-footer {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: end;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(215,181,122,.22);
}
.practice-quote p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.03em;
  color: #f1e7d7;
}
.practice-image {
  border-radius: 24px;
  overflow: hidden;
}
.practice-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.method-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}
.method-intro {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 620px;
}
.method-intro h2,
.method-intro p {
  max-width: 560px;
}
.method-visual {
  border-radius: 28px;
  overflow: hidden;
  margin-top: 28px;
}
.method-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.method-steps {
  display: grid;
  gap: 0;
}
.method-step {
  display: grid;
  grid-template-columns: 90px 92px 1fr;
  gap: 18px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(215,181,122,.22);
  background: transparent;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
}
.method-step:first-child { padding-top: 8px; }
.method-step:last-child { padding-bottom: 8px; }
.method-number {
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.03em;
}
.method-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(215,181,122,.34);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.02em;
}
.method-copy p { margin: 0; }

.agenda-shell {
  display: grid;
  gap: 34px;
}
.agenda-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.agenda-intro .section-tag {
  justify-content: center;
}
.agenda-intro p {
  max-width: 720px;
  margin: 0 auto;
}
.agenda-grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  align-items: start;
}
.agenda-panel {
  border-radius: 28px;
  display: grid;
  gap: 18px;
  padding: 34px;
}
.agenda-point {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.agenda-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.agenda-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
}
.booking-card { padding: 34px; }
.booking-form {
  display: grid;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.booking-form label {
  display: grid;
  gap: 10px;
}
.booking-form span,
.contact-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 18px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.booking-form option {
  color: #111111;
  background: #ffffff;
}
.booking-form option:checked,
.booking-form option:hover {
  color: #111111;
  background: #d7b57a;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(255,255,255,.34); }
.booking-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.62) 50%),
    linear-gradient(135deg, rgba(255,255,255,.62) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(215,181,122,.48);
  box-shadow: 0 0 0 4px rgba(215,181,122,.08);
}
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.social-grid a {
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.social-grid a:hover {
  color: var(--gold-soft);
  transform: translateY(-2px);
}
.map-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 390px;
}
.map-card iframe {
  width: 100%;
  min-height: 390px;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.04) saturate(.24) brightness(.86);
}
.contact-card {
  border-radius: 28px;
  padding: 34px;
}
.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-item strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 500;
}
.contact-item a:hover { color: var(--gold-soft); }

.footer {
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.footer-brand {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-copy {
  max-width: 560px;
  margin: 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold-soft); }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-width: 164px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d7b57a, #f0d6aa);
  color: #18130d;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .firma-grid,
  .split-grid,
  .practice-footer,
  .method-layout,
  .agenda-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .practice-row {
    grid-template-columns: 90px 1fr;
  }
  .trust-ribbon { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-height: 82px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(var(--header-height) + 6px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(10,10,12,.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .field-row,
  .form-actions,
  .social-grid,
  .trust-ribbon,
  .method-step {
    grid-template-columns: 1fr;
  }
  .section-head,
  .agenda-intro {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .section-head .section-tag,
  .agenda-intro .section-tag {
    justify-content: flex-start;
  }
  .agenda-intro p {
    margin: 0;
    max-width: none;
  }
  .section { padding: 88px 0; }
  .firma-card,
  .content-card,
  .agenda-panel,
  .booking-card,
  .contact-card,
  .practice-panel { padding: 28px; }
  .practice-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .practice-icon { justify-content: flex-start; }
  .method-step {
    gap: 12px;
  }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root { --container: min(100vw - 28px, 1000px); }
  .hero-content { padding-top: 116px; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 3.1rem); }
  .hero-actions,
  .contact-actions,
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .hero-meta span { width: 1px; height: 20px; }
  .btn,
  .floating-whatsapp { width: 100%; }
  .brand-logo { width: 154px; }
  .media-card img,
  .practice-image img,
  .method-visual img { min-height: 320px; height: 320px; }
  .practice-quote p { font-size: 1.6rem; }
  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }
}
