:root {
  --ink: #f9f4ea;
  --muted: #c9bfd2;
  --bg: #0f0915;
  --bg-soft: #171020;
  --panel: #20162a;
  --panel-2: #2a1d35;
  --gold: #d8b56c;
  --gold-light: #f3db9b;
  --purple: #5b2d79;
  --purple-bright: #8a4db0;
  --line: rgba(216, 181, 108, 0.22);
  --success: #2fa36b;
  --danger: #d26d6d;
  --shadow: 0 24px 70px rgba(0,0,0,.35);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(91,45,121,.28), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(216,181,108,.12), transparent 24%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: rgba(255,255,255,.025); border-block: 1px solid rgba(255,255,255,.05); }
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(2.8rem, 7vw, 6.4rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.2rem, 4.6vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2.3vw, 1.9rem); }
p { margin: 0 0 20px; color: var(--muted); }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 780px; }
.gold { color: var(--gold-light); }
.muted { color: var(--muted); }
.small { font-size: .92rem; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 9999;
  background: var(--gold); color: #18100a; padding: 10px 16px; border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(15,9,21,.82);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.navbar { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: 58px; height: 58px; border-radius: 50%; border: 1px solid var(--line); object-fit: cover; }
.brand-text { display: grid; line-height: 1.05; }
.brand-name { font-family: Georgia, serif; font-size: 1.25rem; color: var(--gold-light); }
.brand-tagline { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 11px 12px; border-radius: 999px; color: #e6dfea; font-size: .91rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(216,181,108,.1); color: var(--gold-light); }
.nav-cta { margin-left: 8px; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--panel); border: 1px solid var(--line); color: var(--ink);
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800; transition: .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1b1208; box-shadow: 0 12px 28px rgba(216,181,108,.18); }
.btn-secondary { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: var(--ink); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-dark { background: #160f1c; color: var(--gold-light); border-color: var(--line); }
.btn-sm { min-height: 42px; padding: 10px 17px; font-size: .9rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero { position: relative; min-height: 780px; display: grid; align-items: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(15,9,21,.98) 0%, rgba(15,9,21,.88) 42%, rgba(15,9,21,.36) 76%, rgba(15,9,21,.62) 100%),
    url('../images/hero.webp') center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 180px;
  background: linear-gradient(transparent, var(--bg));
}
.hero-inner { position: relative; z-index: 1; padding: 105px 0 120px; }
.hero-copy { max-width: 760px; }
.hero-copy h1 span { color: var(--gold-light); }
.hero-copy .lead { max-width: 660px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 14px; border-radius: 999px; background: rgba(15,9,21,.62);
  border: 1px solid rgba(255,255,255,.11); color: #e5dce9; font-size: .9rem;
}
.trust-pill::before { content: "✦"; color: var(--gold); }

.page-hero { padding: 110px 0 70px; border-bottom: 1px solid rgba(255,255,255,.06); }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); max-width: 950px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .88rem; margin-bottom: 24px; }
.breadcrumbs a:hover { color: var(--gold-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.card-body { padding: 26px; }
.card p:last-child { margin-bottom: 0; }
.card-image { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.card-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px; color: #1b1208; font-size: 1.25rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.service-card { transition: .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: var(--line); }
.service-card .card-body { min-height: 240px; display: flex; flex-direction: column; }
.service-card .learn { margin-top: auto; color: var(--gold-light); font-weight: 800; }

.image-frame { border-radius: 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame.portrait { aspect-ratio: 4/5; }
.image-frame.landscape { aspect-ratio: 16/11; }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.stat { padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(216,181,108,.05); }
.stat strong { display: block; color: var(--gold-light); font-family: Georgia, serif; font-size: 1.5rem; }
.stat span { color: var(--muted); font-size: .85rem; }

.feature-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.feature-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; color: var(--muted); }
.feature-list li::before { content: "✓"; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(216,181,108,.12); color: var(--gold-light); font-weight: 900; }

.quote-card { padding: 28px; }
.quote-card blockquote { margin: 0 0 20px; color: #eee7f1; font-family: Georgia, serif; font-size: 1.15rem; line-height: 1.7; }
.quote-card cite { color: var(--gold-light); font-style: normal; font-weight: 800; }
.quote-card small { display: block; color: var(--muted); margin-top: 5px; }
.sample-label { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(216,181,108,.12); color: var(--gold-light); font-size: .74rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.notice { padding: 18px 20px; border-radius: 16px; border: 1px solid rgba(216,181,108,.25); background: rgba(216,181,108,.06); color: #dfd5e3; margin-bottom: 28px; }
.notice strong { color: var(--gold-light); }

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { counter-increment: steps; padding: 28px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); background: var(--panel); }
.step::before { content: "0" counter(steps); color: var(--gold); font-family: Georgia,serif; font-size: 2rem; display: block; margin-bottom: 22px; }

.cta-panel {
  padding: clamp(34px, 6vw, 70px); border-radius: 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216,181,108,.2), transparent 36%),
    linear-gradient(135deg, #2a1738, #160f1c);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.cta-panel .lead { max-width: 680px; }

.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.03); overflow: hidden; }
.faq-question { width: 100%; text-align: left; background: transparent; border: 0; color: var(--ink); padding: 20px 58px 20px 22px; font-weight: 800; position: relative; }
.faq-question::after { content: "+"; position: absolute; right: 22px; top: 16px; color: var(--gold-light); font-size: 1.5rem; }
.faq-item.open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 20px; }
.faq-item.open .faq-answer { display: block; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); color: #ded5e2; font-size: .88rem; }

.form-card { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { color: #f0e7f4; font-weight: 700; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%; border-radius: 13px; border: 1px solid rgba(255,255,255,.12); background: #140d1b; color: var(--ink); padding: 13px 14px; outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,181,108,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.form-status { min-height: 28px; margin-top: 12px; color: var(--gold-light); }
.contact-list { display: grid; gap: 14px; margin-top: 26px; }
.contact-item { padding: 18px; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.contact-item strong { display: block; color: var(--gold-light); margin-bottom: 4px; }

.location-card { padding: 28px; }
.location-card h3 { color: var(--gold-light); }
.location-card .region { text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-size: .72rem; font-weight: 800; }

.blog-card .card-body { min-height: 250px; display: flex; flex-direction: column; }
.blog-meta { color: var(--gold-light); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.blog-card .learn { margin-top: auto; color: var(--gold-light); font-weight: 800; }
.article { font-size: 1.05rem; }
.article h2 { margin-top: 54px; font-size: clamp(1.8rem,4vw,2.8rem); }
.article h3 { margin-top: 34px; }
.article ul { color: var(--muted); }
.article li { margin-bottom: 10px; }
.article .callout { margin: 32px 0; padding: 24px; border-left: 3px solid var(--gold); background: rgba(216,181,108,.06); border-radius: 0 14px 14px 0; }

.legal h2 { margin-top: 44px; font-size: 2rem; }
.legal ul { color: var(--muted); }
.legal li { margin-bottom: 10px; }

.site-footer { padding: 72px 0 26px; border-top: 1px solid rgba(255,255,255,.07); background: #0b0710; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 34px; }
.footer-title { color: var(--gold-light); font-weight: 900; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 28px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.07); color: #988da0; font-size: .84rem; }
.disclaimer { color: #9f94a7; font-size: .82rem; max-width: 760px; margin-top: 18px; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: white; box-shadow: 0 16px 35px rgba(0,0,0,.35);
  border: 3px solid rgba(255,255,255,.85); font-weight: 900; font-size: 1.2rem;
}
.whatsapp-float:hover { transform: translateY(-3px); }

.cookie-note { display: none; }

@media (max-width: 1050px) {
  .nav-links {
    position: fixed; inset: 84px 0 auto; max-height: calc(100vh - 84px); overflow: auto;
    display: none; flex-direction: column; align-items: stretch; padding: 20px;
    background: rgba(15,9,21,.98); border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; }
  .nav-cta { margin: 8px 0 0; }
  .menu-toggle { display: block; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .hero { min-height: 700px; }
  .hero::before { background: linear-gradient(180deg, rgba(15,9,21,.92), rgba(15,9,21,.78)), url('../images/hero.webp') center/cover no-repeat; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(calc(100% - 26px), var(--container)); }
  .navbar { height: 74px; }
  .nav-links { inset: 74px 0 auto; max-height: calc(100vh - 74px); }
  .brand img { width: 48px; height: 48px; }
  .brand-name { font-size: 1.05rem; }
  .brand-tagline { display: none; }
  .hero-inner { padding: 78px 0 110px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}
