:root {
  --gold: #d7b45f;
  --gold-soft: #f2d58a;
  --gold-dark: #8c6824;
  --black: #000000;
  --black-2: #050505;
  --black-3: #101010;
  --line: rgba(215, 180, 95, 0.22);
  --text: #f8f5ee;
  --muted: #b8b0a3;
  --font-display: "Cinzel", serif;
  --font-body: "Inter", sans-serif;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-card { display: grid; gap: 18px; justify-items: center; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px; }
.loader-card img { width: min(340px, 72vw); border: 1px solid var(--line); box-shadow: 0 0 60px rgba(215, 180, 95, 0.16); }
.loader-line { width: 180px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: loadPulse 1.2s ease-in-out infinite; }
@keyframes loadPulse { 50% { opacity: 0.35; transform: scaleX(0.72); } }

.top-strip {
  min-height: 42px;
  padding: 9px 5vw;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted);
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.top-strip i { color: var(--gold); margin-right: 7px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 82px;
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #000;
  border-bottom: 1px solid rgba(215, 180, 95, 0.14);
}
.brand img { width: 172px; height: 58px; object-fit: contain; mix-blend-mode: normal; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a:hover, .nav a.active { color: var(--gold-soft); }
.language-switch { display: flex; border: 1px solid var(--line); }
.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 800;
}
.lang-btn.active { background: var(--gold); color: #050505; }
.header-cta, .gold-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 2px;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.gold-btn, .header-cta {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-dark));
  color: #050505;
  box-shadow: 0 14px 30px rgba(215, 180, 95, 0.18);
}
.ghost-btn {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.gold-btn:hover, .header-cta:hover, .ghost-btn:hover { transform: translateY(-2px); }
.ghost-btn:hover { border-color: var(--gold); color: var(--gold-soft); }
.menu-toggle, .close-menu { display: none; }

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  isolation: isolate;
  display: grid;
  align-items: center;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=85");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85);
}
.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 36%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(0deg, #000 0%, transparent 38%);
}
.hero-inner {
  width: min(1180px, 90vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: center;
  padding: 72px 0;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.centered { text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.96;
  text-transform: uppercase;
  max-width: 850px;
}
.hero h1 span { display: block; }
.gold { color: var(--gold-soft); }
.hero-text {
  margin: 24px 0 30px;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
  padding: 24px;
}
.hero-card img { width: 100%; border: 0; margin-bottom: 18px; background: #000; }
.hero-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.hero-card-grid div { padding: 14px 10px; text-align: center; border-right: 1px solid var(--line); }
.hero-card-grid div:last-child { border-right: 0; }
.hero-card-grid strong { display: block; color: var(--gold-soft); font-size: 18px; }
.hero-card-grid span { color: var(--muted); font-size: 11px; text-transform: uppercase; }

.trust-band {
  width: min(1180px, 90vw);
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #000;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.trust-band div { padding: 24px; border-right: 1px solid var(--line); }
.trust-band div:last-child { border-right: 0; }
.trust-band i { color: var(--gold); font-size: 22px; margin-bottom: 12px; }
.trust-band strong { display: block; font-size: 15px; margin-bottom: 4px; }
.trust-band span { color: var(--muted); font-size: 13px; }

.section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 96px 0;
}
.section-title {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}
.split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.split h2, .calculator-copy h2, .service-area h2, .cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.split p, .calculator-copy p, .service-area p, .contact-heading p {
  color: var(--muted);
  font-size: 17px;
}
.mini-list { display: grid; gap: 12px; margin-top: 26px; }
.mini-list span { color: var(--text); font-weight: 700; }
.mini-list i { color: var(--gold); margin-right: 10px; }
.image-stack { position: relative; }
.image-stack img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: contrast(1.04) saturate(0.9);
}
.stack-card {
  position: absolute;
  left: -28px;
  bottom: 28px;
  max-width: 270px;
  padding: 18px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stack-card strong { display: block; color: var(--gold-soft); }
.stack-card span { color: var(--muted); font-size: 13px; }

.services-grid, .reviews-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card, .review-card, .process-step, .project-card, .contact-form, .contact-info {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016));
  border: 1px solid var(--line);
  padding: 26px;
}
.service-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #050505;
  background: var(--gold);
  margin-bottom: 22px;
  font-size: 20px;
}
.service-card h3, .process-step h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p, .process-step p, .review-card p { color: var(--muted); }

.calculator-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 58px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(215, 180, 95, 0.13), rgba(255, 255, 255, 0.03)),
    #090909;
}
.project-card { display: grid; gap: 16px; }
label span { display: block; color: var(--gold-soft); font-size: 12px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(215, 180, 95, 0.24);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
select option { background: #0b0b0b; color: var(--text); }

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 230px;
  gap: 14px;
}
.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.88) contrast(1.04);
}
.work-grid img:first-child { grid-row: span 2; }

.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-step span {
  display: inline-block;
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 34px;
  margin-bottom: 18px;
}

.cta-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1500&q=80") center / cover;
}
.cta-section h2 { max-width: 720px; margin-bottom: 0; }

.stars { color: var(--gold); letter-spacing: 0.08em; margin-bottom: 18px; }
.review-card strong { display: block; margin-top: 20px; color: var(--gold-soft); }

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.area-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.area-tags span {
  border: 1px solid var(--line);
  padding: 12px 16px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
}

.contact-heading { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.contact-form { display: grid; gap: 16px; }
.contact-info { display: grid; align-content: start; gap: 18px; }
.contact-info img {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line);
  margin-bottom: 8px;
}
.contact-info a {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(215, 180, 95, 0.16);
  background: rgba(0, 0, 0, 0.28);
}
.contact-info i { color: var(--gold); font-size: 20px; width: 24px; text-align: center; }
.contact-info strong { display: block; color: var(--text); }
.contact-info span, .contact-info p { color: var(--muted); }

.tampa-map-section {
  padding-top: 40px;
}
.map-copy {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}
.map-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.map-copy p { color: var(--muted); font-size: 17px; }
.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: min(58vh, 470px);
  min-height: 340px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(1.08) brightness(0.78);
}
.map-localities {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.map-localities span {
  border: 1px solid var(--line);
  background: #000;
  color: var(--gold-soft);
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-size: 30px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.footer {
  border-top: 1px solid var(--line);
  background: #000;
  padding: 34px 5vw;
}
.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: var(--gold-soft); font-weight: 800; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.active { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: transparent;
  }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); }
  .close-menu {
    display: grid;
    place-items: center;
    align-self: flex-end;
    width: 44px;
    height: 44px;
    color: var(--gold);
    border: 1px solid var(--line);
    background: transparent;
    font-size: 20px;
  }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: #000;
    border-left: 1px solid var(--line);
  }
  .nav.active { transform: none; }
  .nav a { padding: 14px 0; font-size: 15px; }
  .language-switch { width: fit-content; }
  .hero-inner, .split, .calculator-section, .service-area, .contact-layout { grid-template-columns: 1fr; }
  .hero-inner { gap: 34px; }
  .trust-band, .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid img:first-child { grid-row: span 1; }
  .cta-section { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .top-strip { justify-content: flex-start; gap: 10px 18px; font-size: 12px; }
  .brand img { width: 142px; height: 50px; }
  .hero { min-height: auto; }
  .hero-inner { width: min(100% - 32px, 1180px); padding: 58px 0; }
  .hero h1 { font-size: 42px; }
  .hero-actions .gold-btn, .hero-actions .ghost-btn { width: 100%; }
  .trust-band, .services-grid, .reviews-grid, .process-grid, .work-grid { grid-template-columns: 1fr; }
  .trust-band { margin-top: 0; width: 100%; border-left: 0; border-right: 0; }
  .trust-band div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 68px 0; }
  .calculator-section, .cta-section { padding: 28px; width: min(100% - 32px, 1180px); }
  .stack-card { position: static; max-width: none; margin-top: 12px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
