:root {
  --gold-50: #fffaf0;
  --gold-100: #f9edcf;
  --gold-200: #efd49b;
  --gold-300: #dfb55d;
  --gold-400: #c99135;
  --gold-500: #a96f22;
  --gold-600: #87551a;
  --ink-950: #121212;
  --ink-900: #191919;
  --ink-800: #282725;
  --ink-700: #3d3b37;
  --ink-600: #5c5953;
  --ink-500: #747069;
  --line: rgba(31, 27, 22, .12);
  --surface: #ffffff;
  --surface-alt: #f7f5f1;
  --surface-deep: #1a1917;
  --text: #24231f;
  --muted: #69655e;
  --header: rgba(255, 255, 255, .86);
  --shadow-sm: 0 8px 24px rgba(41, 34, 24, .08);
  --shadow-md: 0 20px 55px rgba(41, 34, 24, .13);
  --shadow-lg: 0 35px 90px rgba(24, 20, 15, .22);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 78px;
  --promo-height: 38px;
  --site-header-height: calc(var(--header-height) + var(--promo-height));
  color-scheme: light;
}

html[data-theme="dark"] {
  --surface: #181816;
  --surface-alt: #22211e;
  --surface-deep: #0e0e0d;
  --text: #f5f0e7;
  --muted: #b9b2a6;
  --line: rgba(255, 255, 255, .12);
  --header: rgba(20, 20, 18, .88);
  --gold-50: #2b251c;
  --gold-100: #3b3021;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .22);
  --shadow-md: 0 20px 55px rgba(0, 0, 0, .34);
  --shadow-lg: 0 35px 90px rgba(0, 0, 0, .48);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--site-header-height) + 24px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: Tahoma, "Segoe UI", Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.28; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 5vw, 4.7rem); margin-bottom: 24px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.25rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.08rem, 2vw, 1.4rem); margin-bottom: 10px; }
p { color: var(--muted); }
ul, ol { margin-top: 0; }
::selection { background: var(--gold-300); color: var(--ink-950); }
:focus-visible { outline: 3px solid var(--gold-300); outline-offset: 4px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.narrow-wide { width: min(calc(100% - 40px), 1000px); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; position: relative; }
.section-soft { background: var(--surface-alt); }
.section-dark {
  background:
    radial-gradient(circle at 10% 0, rgba(201, 145, 53, .18), transparent 34%),
    radial-gradient(circle at 90% 100%, rgba(169, 111, 34, .13), transparent 32%),
    var(--surface-deep);
  color: #fff;
}
.section-dark p { color: #c9c3b8; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 9px; background: currentColor; }
.eyebrow.light { color: #efc16f; }
.section-heading { margin-bottom: clamp(34px, 5vw, 60px); }
.section-heading p { max-width: 720px; margin-bottom: 0; }
.section-heading.centered { max-width: 790px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr); gap: 56px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }

.skip-link { position: fixed; z-index: 10000; top: 12px; right: 12px; transform: translateY(-160%); background: var(--ink-950); color: #fff; padding: 10px 16px; border-radius: 10px; transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.promo-bar {
  position: relative;
  isolation: isolate;
  height: var(--promo-height);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 24%, rgba(255,255,255,.1) 50%, transparent 76%),
    linear-gradient(135deg, #8d5918, #c28a31 48%, #8a5516);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.promo-bar::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 50% -120%, rgba(255,255,255,.34), transparent 58%);
  pointer-events: none;
}
.promo-viewport { height: 100%; overflow: hidden; direction: ltr; }
.promo-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: promoTickerLTR 22s linear infinite;
}
.promo-item {
  flex: 0 0 auto;
  min-width: max-content;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: clamp(34px, 5vw, 76px);
  direction: rtl;
  color: #fff;
  font-size: clamp(.76rem, 1.25vw, .86rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .005em;
  white-space: nowrap;
  text-shadow: 0 1px 10px rgba(55,31,3,.28);
}
.promo-item strong { color: #fff3ce; font-weight: 900; }
.promo-spark {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff1c0;
  flex: 0 0 auto;
}
.promo-bar:hover .promo-track,
.promo-bar:focus-within .promo-track { animation-play-state: paused; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--site-header-height);
  background: var(--header);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; }
.brand span { display: grid; line-height: 1.28; }
.brand strong { font-size: 1.05rem; }
.brand small { color: var(--muted); font-size: .72rem; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: 6px; margin-inline: auto; }
.primary-nav a { padding: 10px 14px; border-radius: 11px; color: var(--muted); font-weight: 700; font-size: .9rem; transition: .2s ease; }
.primary-nav a:hover, .primary-nav a.is-active, .primary-nav a[aria-current="page"] { color: var(--text); background: var(--gold-50); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button, .menu-toggle { width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); display: grid; place-items: center; cursor: pointer; transition: .2s ease; }
.icon-button:hover, .menu-toggle:hover { transform: translateY(-2px); border-color: var(--gold-300); }
.icon { width: 21px; height: 21px; flex: 0 0 auto; }
.large-icon { width: 46px; height: 46px; }
.huge-icon { width: 96px; height: 96px; }
.menu-toggle { display: none; }

@keyframes promoTickerLTR {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.button {
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: .93rem;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #fff; box-shadow: 0 14px 30px rgba(169, 111, 34, .25); }
.button-primary:hover { box-shadow: 0 20px 42px rgba(169, 111, 34, .34); }
.button-secondary { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .35); backdrop-filter: blur(10px); }
.page-hero .button-secondary, .article-hero .button-secondary, .content-callout:not(.dark-callout) .button-secondary, .article-conclusion .button-secondary { background: var(--surface); color: var(--text); border-color: var(--line); backdrop-filter: none; }
.button-outline { background: transparent; border-color: var(--line); color: var(--text); }
.button-outline:hover { border-color: var(--gold-400); background: var(--gold-50); }
.button-sm { min-height: 43px; padding: 9px 18px; font-size: .84rem; }
.button-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-500); font-weight: 800; }
.text-link .icon { width: 18px; transition: transform .2s; }
.text-link:hover .icon { transform: translateX(-4px); }
.light-link { color: #f0c77e; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions.compact { margin-top: 22px; }

.hero {
  min-height: min(860px, calc(100svh - var(--site-header-height)));
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  background: #17130f var(--hero-image) center/cover no-repeat;
  color: #fff;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12, 10, 8, .94) 0%, rgba(12, 10, 8, .75) 48%, rgba(12, 10, 8, .38) 100%), linear-gradient(0deg, rgba(12, 10, 8, .3), transparent 42%); }
.hero-content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .56fr); gap: clamp(42px, 8vw, 110px); align-items: center; padding-block: clamp(80px, 11vw, 148px); }
.hero-copy { max-width: 790px; }
.hero-copy h1 { max-width: 850px; }
.hero-copy > p { max-width: 680px; color: #ddd6c9; font-size: clamp(1rem, 1.7vw, 1.2rem); }
.hero-trust { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 18px; color: #ded6c8; font-size: .86rem; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust .icon { color: #efbd64; width: 18px; }
.hero-panel { padding: 30px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .18); box-shadow: var(--shadow-lg); backdrop-filter: blur(18px); }
.hero-panel h2 { font-size: clamp(1.35rem, 2.3vw, 1.9rem); }
.panel-badge { display: inline-block; margin-bottom: 12px; padding: 7px 11px; border-radius: 999px; background: rgba(239, 193, 111, .15); color: #efc16f; font-size: .76rem; font-weight: 800; }
.hero-panel ol { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 16px; }
.hero-panel li { display: flex; align-items: center; gap: 13px; color: #ece7de; }
.hero-panel li strong { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(239, 193, 111, .16); color: #efc16f; }

.trust-strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 26px 24px; text-align: center; border-inline-start: 1px solid var(--line); display: grid; gap: 2px; }
.trust-grid > div:last-child { border-inline-end: 1px solid var(--line); }
.trust-grid strong { color: var(--gold-500); font-size: 1.18rem; }
.trust-grid span { color: var(--muted); font-size: .82rem; }

.cards-grid { display: grid; gap: 25px; }
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .article-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover, .article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(201, 145, 53, .38); }
.card-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: linear-gradient(135deg, var(--gold-100), var(--surface-alt)); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card-media:hover img { transform: scale(1.045); }
.media-fallback { position: absolute; inset: 0; display: none; place-items: center; color: var(--gold-500); background: linear-gradient(135deg, var(--gold-100), var(--surface-alt)); }
.card-media.is-fallback img, .hero-visual.is-fallback img { display: none; }
.card-media.is-fallback .media-fallback, .hero-visual.is-fallback .media-fallback { display: grid; }
.card-content { position: relative; padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card-content h3 { margin-top: 4px; }
.card-content h3 a { transition: color .2s; }
.card-content h3 a:hover { color: var(--gold-500); }
.card-content p { font-size: .91rem; flex: 1; }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-top: -48px; margin-bottom: 15px; border-radius: 13px; background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #fff; border: 4px solid var(--surface); box-shadow: var(--shadow-sm); }
.card-icon .icon { width: 20px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 11px; color: var(--muted); font-size: .75rem; font-weight: 700; }
.article-meta span { display: inline-flex; align-items: center; }
.article-meta span + span::before { content: "•"; margin-inline-end: 12px; color: var(--gold-400); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.featured-articles-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 145, 53, .15), transparent 30%),
    linear-gradient(180deg, var(--surface-alt), var(--surface));
  border-bottom: 1px solid var(--line);
}
.featured-heading, .blog-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 52px);
}
.featured-heading > div:first-child, .blog-archive-heading > div:first-child { max-width: 760px; }
.featured-heading h2, .blog-archive-heading h2 { margin-bottom: 10px; }
.featured-heading p, .blog-archive-heading p { margin: 0; }
.featured-controls { display: flex; gap: 10px; direction: rtl; }
.featured-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.featured-controls button:hover, .featured-controls button:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: var(--gold-500);
  background: var(--gold-500);
}
.featured-controls .icon { width: 20px; height: 20px; }
.featured-carousel { min-width: 0; }
.featured-articles-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  padding: 8px 4px 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.featured-articles-track::-webkit-scrollbar { display: none; }
.featured-article-card {
  scroll-snap-align: start;
  height: 100%;
  border-color: rgba(201, 145, 53, .28);
  box-shadow: 0 20px 48px rgba(29, 23, 15, .11);
}
.featured-article-card .card-media { aspect-ratio: 16 / 10; }
.featured-badge {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: #fff;
  background: rgba(21, 18, 14, .82);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 900;
}
.featured-carousel-footer {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.featured-dots { display: flex; align-items: center; gap: 7px; }
.featured-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--muted) 38%, transparent);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}
.featured-dots button[aria-current="true"] { width: 28px; background: var(--gold-500); }
.carousel-hint { color: var(--muted); font-size: .76rem; }

.blog-listing-section { background: var(--surface); }
.archive-range {
  align-self: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-alt);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}
.blog-grid { align-items: stretch; }
.blog-grid .article-card { height: 100%; border-radius: 24px; }
.blog-grid .card-media { aspect-ratio: 16 / 10; }
.blog-grid .card-content { padding: 24px; }
.blog-grid .card-content h3 { font-size: clamp(1.08rem, 1.5vw, 1.27rem); line-height: 1.55; }
.blog-grid .card-content p { color: var(--muted); line-height: 1.85; }
.blog-grid .article-meta { line-height: 1.7; }
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}
.blog-card-footer .text-link { font-size: .82rem; }
.blog-card-footer .icon { width: 17px; height: 17px; }
.article-card:focus-within { outline: 3px solid rgba(201, 145, 53, .25); outline-offset: 3px; }

.blog-pagination {
  display: grid;
  grid-template-columns: minmax(108px, 1fr) auto minmax(108px, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: clamp(38px, 6vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pagination-numbers { display: flex; justify-content: center; gap: 8px; direction: ltr; }
.pagination-number, .pagination-direction {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface);
  font-size: .84rem;
  font-weight: 850;
  transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease;
}
.pagination-number:hover, .pagination-direction:hover,
.pagination-number:focus-visible, .pagination-direction:focus-visible {
  transform: translateY(-2px);
  color: var(--gold-500);
  border-color: var(--gold-400);
}
.pagination-number.is-current {
  color: #fff;
  border-color: var(--gold-500);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  box-shadow: 0 10px 24px rgba(169, 111, 34, .22);
}
.pagination-direction:first-child { justify-self: start; }
.pagination-direction:last-child { justify-self: end; }
.pagination-direction .icon { width: 18px; height: 18px; }
.pagination-direction.is-disabled { opacity: .38; cursor: not-allowed; }

@media (max-width: 1060px) {
  .featured-articles-track { grid-auto-columns: calc((100% - 22px) / 2); gap: 22px; }
}

@media (max-width: 700px) {
  .featured-heading, .blog-archive-heading { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .featured-controls { justify-content: flex-start; }
  .featured-articles-track { grid-auto-columns: min(88%, 360px); gap: 16px; padding-inline: 2px; }
  .featured-carousel-footer { align-items: flex-start; flex-direction: column; }
  .carousel-hint { display: none; }
  .archive-range { justify-self: start; }
  .blog-pagination { grid-template-columns: 1fr 1fr; gap: 15px; }
  .pagination-numbers { grid-column: 1 / -1; grid-row: 1; }
  .pagination-direction:first-child { grid-column: 1; grid-row: 2; }
  .pagination-direction:last-child { grid-column: 2; grid-row: 2; }
  .pagination-direction { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .featured-articles-track { scroll-behavior: auto; }
  .featured-controls button, .featured-dots button, .pagination-number, .pagination-direction { transition: none; }
}

.quality-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 8vw, 100px); align-items: center; }
.quality-copy h2 { color: #fff; }
.quality-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.quality-grid article { padding: 26px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 20px; background: rgba(255, 255, 255, .055); }
.quality-grid article > .icon { color: #efc16f; width: 29px; height: 29px; margin-bottom: 18px; }
.quality-grid h3 { color: #fff; }
.quality-grid p { margin: 0; font-size: .87rem; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process-grid li { position: relative; padding: 28px 24px; border-radius: 20px; background: var(--surface-alt); border: 1px solid var(--line); }
.process-grid li > span { display: block; margin-bottom: 28px; color: var(--gold-400); font-size: 1.35rem; font-weight: 900; }
.process-grid p { margin: 0; font-size: .88rem; }
.areas-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(38px, 7vw, 84px); align-items: center; }
.area-map-card { padding: clamp(30px, 5vw, 48px); border-radius: var(--radius-lg); color: #fff; background: linear-gradient(145deg, #2c251c, #171512); box-shadow: var(--shadow-lg); }
.area-map-card .large-icon { color: #efc16f; margin-bottom: 26px; }
.area-map-card p { color: #ccc4b7; }

.page-hero { padding: clamp(64px, 9vw, 120px) 0; overflow: hidden; background: linear-gradient(135deg, var(--surface-alt), var(--gold-50)); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(330px, .72fr); align-items: center; gap: clamp(44px, 8vw, 105px); }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
.page-hero p { max-width: 720px; font-size: 1.05rem; }
.compact-hero { padding-top: 60px; }
.hero-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--gold-100), var(--surface-alt)); box-shadow: var(--shadow-lg); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .media-fallback { display: none; }
.hero-visual .visual-badge { position: absolute; bottom: 18px; right: 18px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: 12px; background: rgba(19, 17, 14, .88); color: #fff; font-size: .82rem; font-weight: 800; backdrop-filter: blur(10px); }
.editorial-visual { display: grid; grid-template-columns: 1fr 1fr; place-items: center; padding: 32px; color: var(--gold-500); }
.editorial-visual > .huge-icon { grid-column: 1 / -1; }
.editorial-visual div { text-align: center; display: grid; }
.editorial-visual strong { font-size: 2rem; color: var(--text); }
.editorial-visual span { color: var(--muted); font-size: .8rem; }
.breadcrumbs { padding-block: 18px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: .8rem; }
.breadcrumbs a:hover { color: var(--gold-500); }

.service-facts { border-bottom: 1px solid var(--line); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.facts-grid > div { padding: 24px 20px; display: grid; grid-template-columns: 32px 1fr; align-items: center; column-gap: 10px; border-inline-start: 1px solid var(--line); }
.facts-grid > div:last-child { border-inline-end: 1px solid var(--line); }
.facts-grid .icon { grid-row: 1 / 3; color: var(--gold-500); }
.facts-grid strong { font-size: .88rem; }
.facts-grid span { color: var(--muted); font-size: .75rem; }
.two-column-content { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr); gap: clamp(46px, 8vw, 100px); align-items: start; }
.check-list, .quality-checks, .light-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 13px; }
.check-list li, .quality-checks li, .light-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list .icon, .quality-checks .icon, .light-list .icon { color: var(--gold-400); margin-top: 5px; width: 18px; }
.info-card { position: sticky; top: calc(var(--header-height) + 24px); padding: 30px; border-radius: var(--radius-md); background: var(--surface-alt); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.info-card ul { padding-right: 20px; color: var(--muted); font-size: .9rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefits-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.benefits-grid article > span { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 22px; border-radius: 12px; background: var(--gold-50); color: var(--gold-500); font-weight: 900; }
.benefits-grid p { margin: 0; font-size: .87rem; }
.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 8vw, 100px); align-items: start; }
.sticky-intro { position: sticky; top: calc(var(--header-height) + 24px); }
.vertical-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 15px; }
.vertical-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 24px; border-radius: 18px; background: var(--surface-alt); border: 1px solid var(--line); }
.vertical-steps li > span { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); font-weight: 900; }
.vertical-steps p { margin: 0; font-size: .88rem; }
.quality-checks { margin: 0; grid-template-columns: repeat(2, 1fr); }
.quality-checks li { padding: 19px; border-radius: 15px; background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .1); color: #e7e0d5; }
.prose-intro { max-width: 930px; }
.prose-intro > p { font-size: 1.02rem; }
.note-box { margin-top: 30px; padding: 24px; border-radius: 18px; background: var(--gold-50); border: 1px solid rgba(201, 145, 53, .25); display: flex; gap: 16px; }
.note-box > .icon { color: var(--gold-500); width: 28px; }
.note-box p { margin: 4px 0 0; }
.related-grid .service-card:nth-child(n+4), .related-articles .article-card:nth-child(n+3) { display: none; }

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 56px 21px 22px; position: relative; font-weight: 800; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 15px; height: 2px; background: var(--gold-500); transition: transform .22s; }
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item > div { padding: 0 22px 20px; }
.faq-item p { margin: 0; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 17px 20px; text-align: right; border-bottom: 1px solid var(--line); }
thead th { background: var(--surface-alt); font-size: .82rem; }
tbody th { color: var(--text); }
td { color: var(--muted); font-size: .9rem; }
td a { color: var(--gold-500); font-weight: 800; }
.content-callout { padding: clamp(32px, 5vw, 58px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface-alt); display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.content-callout > div { max-width: 680px; }
.content-callout .large-icon { color: var(--gold-500); margin-bottom: 20px; }
.dark-callout { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.05); }
.dark-callout h2 { color: #fff; }

.article-hero { padding: clamp(54px, 8vw, 104px) 0; background: linear-gradient(135deg, var(--surface-alt), var(--gold-50)); border-bottom: 1px solid var(--line); }
.article-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr); gap: clamp(45px, 8vw, 100px); align-items: center; }
.article-hero h1 { font-size: clamp(2.2rem, 4.8vw, 4.25rem); }
.article-hero p { font-size: 1.05rem; }
.hero-meta { margin-bottom: 16px; }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.article-layout { display: grid; grid-template-columns: 290px minmax(0, 760px); justify-content: center; gap: clamp(50px, 8vw, 100px); padding-block: clamp(72px, 9vw, 120px); align-items: start; }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 26px); display: grid; gap: 18px; }
.toc, .sidebar-contact { padding: 24px; border-radius: 18px; border: 1px solid var(--line); background: var(--surface-alt); }
.toc h2 { font-size: 1rem; margin-bottom: 16px; }
.toc ol { padding-right: 20px; margin: 0; display: grid; gap: 9px; color: var(--muted); font-size: .82rem; }
.toc a:hover { color: var(--gold-500); }
.toc .toc-subitem { margin-right: 16px; list-style: none; font-size: .76rem; }
.toc .toc-subitem::before { content: "—"; margin-left: 7px; color: var(--gold-400); }
.sidebar-contact { background: linear-gradient(145deg, #28221a, #171512); color: #fff; }
.sidebar-contact p { color: #cfc8bc; font-size: .84rem; }
.sidebar-contact a { color: #efc16f; font-weight: 800; }
.article-prose { min-width: 0; }
.article-prose .lead-paragraph { padding: 25px 28px; margin-bottom: 42px; border-right: 4px solid var(--gold-400); border-radius: 14px 0 0 14px; background: var(--gold-50); color: var(--text); font-size: 1.08rem; font-weight: 600; }
.article-prose > section { scroll-margin-top: calc(var(--header-height) + 25px); margin-bottom: 54px; }
.article-prose h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); margin-bottom: 20px; }
.article-prose h3 { margin: 30px 0 12px; color: var(--text); font-size: clamp(1.18rem, 2vw, 1.48rem); }
.article-prose p { font-size: 1.02rem; line-height: 2; }
.article-list { margin: 24px 0 0; padding-right: 24px; display: grid; gap: 10px; color: var(--muted); }
.article-list li::marker { color: var(--gold-400); }
.article-steps li { padding-right: 6px; }
.article-faq { margin-top: 24px; }
.inline-cta { margin: 48px 0; padding: 30px; border-radius: 22px; background: linear-gradient(145deg, #2c251c, #161411); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.inline-cta h2 { color: #fff; font-size: 1.35rem; margin: 8px 0; }
.inline-cta p { color: #cfc8bc; margin: 0; font-size: .9rem; }
.inline-cta .large-icon { color: #efc16f; }
.article-conclusion { padding: 34px; border: 1px solid rgba(201, 145, 53, .25); border-radius: 24px; background: var(--gold-50); }
.article-conclusion p { color: var(--muted); }

.contact-section { background: var(--surface-deep); color: #fff; }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(48px, 8vw, 100px); align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: #c9c2b6; }
.contact-card { padding: clamp(26px, 5vw, 44px); border: 1px solid rgba(255, 255, 255, .13); border-radius: var(--radius-lg); background: rgba(255,255,255,.065); backdrop-filter: blur(14px); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-card label { display: grid; gap: 7px; margin-bottom: 17px; color: #e8e2d8; font-size: .82rem; font-weight: 800; }
.contact-card input, .contact-card select, .contact-card textarea { width: 100%; border: 1px solid rgba(255,255,255,.17); border-radius: 13px; background: rgba(0,0,0,.2); color: #fff; padding: 13px 15px; outline: none; }
.contact-card select option { color: #171717; }
.contact-card textarea { min-height: 118px; resize: vertical; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus { border-color: #efc16f; box-shadow: 0 0 0 3px rgba(239,193,111,.14); }
.contact-card .privacy-note { color: #afa89d; font-size: .72rem; margin: 13px 0 0; }
.form-status { min-height: 26px; margin: 10px 0 0; color: #efc16f; font-size: .82rem; }

.reviews-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(201, 145, 53, .12), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(169, 111, 34, .08), transparent 26%),
    var(--surface);
}
.reviews-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 72%, transparent);
}
.reviews-heading { margin-bottom: clamp(30px, 4vw, 48px); }
.reviews-heading > p { margin-inline: auto; }
.reviews-summary {
  width: fit-content;
  margin: 24px auto 0;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}
.reviews-summary strong { color: var(--text); font-size: 1.2rem; line-height: 1; }
.reviews-summary > span:last-child { color: var(--muted); font-size: .76rem; font-weight: 800; }
.google-mark {
  color: transparent;
  background: conic-gradient(from -35deg, #4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
}
.review-stars {
  display: inline-flex;
  color: #f5b500;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;
}
.reviews-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  direction: ltr;
  padding-block: 10px 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: reviewsMarquee 38s linear infinite;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track { animation-play-state: paused; }
.reviews-group {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-inline-end: 18px;
}
.review-card {
  position: relative;
  flex: 0 0 clamp(288px, 30vw, 370px);
  min-height: 316px;
  padding: 26px;
  direction: rtl;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--surface) 95%, var(--gold-50));
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-600));
}
.review-card:hover,
.review-card:focus-visible { transform: translateY(-6px); border-color: rgba(201, 145, 53, .42); box-shadow: var(--shadow-md); }
.review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.review-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--review-avatar, var(--gold-500));
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
  box-shadow: 0 7px 18px color-mix(in srgb, var(--review-avatar, var(--gold-500)) 32%, transparent);
}
.reviewer-meta { min-width: 0; display: grid; line-height: 1.45; }
.reviewer-meta strong { color: var(--text); font-size: .95rem; }
.reviewer-meta small { color: var(--muted); font-size: .72rem; }
.review-google-mark { margin-inline-start: auto; font-size: 1.14rem; }
.review-card > .review-stars { margin-bottom: 18px; }
.review-card blockquote { position: relative; margin: 0; flex: 1; }
.review-card blockquote::before {
  content: "“";
  position: absolute;
  top: -15px;
  left: 0;
  color: var(--gold-200);
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
  opacity: .58;
}
.review-card blockquote p { position: relative; margin: 0; color: var(--text); font-size: .9rem; line-height: 1.9; }
.review-card blockquote strong { color: var(--gold-600); }
.review-card footer {
  margin-top: 22px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
}
.review-check {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-50);
  color: var(--gold-600);
  font-size: .78rem;
}

@keyframes reviewsMarquee {
  to { transform: translateX(-50%); }
}

.map-section { background: var(--surface-alt); }
.map-section .section-heading { max-width: 760px; margin-inline: auto; }
.map-frame { overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-frame iframe { width: 100%; min-height: 460px; border: 0; display: block; }

.site-footer {
  position: relative;
  padding: 0 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 10%, rgba(201, 145, 53, .14), transparent 28%),
    #11110f;
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding-block: 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: #efc16f;
  font-size: .76rem;
  font-weight: 900;
}
.footer-cta h2 { margin-bottom: 8px; color: #fff; font-size: clamp(1.55rem, 3vw, 2.35rem); }
.footer-cta p { max-width: 710px; margin: 0; color: #aaa398; font-size: .9rem; }
.footer-cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px; }
.footer-call-button {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  color: #fff;
}
.footer-call-button:hover { border-color: rgba(239,193,111,.5); background: rgba(239,193,111,.1); }
.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(150px, .72fr) minmax(175px, .82fr) minmax(220px, 1fr);
  gap: clamp(28px, 4vw, 54px);
  padding-block: 52px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand { max-width: 390px; }
.footer-brand p { margin-bottom: 19px; color: #aaa398; font-size: .86rem; }
.footer-logo { display: inline-flex; align-items: center; gap: 13px; margin-bottom: 17px; }
.footer-logo img { width: 54px; height: 54px; }
.footer-logo strong { color: #fff; }
.footer-logo small { color: #aaa398; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-badges span {
  padding: 6px 10px;
  border: 1px solid rgba(239,193,111,.2);
  border-radius: 999px;
  background: rgba(239,193,111,.07);
  color: #d9c7a7;
  font-size: .68rem;
  font-weight: 800;
}
.footer-section h2 {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 11px;
  color: #fff;
  font-size: .94rem;
}
.footer-section h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-400), #efc16f);
}
.footer-section ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: #aaa398; font-size: .8rem; }
.footer-section li a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s, transform .2s; }
.footer-section li a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #87601f; }
.footer-section li a:hover { color: #efc16f; transform: translateX(-3px); }
.footer-contact { display: grid; align-content: start; gap: 9px; }
.footer-contact h2 { margin-bottom: 8px; }
.footer-contact-link,
.footer-location {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
}
.footer-contact-link { transition: border-color .2s, background .2s, transform .2s; }
.footer-contact-link:hover { border-color: rgba(239,193,111,.3); background: rgba(239,193,111,.07); transform: translateY(-2px); }
.footer-contact-link > .icon,
.footer-location > .icon {
  width: 36px;
  height: 36px;
  padding: 9px;
  border-radius: 10px;
  background: rgba(201,145,53,.14);
  color: #efc16f;
}
.footer-contact-link span,
.footer-location span { display: grid; min-width: 0; }
.footer-contact-link small,
.footer-location small { color: #817b71; font-size: .64rem; }
.footer-contact-link strong,
.footer-location strong { overflow-wrap: anywhere; color: #e9e3d9; font-size: .78rem; }
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding-top: 28px;
}
.footer-copyright { margin: 0; color: #777168; font-size: .74rem; }
.dev-signature {
  justify-self: end;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  max-width: 430px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: inherit;
  transition: border-color .2s, background .2s, transform .2s;
}
.dev-signature:hover { border-color: rgba(239,193,111,.28); background: rgba(239,193,111,.065); transform: translateY(-2px); }
.dev-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,193,111,.35);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(239,193,111,.2), rgba(135,85,26,.12));
  color: #efc16f;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 900;
}
.dev-copy { display: grid; min-width: 0; line-height: 1.35; }
.dev-copy > small { color: #817b71; font-size: .52rem; }
.dev-name { margin-block: 2px; color: #f1eadf; font-size: .64rem; font-weight: 900; }
.dev-signature:hover .dev-name { color: #efc16f; }
.dev-roles { color: #8f887f; font-size: .5rem; direction: ltr; text-align: right; }

.mobile-nav { display: none; }
.floating-actions { position: fixed; z-index: 900; left: 20px; bottom: 22px; display: grid; gap: 11px; }
.floating-actions a { width: 53px; height: 53px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 15px 35px rgba(0,0,0,.27); transition: transform .2s; }
.floating-actions a:hover { transform: translateY(-3px) scale(1.03); }
.floating-call { background: linear-gradient(135deg, #2d7fd7, #185aa3); }
.floating-whatsapp { background: linear-gradient(135deg, #35d769, #148d40); }

.smart-assistant {
  position: fixed;
  z-index: 980;
  right: 20px;
  bottom: 22px;
  direction: rtl;
}
.assistant-toggle {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: linear-gradient(145deg, #d9a74d, #94601d);
  color: #fff;
  box-shadow: 0 18px 42px rgba(70,43,11,.38);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
}
.assistant-toggle:hover { transform: translateY(-3px) scale(1.035); box-shadow: 0 22px 50px rgba(70,43,11,.46); }
.assistant-toggle .icon { width: 26px; height: 26px; }
.assistant-toggle-portrait {
  position: absolute;
  inset: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #f2cc83, #8d5918 78%);
}
.assistant-toggle-portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 24%;
  transform: translateY(3px) scale(1.18);
  transform-origin: center 28%;
}
.assistant-pulse {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(217,167,77,.45);
  border-radius: inherit;
  animation: assistantPulse 2.4s ease-out infinite;
}
.assistant-label {
  position: absolute;
  right: 69px;
  bottom: 8px;
  min-width: max-content;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: #171512;
  color: #f5efe5;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  font-size: .7rem;
  font-weight: 900;
  transition: opacity .2s, transform .2s;
}
.smart-assistant.is-open .assistant-label { opacity: 0; transform: translateX(8px); pointer-events: none; }
.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: min(370px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  color: var(--text);
  box-shadow: 0 28px 80px rgba(18,14,9,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .22s, visibility .22s, transform .22s;
  backdrop-filter: blur(18px);
}
.smart-assistant.is-open .assistant-panel { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.assistant-header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 11px;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(239,193,111,.2), transparent 45%),
    #191713;
  color: #fff;
}
.assistant-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239,193,111,.25);
  border-radius: 14px;
  background: rgba(239,193,111,.11);
  color: #efc16f;
  overflow: hidden;
}
.assistant-avatar .icon { width: 23px; height: 23px; }
.assistant-avatar img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 23%;
  transform: translateY(2px) scale(1.2);
  transform-origin: center 28%;
}
.assistant-identity { display: grid; line-height: 1.35; }
.assistant-identity strong { font-size: .84rem; }
.assistant-status { display: inline-flex; align-items: center; gap: 5px; color: #aaa398; font-size: .62rem; }
.assistant-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #35d769; box-shadow: 0 0 0 3px rgba(53,215,105,.12); }
.assistant-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #d8d0c4;
  cursor: pointer;
}
.assistant-close:hover { background: rgba(255,255,255,.13); color: #fff; }
.assistant-close .icon { width: 18px; height: 18px; }
.assistant-body { padding: 17px; }
.assistant-greeting { margin-bottom: 13px; color: var(--muted); font-size: .78rem; }
.assistant-conversation {
  max-height: 236px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(169,111,34,.42) transparent;
  padding-inline-end: 5px;
}
.assistant-conversation::-webkit-scrollbar { width: 5px; }
.assistant-conversation::-webkit-scrollbar-track { background: transparent; }
.assistant-conversation::-webkit-scrollbar-thumb { border-radius: 99px; background: rgba(169,111,34,.38); }
.assistant-options { display: grid; gap: 8px; }
.assistant-option {
  width: 100%;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface-alt);
  color: var(--text);
  text-align: right;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.assistant-option:hover,
.assistant-option.is-selected { border-color: rgba(201,145,53,.42); background: var(--gold-50); transform: translateX(-2px); }
.assistant-option > .icon {
  width: 32px;
  height: 32px;
  padding: 7px;
  border-radius: 9px;
  background: rgba(201,145,53,.12);
  color: var(--gold-500);
}
.assistant-option span { font-size: .75rem; font-weight: 900; }
.assistant-option .assistant-arrow { width: 16px; color: var(--muted); }
.assistant-response {
  margin-top: 12px;
  margin-bottom: 2px;
  padding: 12px;
  border: 1px solid rgba(201,145,53,.22);
  border-radius: 13px;
  background: var(--gold-50);
}
.assistant-response[hidden] { display: none; }
.assistant-response p { margin: 0 0 10px; color: var(--text); font-size: .74rem; line-height: 1.8; }
.assistant-response-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.assistant-response-actions a {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: .68rem;
  font-weight: 900;
}
.assistant-response-actions .assistant-whatsapp { background: #169f4c; color: #fff; }
.assistant-response-actions .assistant-call { border: 1px solid var(--line); background: var(--surface); color: var(--text); }
.assistant-privacy { display: block; margin-top: 11px; color: var(--muted); font-size: .59rem; text-align: center; }

@keyframes assistantPulse {
  0% { opacity: .8; transform: scale(.88); }
  75%, 100% { opacity: 0; transform: scale(1.18); }
}
.not-found { min-height: 72vh; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.not-found span { display: block; color: var(--gold-400); font-size: clamp(5rem, 18vw, 13rem); font-weight: 900; line-height: 1; opacity: .45; }
.not-found p { max-width: 620px; margin-inline: auto; }

@media (max-width: 1060px) {
  .services-grid, .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-content, .page-hero-grid, .article-hero-grid { grid-template-columns: 1fr .68fr; gap: 45px; }
  .hero-panel { padding: 25px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 250px minmax(0, 1fr); gap: 45px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: 680px; }
}

@media (max-width: 850px) {
  :root { --header-height: 68px; --promo-height: 36px; }
  .container, .narrow, .narrow-wide { width: min(calc(100% - 30px), var(--container)); }
  .menu-toggle { display: grid; margin-inline-start: auto; }
  .header-inner { gap: 10px; }
  .primary-nav { position: absolute; top: calc(100% + 8px); right: 15px; left: 15px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-md); display: grid; gap: 4px; opacity: 0; visibility: hidden; transform: translateY(-9px); transition: .2s; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 13px 15px; }
  .desktop-cta { display: none; }
  .hero-content, .page-hero-grid, .article-hero-grid, .quality-layout, .areas-layout, .two-column-content, .process-layout, .contact-layout { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    background-image: url('../images/tile.jpg');
    background-position: 58% center;
  }
  .hero-content { padding-block: 84px; }
  .hero-panel { max-width: 600px; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(12,10,8,.9) 0%, rgba(12,10,8,.78) 48%, rgba(12,10,8,.92) 100%),
      linear-gradient(90deg, rgba(12,10,8,.84), rgba(12,10,8,.48));
  }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .quality-copy { max-width: 720px; }
  .page-hero-grid .hero-visual, .article-hero-grid .hero-visual { max-width: 680px; width: 100%; }
  .info-card, .sticky-intro, .article-sidebar { position: static; }
  .article-layout { grid-template-columns: 1fr; padding-top: 48px; }
  .article-sidebar { grid-template-columns: 1fr 1fr; }
  .toc { grid-column: 1 / -1; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid > div:nth-child(2) { border-inline-end: 1px solid var(--line); }
  .quality-checks { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
  .footer-cta { grid-template-columns: 1fr; gap: 24px; }
  .footer-cta-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-contact h2 { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .dev-signature { justify-self: start; width: min(100%, 430px); }
}

@media (max-width: 620px) {
  body { font-size: 15px; padding-bottom: 72px; }
  h1 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .section { padding: 70px 0; }
  .brand small { display: none; }
  .brand img { width: 40px; height: 40px; }
  .header-actions .icon-button { width: 39px; height: 39px; }
  .hero-content { padding-block: 58px; }
  .hero { background-position: 56% center; }
  .hero-panel { padding: 22px; border-radius: 24px; }
  .hero-actions, .article-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero-actions .button, .article-actions .button { width: 100%; }
  .hero-trust { display: grid; gap: 10px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(2) { border-inline-end: 1px solid var(--line); }
  .services-grid, .article-grid, .quality-grid, .benefits-grid, .process-grid { grid-template-columns: 1fr; }
  .card-content { padding: 23px; }
  .quality-grid article { padding: 22px; }
  .page-hero { padding: 56px 0 70px; }
  .hero-visual { border-radius: 24px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .facts-grid > div { padding: 18px 12px; grid-template-columns: 26px 1fr; }
  .vertical-steps li { grid-template-columns: 46px 1fr; padding: 20px; }
  .vertical-steps li > span { width: 43px; height: 43px; border-radius: 12px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .toc { grid-column: auto; }
  .article-prose .lead-paragraph { padding: 20px; }
  .inline-cta, .content-callout { flex-direction: column; align-items: stretch; }
  .inline-cta .button, .content-callout .hero-actions { width: 100%; }
  .article-conclusion { padding: 25px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .reviews-summary { border-radius: 18px; }
  .reviews-marquee { -webkit-mask-image: none; mask-image: none; }
  .review-card { flex-basis: min(84vw, 340px); min-height: 300px; padding: 23px; }
  .map-frame iframe { min-height: 350px; }
  .site-footer { padding-bottom: 42px; }
  .footer-cta { padding-block: 34px; text-align: center; }
  .footer-cta-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .footer-cta-actions .button { width: 100%; min-width: 0; padding-inline: 11px; font-size: .72rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 22px; padding-block: 42px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-brand { max-width: none; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-badges { justify-content: center; }
  .footer-contact { grid-template-columns: 1fr; }
  .footer-contact h2 { grid-column: auto; }
  .footer-bottom { gap: 18px; padding-top: 22px; }
  .footer-copyright { text-align: center; }
  .dev-signature {
    justify-self: center;
    grid-template-columns: 34px minmax(0, 1fr);
    width: min(100%, 410px);
    padding: 8px 9px;
  }
  .dev-mark { width: 34px; height: 34px; }
  .floating-actions { left: 14px; bottom: calc(84px + env(safe-area-inset-bottom)); }
  .floating-actions a { width: 49px; height: 49px; }
  .smart-assistant { right: 14px; bottom: calc(84px + env(safe-area-inset-bottom)); }
  .assistant-toggle { width: 52px; height: 52px; }
  .assistant-toggle .icon { width: 23px; height: 23px; }
  .assistant-label { display: none; }
  .assistant-panel {
    bottom: 65px;
    width: min(370px, calc(100vw - 28px));
    max-height: calc(100vh - 178px);
    overflow-y: auto;
    border-radius: 20px;
  }
  .assistant-body { padding: 14px; }
  .assistant-conversation { max-height: 222px; }
  .assistant-option { padding: 9px 10px; }
  .mobile-nav {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding: 7px 10px calc(7px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(0,0,0,.09);
    backdrop-filter: blur(18px);
  }
  .mobile-nav a { display: grid; place-items: center; align-content: center; gap: 2px; color: var(--muted); font-size: .66rem; font-weight: 800; }
  .mobile-nav .icon { width: 19px; height: 19px; }
  .mobile-nav a:last-child { color: var(--gold-500); }
}

@media (max-width: 390px) {
  .container, .narrow, .narrow-wide { width: min(calc(100% - 24px), var(--container)); }
  .brand strong { font-size: .92rem; }
  .header-actions { gap: 5px; }
  .menu-toggle, .icon-button { width: 38px; height: 38px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-inline-end: 1px solid var(--line); }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid > div { border-inline-end: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-section, .footer-section h2 { text-align: right; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-cta-actions { grid-template-columns: 1fr; }
  .assistant-response-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .promo-viewport { overflow-x: auto; scrollbar-width: none; }
  .promo-track { animation: none !important; transform: none !important; }
  .promo-item[aria-hidden="true"] { display: none; }
  .reviews-marquee { overflow-x: auto; -webkit-mask-image: none; mask-image: none; scrollbar-width: thin; }
  .reviews-track { animation: none !important; transform: none !important; }
  .reviews-group[aria-hidden="true"] { display: none; }
}

@media print {
  .site-header, .site-footer, .mobile-nav, .floating-actions, .smart-assistant, .article-sidebar, .article-actions, .contact-section { display: none !important; }
  .reviews-track { animation: none; transform: none; }
  .reviews-group[aria-hidden="true"] { display: none; }
  body { color: #000; background: #fff; }
  .article-layout { display: block; padding: 0; }
  .article-prose { max-width: none; }
}
