:root {
  --bg: #050505;
  --bg-elevated: #0b0b0b;
  --bg-soft: #111111;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(212, 175, 55, 0.36);
  --gold: #d4af37;
  --gold-light: #f3d77a;
  --gold-dark: #876314;
  --text: #f5f1e8;
  --muted: #c8bfad;
  --muted-strong: #e2d8c5;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 24%),
    linear-gradient(180deg, #040404 0%, #090909 50%, #050505 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.title,
.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.title {
  font-size: clamp(2rem, 5vw, 4rem);
}

.page-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.title span,
.page-title span,
.brand-copy h1 span,
.footer-copy h2 span,
.highlight,
.stat-number,
.metric h3,
.panel strong,
.contact-list strong,
.footer-mini strong {
  color: var(--gold-light);
}

.lead,
.text,
.card p,
.stat p,
.metric p,
.timeline-content p,
.contact-list p,
.form-note,
.footer-note,
.hero-list li,
.checklist li,
.info-list li,
.table-list li,
.quote-steps li,
.faq-item p,
.small-note {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
  font-weight: 800;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-strong);
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.nav {
  width: var(--container);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.brand-copy h1,
.footer-copy h2 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy p,
.footer-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.96rem;
  padding-bottom: 4px;
}

.nav-links a::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 1.2rem;
}

.hero {
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}

.hero-grid,
.two-col,
.contact-grid,
.services-layout,
.quote-layout,
.company-layout {
  display: grid;
  gap: 30px;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-copy .lead {
  max-width: 700px;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.hero-list,
.checklist,
.info-list,
.table-list,
.quote-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-list li,
.checklist li,
.info-list li,
.table-list li,
.quote-steps li {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.dot,
.check {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.1);
  flex-shrink: 0;
  margin-top: 8px;
}

.panel,
.card,
.stat,
.metric,
.timeline-item,
.form-box,
.contact-card,
.cta-card,
.data-box,
.faq-item,
.service-block,
.quote-box,
.page-hero-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel,
.page-hero-box {
  padding: 30px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.panel-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--muted-strong);
}

.metrics-grid,
.stats-grid,
.cards-3,
.cards-4,
.contact-cards {
  display: grid;
  gap: 20px;
}

.metrics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
}

.metric,
.stat,
.card,
.service-block,
.contact-card,
.data-box,
.quote-box,
.faq-item {
  padding: 28px;
}

.metric h3,
.stat-number {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 2.4rem;
}

.card h3,
.service-block h3,
.contact-card h3,
.data-box h3,
.quote-box h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.1rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.04));
}

.feature-line {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
}

.timeline-step {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.45rem;
  font-weight: 900;
}

.page-hero {
  padding: 72px 0 22px;
}

.page-hero-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.page-hero-box .lead {
  max-width: 740px;
  margin-top: 18px;
}

.data-box {
  display: grid;
  gap: 16px;
}

.data-box .line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.company-layout,
.services-layout,
.contact-grid,
.quote-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.service-stack,
.faq-list,
.contact-list {
  display: grid;
  gap: 18px;
}

.service-block ul,
.contact-list ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.service-block li,
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: start;
}

.service-block li::before,
.contact-list li::before {
  content: "•";
  color: var(--gold-light);
  font-weight: 900;
}

.quote-steps {
  display: grid;
  gap: 14px;
}

.contact-link {
  color: var(--gold-light);
  word-break: break-word;
}

.form-box form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  color: var(--muted-strong);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  padding: 15px 16px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.form-status {
  min-height: 24px;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.cta-card {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.02));
}

.footer {
  padding: 24px 0 50px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 28px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  padding: 14px 18px;
}

.blur {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.blur.one { top: 50px; left: -80px; }
.blur.two { bottom: 10px; right: -90px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-box,
  .company-layout,
  .services-layout,
  .contact-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-3,
  .cards-4,
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .nav {
    min-height: 76px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .desktop-only {
    display: none;
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-list,
  .metrics-grid,
  .stats-grid,
  .cards-3,
  .cards-4,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .brand img,
  .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .title,
  .page-title {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .float-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 16px;
  }
}


.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.whatsapp-modal.open {
  display: flex;
}

.whatsapp-modal__box {
  width: min(640px, 100%);
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: var(--shadow);
}

.whatsapp-modal__top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 12px;
}

.whatsapp-modal__top h3 {
  margin: 0;
  font-size: 1.55rem;
}

.whatsapp-modal__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  cursor: pointer;
  font-size: 1.2rem;
}

.whatsapp-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.whatsapp-modal__hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 680px) {
  .whatsapp-modal__box {
    padding: 22px;
  }

  .whatsapp-modal__actions {
    flex-direction: column;
  }

  .whatsapp-modal__actions .btn {
    width: 100%;
  }
}


.consent-box {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.consent-check {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.6;
}

.consent-check input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.form-legal-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.form-legal-note a,
.consent-check a,
.privacy-links a {
  color: var(--gold-light);
}

.privacy-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}


.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.photo-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 18px 20px 22px;
}

.photo-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.photo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.photo-strip .photo-card img {
  height: 220px;
}

@media (max-width: 900px) {
  .photo-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }
}


.gallery-cta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.gallery-grid-large {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-grid-large .photo-card img {
  height: 260px;
}

.photo-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--gold-light);
}

.source-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.source-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.source-card h3 {
  margin: 0 0 8px;
}

.source-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .gallery-grid-large,
  .source-card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-cta {
    justify-content: flex-start;
  }
}
