:root {
  --bg: #070708;
  --bg-soft: #0d0d10;
  --panel: #111116;
  --line: rgba(236, 232, 224, 0.1);
  --line-strong: rgba(236, 232, 224, 0.18);
  --text: #ece8e0;
  --muted: #8e8980;
  --gold: #d4af57;
  --gold-deep: #9a7b2f;
  --gold-soft: rgba(212, 175, 87, 0.14);
  --white: #f5f2ea;
  --wa: #25d366;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --pad: clamp(1.1rem, 3.5vw, 2.5rem);
  --max: 860px;
  --max-wide: 1080px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(212, 175, 87, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(154, 123, 47, 0.06), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.wrap { width: min(var(--max), calc(100% - 2 * var(--pad))); margin-inline: auto; }
.wrap--wide { width: min(var(--max-wide), calc(100% - 2 * var(--pad))); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 8, 0.92);
  backdrop-filter: blur(12px);
}
.nav__brand {
  display: flex; align-items: baseline; gap: 0.55rem;
  font-family: var(--font-display); letter-spacing: 0.08em; text-transform: uppercase;
  color: inherit;
}
.nav__brand strong { font-size: 0.92rem; font-weight: 600; color: var(--gold); }
.nav__brand span {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.28em; color: var(--gold);
}
.nav__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 2.6rem; padding: 0.55rem 1.1rem;
  border: 1px solid transparent; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s, color 0.25s;
}
.btn--gold { background: var(--gold); color: #12110e; }
.btn--gold:hover { background: #e0c378; color: #12110e; }
.btn--wa { background: var(--wa); color: #06210f; }
.btn--wa:hover { filter: brightness(1.08); color: #06210f; }
.btn--ghost {
  background: transparent; border-color: var(--line-strong); color: var(--text);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.breadcrumbs {
  padding: 1.25rem 0 0.25rem;
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted);
}
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/"; margin-left: 0.5rem; color: var(--line-strong);
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--text); }

.hero {
  padding: 1.75rem 0 2rem;
  border-bottom: 1px solid var(--line);
}
.hero__kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 600; line-height: 1.25; letter-spacing: 0.02em;
  color: var(--white);
}
.hero__lead { margin: 0 0 1.5rem; color: var(--muted); max-width: 42rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hero__media {
  margin-top: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--panel);
}
.hero__media img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

.article { padding: 2.5rem 0 1rem; }
.article h2 {
  margin: 2.4rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600; color: var(--white);
}
.article h3 {
  margin: 1.6rem 0 0.7rem;
  font-size: 1.08rem; font-weight: 600; color: var(--gold);
}
.article p { margin: 0 0 1rem; color: var(--text); }
.article ul, .article ol { margin: 0 0 1.2rem; padding-left: 1.2rem; color: var(--text); }
.article li { margin-bottom: 0.45rem; }
.article strong { color: var(--white); font-weight: 600; }

.section-block {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}
.section-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--white);
}
.section-block > p.lead { margin: 0 0 1.5rem; color: var(--muted); }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 0.65rem;
  padding: 0.85rem 1rem;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--white);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+"; display: inline-block; width: 1.2rem; color: var(--gold); font-weight: 700;
}
.faq details[open] summary::before { content: "–"; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); }

.reviews { display: grid; gap: 1rem; }
@media (min-width: 720px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.review p { margin: 0 0 0.85rem; color: var(--text); font-size: 0.95rem; }
.review footer { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); }

.related { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .related { grid-template-columns: repeat(2, 1fr); } }
.related a {
  display: block; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.related a:hover { border-color: var(--gold); background: var(--gold-soft); color: var(--white); }
.related strong { display: block; color: var(--gold); margin-bottom: 0.25rem; font-size: 0.95rem; }
.related span { font-size: 0.88rem; color: var(--muted); }

.cta-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center;
  padding: 1.25rem; margin: 2rem 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft), transparent 70%), var(--panel);
}
.cta-bar p { margin: 0; flex: 1 1 14rem; color: var(--muted); }
.cta-bar strong { color: var(--white); }

.form-card, .map-card, .media-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.form-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
label { display: grid; gap: 0.35rem; font-size: 0.85rem; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  background: var(--bg); color: var(--text);
}
textarea { min-height: 110px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.5rem; }

.map-frame {
  margin-top: 0.85rem; min-height: 280px;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--bg-soft);
}
.map-frame iframe { width: 100%; height: 280px; border: 0; display: block; }
.map-placeholder {
  display: grid; place-items: center; min-height: 280px; padding: 1.5rem; text-align: center;
  color: var(--muted);
}

.hub-grid {
  display: grid; gap: 0.75rem; padding: 1.5rem 0 3rem;
}
@media (min-width: 640px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .hub-grid { grid-template-columns: repeat(3, 1fr); } }
.hub-card {
  display: block; padding: 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--panel); color: var(--text);
}
.hub-card:hover { border-color: var(--gold); }
.hub-card strong { display: block; color: var(--gold); margin-bottom: 0.35rem; }
.hub-card span { font-size: 0.88rem; color: var(--muted); }
.hub-cat {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

.footer {
  margin-top: 2rem; padding: 2rem var(--pad) 3rem;
  border-top: 1px solid var(--line);
  text-align: center; color: var(--muted); font-size: 0.92rem;
}
.footer strong {
  display: block; margin-bottom: 0.35rem;
  font-family: var(--font-display); color: var(--gold); letter-spacing: 0.08em;
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem;
  margin: 1rem 0 0; padding: 0; list-style: none;
}
.footer-links a { color: var(--muted); font-family: var(--font-mono); font-size: 0.72rem; }
.footer-links a:hover { color: var(--gold); }

.seo-figure {
  margin: 1.75rem 0 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.seo-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.seo-figure figcaption {
  padding: 0.65rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.seo-gallery {
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.seo-gallery h2 { margin-top: 0; }
.seo-gallery__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .seo-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
.seo-gallery__grid .seo-figure { margin: 0; }

.sticky-cta {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 30;
  display: flex; flex-direction: column; gap: 0.5rem;
}
@media (max-width: 640px) {
  .sticky-cta { right: 0.75rem; bottom: 0.75rem; }
  .nav__brand span { display: none; }
}
