/*
 * Brillante Imperial - Reconstrucción premium v2
 * Desarrollo: Ardat Solutions® | https://ardatsolutions.com
 */
:root {
  --bg: #050301;
  --bg-2: #0b0703;
  --bg-soft: #151008;
  --panel: rgba(20, 14, 7, .82);
  --panel-strong: rgba(10, 7, 3, .94);
  --glass: rgba(255, 255, 255, .065);
  --glass-2: rgba(255, 255, 255, .035);
  --gold: #d8a63a;
  --gold-soft: #f5d779;
  --gold-light: #fff0a8;
  --gold-deep: #8b5a15;
  --copper: #b77b31;
  --text: #fff9ed;
  --muted: #d1c19d;
  --muted-2: #a99771;
  --line: rgba(216, 166, 58, .24);
  --line-strong: rgba(255, 240, 168, .46);
  --shadow: 0 28px 80px rgba(0, 0, 0, .46);
  --shadow-gold: 0 22px 58px rgba(216, 166, 58, .18);
  --radius: 26px;
  --max: 1200px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #140d03; background: var(--gold-light); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #120d04;
  font-weight: 900;
  border-radius: 999px;
  background: var(--gold-light);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-bg,
.gold-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.site-bg {
  z-index: -4;
  background:
    radial-gradient(circle at 20% 18%, rgba(216, 166, 58, .20), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(255, 240, 168, .12), transparent 24%),
    radial-gradient(circle at 72% 82%, rgba(183, 123, 49, .16), transparent 30%),
    linear-gradient(135deg, #020100 0%, #0d0803 46%, #151008 70%, #030201 100%);
}
.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255,240,168,.11) 38%, transparent 41%),
    linear-gradient(245deg, transparent 0 44%, rgba(216,166,58,.10) 46%, transparent 48%);
  mask-image: radial-gradient(circle at center, #000 0 62%, transparent 100%);
}
.gold-noise {
  z-index: -3;
  opacity: .18;
  background-image:
    radial-gradient(circle, rgba(255, 226, 123, .9) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, .44) 0 1px, transparent 1.5px);
  background-size: 74px 74px, 128px 128px;
  background-position: 0 0, 36px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.topbar {
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto -3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}
.topbar p { margin: 0; }
.topbar a {
  color: var(--gold-light);
  white-space: nowrap;
}

.header {
  position: sticky;
  top: 12px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  min-height: var(--header-h);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 3, 1, .78);
  backdrop-filter: blur(20px) saturate(1.15);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease, min-height .24s ease;
}
.header.scrolled {
  min-height: 74px;
  background: rgba(5, 3, 1, .92);
  box-shadow: 0 18px 45px rgba(0,0,0,.48);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line), 0 0 34px rgba(216,166,58,.36);
}
.brand strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: .07em;
  font-size: .98rem;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.2;
  margin-top: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  color: var(--muted);
  font-size: .89rem;
  font-weight: 800;
  padding: 12px 11px;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.nav a:hover,
.nav a:focus-visible,
.nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.075);
}
.nav .nav-cta {
  margin-left: 4px;
  color: #120d04;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 52%, #a46e16);
  box-shadow: 0 12px 28px rgba(216,166,58,.26);
}
.nav .nav-cta:hover { color: #120d04; transform: translateY(-1px); }
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
  border-radius: 999px;
  transition: .2s ease;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 105px 0;
}
.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding-top: 82px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .76rem;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--text);
  line-height: 1.04;
}
h1, h2 { font-family: Cinzel, Georgia, serif; }
h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 6.3vw, 6.75rem);
  letter-spacing: -.055em;
}
h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.15rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.12rem; margin-bottom: 10px; }
.hero-lead {
  max-width: 700px;
  color: #eadfc6;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
}
.hero-actions,
.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -.01em;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.nav a:focus-visible,
.filter-btn:focus-visible,
.lightbox-open:focus-visible,
.whatsapp-fab:focus-visible {
  outline: 3px solid rgba(255,240,168,.32);
  outline-offset: 3px;
}
.btn-gold {
  color: #140d03;
  background: linear-gradient(135deg, #fff7ca 0%, var(--gold-light) 18%, var(--gold) 52%, #9d6811 100%);
  box-shadow: 0 20px 42px rgba(216,166,58,.25);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transition: transform .7s ease;
}
.btn-gold:hover::after { transform: translateX(120%) skewX(-18deg); }
.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.055);
}
.btn-ghost:hover { border-color: var(--line-strong); background: rgba(255,255,255,.08); }
.btn.full { width: 100%; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
  max-width: 700px;
}
.trust-strip article {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  overflow: hidden;
}
.trust-strip article::after,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .62;
  background: linear-gradient(135deg, rgba(255,240,168,.18), transparent 42%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.trust-strip strong {
  display: block;
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}
.trust-strip span { color: var(--muted); font-size: .88rem; }

.hero-showcase {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.showcase-orbit {
  position: absolute;
  width: min(98%, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,240,168,.09) 0 35%, transparent 36%),
    conic-gradient(from 25deg, transparent, rgba(216,166,58,.70), transparent 30%, rgba(255,240,168,.55), transparent 58%, rgba(183,123,49,.45), transparent);
  filter: drop-shadow(0 0 58px rgba(216,166,58,.32));
  animation: spin 20s linear infinite;
  z-index: -1;
}
.showcase-orbit::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: inherit;
  border: 1px solid rgba(255,240,168,.16);
}
.imperial-card,
.mini-gallery-card,
.valuation-card {
  border: 1px solid var(--line);
  background: rgba(7, 5, 2, .72);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.main-logo-card {
  width: min(78vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.main-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(1.05) contrast(1.03);
}
.mini-gallery-card {
  position: absolute;
  width: 164px;
  min-height: 176px;
  padding: 10px;
  border-radius: 24px;
}
.mini-gallery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  filter: saturate(1.08) contrast(1.04);
}
.mini-gallery-card span {
  display: block;
  margin-top: 10px;
  color: var(--gold-light);
  font-weight: 900;
  text-align: center;
}
.mini-gallery-card.one { left: 0; top: 78px; transform: rotate(-4deg); }
.mini-gallery-card.two { right: 4px; top: 120px; transform: rotate(5deg); }
.mini-gallery-card.three { left: 52px; bottom: 34px; transform: rotate(4deg); }
.valuation-card {
  position: absolute;
  right: 6px;
  bottom: 52px;
  width: min(330px, 66%);
  padding: 22px;
  border-radius: 24px;
}
.valuation-card span,
.valuation-card small { color: var(--muted); }
.valuation-card strong {
  display: block;
  margin: 4px 0 7px;
  font-family: Cinzel, Georgia, serif;
  color: var(--gold-light);
  font-size: 1.42rem;
  line-height: 1.1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.premium-ribbon {
  width: min(var(--max), calc(100% - 32px));
  margin: -28px auto 0;
  display: flex;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5,3,1,.66);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  scrollbar-width: none;
  box-shadow: var(--shadow-gold);
}
.premium-ribbon::-webkit-scrollbar { display: none; }
.premium-ribbon span {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: #160f04;
  font-weight: 950;
  font-size: .82rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 58px;
  align-items: start;
  padding-top: 92px;
}
.section-title { max-width: 820px; }
.section-title > p:not(.eyebrow),
.process .section-title > p,
.guide-card > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}
.section-title.center {
  margin: 0 auto 48px;
  text-align: center;
}
.section-title.center p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
}
.intro-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.intro-panel p { color: #dfd1b5; font-size: 1.04rem; }
.mini-proof {
  display: grid;
  gap: 5px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255,240,168,.24);
  border-radius: 20px;
  background: rgba(216,166,58,.09);
}
.mini-proof strong { color: var(--gold-light); font-family: Cinzel, Georgia, serif; }
.mini-proof span { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.process-list article,
.security-card,
.quote-form,
.contact-cards a,
.guide-card,
.faq-list details,
.map-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.078), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.service-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  border-radius: var(--radius);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
}
.service-card .icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: #130d03;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(216,166,58,.24);
  font-size: 1.1rem;
}
.service-card small {
  display: block;
  min-height: 38px;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .72rem;
}
.service-card p,
.process-list p,
.security p,
.contact-info p,
.quote-form small,
.faq-list p,
.guide-grid span {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 52px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 14px;
}
.process-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  transition: transform .22s ease, border-color .22s ease;
}
.process-list article:hover { transform: translateX(4px); border-color: var(--line-strong); }
.process-list span {
  display: grid;
  place-items: center;
  height: 60px;
  color: #130d03;
  font-weight: 950;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.process-list h3 { margin-bottom: 7px; }
.process-list p { margin-bottom: 0; }

.buyer-guide { padding-top: 40px; }
.guide-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 40px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 20%, rgba(216,166,58,.17), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.guide-grid article {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(216,166,58,.18);
  border-radius: 22px;
  background: rgba(6,4,2,.42);
}
.guide-grid strong { display: block; color: var(--gold-light); margin-bottom: 7px; }
.guide-grid span { display: block; }

.gallery-actions {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 34px;
}
.filter-btn {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.055);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}
.filter-btn.active,
.filter-btn:hover {
  color: #120d04;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(216,166,58,.20);
  background: rgba(255,255,255,.035);
  aspect-ratio: 1 / 1;
  transition: transform .22s ease, border-color .22s ease, opacity .22s ease;
}
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item.is-hidden { display: none; }
.lightbox-open {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: transparent;
}
.lightbox-open::after {
  content: "Ver detalle";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  transform: translateY(10px);
  opacity: 0;
  padding: 10px 12px;
  color: #120d04;
  font-weight: 950;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition: .24s ease;
}
.lightbox-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .48s ease, filter .48s ease;
}
.gallery-item:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.gallery-item:hover img { transform: scale(1.08); filter: saturate(1.14) contrast(1.07); }
.gallery-item:hover .lightbox-open::after { transform: translateY(0); opacity: 1; }

.security-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(216,166,58,.18), transparent 35%),
    linear-gradient(135deg, rgba(216,166,58,.14), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.security-stack { display: grid; gap: 18px; }
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  color: #eadfc6;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #120d04;
  font-weight: 950;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.payment-panel {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255,240,168,.20);
  border-radius: 22px;
  background: rgba(5,3,1,.42);
}
.payment-panel strong { color: var(--gold-light); font-family: Cinzel, Georgia, serif; }
.payment-panel span { color: var(--muted); }

.faq { padding-top: 72px; }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-list details {
  border-radius: 22px;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #120d04;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.contact-info p { max-width: 660px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.contact-cards a {
  min-height: 122px;
  padding: 18px;
  border-radius: 22px;
  transition: transform .22s ease, border-color .22s ease;
}
.contact-cards a:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.contact-cards strong { display: block; color: var(--gold-light); margin-bottom: 8px; }
.contact-cards span { color: var(--muted); overflow-wrap: anywhere; }
.quote-form {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(216,166,58,.10), transparent 44%),
    rgba(9,7,4,.72);
}
.form-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #120d04;
  font-size: .76rem;
  font-weight: 950;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #f7edcf;
  font-weight: 850;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(216,166,58,.28);
  border-radius: 16px;
  background: rgba(255,255,255,.065);
  padding: 14px 14px;
  outline: none;
  transition: .2s ease;
}
.quote-form select option { color: #120d04; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(216,166,58,.12);
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form small { display: block; margin-top: 14px; }

.map-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 82px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--bg-soft);
}
.map-heading {
  display: grid;
  grid-template-columns: .72fr .9fr 1.3fr;
  gap: 18px;
  align-items: end;
  padding: 28px;
}
.map-heading .eyebrow { margin-bottom: 0; }
.map-heading h2 { margin-bottom: 0; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.map-heading p:last-child { margin-bottom: 0; color: var(--muted); }
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(.78);
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(7,6,4,.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.footer img { border-radius: 50%; box-shadow: 0 0 30px rgba(216,166,58,.20); }
.footer p { margin: 0; color: var(--muted); }
.footer p strong { display: block; color: var(--text); font-family: Cinzel, Georgia, serif; }
.footer p span { display: block; }
.footer > div { display: flex; align-items: center; gap: 14px; }
.footer nav { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); font-weight: 800; }
.footer nav a:hover,
.credit a:hover { color: var(--gold-light); }
.credit a { color: var(--gold-light); font-weight: 950; }

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  color: #061008;
  font-weight: 950;
  background: linear-gradient(135deg, #a8ffbf, #25d366);
  box-shadow: 0 18px 38px rgba(37,211,102,.28);
}
.whatsapp-fab::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border-radius: 50%;
  background: #061008;
  box-shadow: 0 0 0 6px rgba(6,16,8,.12);
}

.lightbox {
  width: min(980px, calc(100% - 30px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #050403;
  box-shadow: var(--shadow);
  overflow: visible;
}
.lightbox::backdrop { background: rgba(0,0,0,.84); backdrop-filter: blur(9px); }
.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 26px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(0,0,0,.68);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox-close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.55rem;
}
.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 2rem;
}
.lightbox-nav.prev { left: 12px; }
.lightbox-nav.next { right: 12px; }
.lightbox-close:hover,
.lightbox-nav:hover { border-color: var(--line-strong); background: rgba(216,166,58,.20); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .72s ease, transform .72s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .topbar { display: none; }
  .menu-btn { display: block; }
  .header { top: 10px; }
  .nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(6,5,3,.97);
    box-shadow: var(--shadow);
    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 16px; }
  .nav .nav-cta { margin-left: 0; text-align: center; }
  .hero,
  .intro-grid,
  .process,
  .security-card,
  .contact,
  .guide-card { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 540px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .map-heading { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 100px; }
  .header { width: calc(100% - 22px); margin-top: 10px; border-radius: 28px; min-height: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: .82rem; }
  .brand small { font-size: .68rem; }
  .section { width: calc(100% - 24px); padding: 74px 0; }
  .hero { padding-top: 46px; min-height: auto; }
  h1 { font-size: clamp(2.85rem, 15.7vw, 4.55rem); }
  h2 { font-size: clamp(2rem, 9vw, 3.05rem); }
  .hero-actions .btn { width: 100%; }
  .trust-strip,
  .service-grid,
  .contact-cards,
  .guide-grid { grid-template-columns: 1fr; }
  .hero-showcase { min-height: 440px; }
  .main-logo-card { width: min(82vw, 330px); }
  .mini-gallery-card { width: 118px; min-height: 130px; padding: 8px; border-radius: 18px; }
  .mini-gallery-card span { font-size: .75rem; margin-top: 7px; }
  .mini-gallery-card.one { left: 0; top: 52px; }
  .mini-gallery-card.two { right: 0; top: 78px; }
  .mini-gallery-card.three { left: 28px; bottom: 8px; }
  .valuation-card { position: relative; right: auto; bottom: auto; width: 92%; margin-top: -18px; }
  .premium-ribbon { width: calc(100% - 24px); border-radius: 22px; margin-top: 20px; }
  .intro-grid { padding-top: 74px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16 / 10; }
  .process-list article { grid-template-columns: 54px 1fr; padding: 18px; }
  .process-list span { height: 46px; border-radius: 14px; font-size: .9rem; }
  .guide-card,
  .security-card,
  .quote-form,
  .intro-panel { padding: 22px; border-radius: 26px; }
  .map-heading { padding: 22px; }
  .map-wrap iframe { height: 310px; }
  .footer { align-items: flex-start; }
  .footer > div { align-items: flex-start; }
  .whatsapp-fab { right: 14px; bottom: 14px; min-height: 52px; padding: 0 16px; }
  .lightbox-nav { display: none; }
}

@media (max-width: 420px) {
  .brand span { max-width: 160px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.featured { grid-column: span 1; }
  .contact-cards a { min-height: auto; }
}
