﻿:root {
  --ink: #fff7dc;
  --muted: #c9c0dd;
  --paper: #050611;
  --surface: #11152a;
  --surface-strong: #171b38;
  --night: #03040c;
  --plum: #8c5cff;
  --gold: #ffc857;
  --gold-soft: #ffe8a5;
  --rose: #ff5fa3;
  --teal: #35f4d2;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(92, 64, 255, .28), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(0, 231, 255, .18), transparent 32%),
    linear-gradient(180deg, #050611 0%, #09081b 45%, #050611 100%);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  background: rgba(3, 4, 12, .9);
  color: #fffaf0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 218px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(247, 228, 179, .7);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff8cf, #ffc857 38%, #ff5fa3 72%, #5b35ff 100%);
  color: #090712;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255,250,240,.72);
  font-size: .78rem;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,250,240,.82);
  text-decoration: none;
  font-weight: 650;
  font-size: .92rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 200, 87, .16);
  color: #fffaf0;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe35d, #ff8a35);
  color: #090712;
  font-weight: 800;
  text-decoration: none;
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,250,240,.24);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.icon-button svg,
.header-call svg,
.primary-action svg,
.secondary-action svg,
.float-contact svg,
.contact-option svg,
.quick-grid svg,
.mobile-contact-bar svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.home-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fffaf0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 200, 87, .12), transparent 26%),
    linear-gradient(90deg, rgba(3,4,12,.92), rgba(5,6,17,.58) 50%, rgba(5,6,17,.20));
}

.hero-content {
  position: relative;
  padding: 86px 0 116px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.lede {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255,250,240,.86);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary-action {
  background: linear-gradient(135deg, #ffe35d, #ff8a35 50%, #ff5fa3);
  color: #080710;
  box-shadow: 0 16px 34px rgba(255, 111, 66, .28);
}

.secondary-action {
  border-color: rgba(255,250,240,.34);
  color: #fffaf0;
  background: rgba(255,250,240,.06);
}

.quick-strip,
.intro-band,
.content-band,
.services-section,
.steps-band,
.image-band,
.cta-band {
  padding: 70px 0;
}

.quick-strip {
  padding: 18px 0;
  background: rgba(5, 6, 17, .96);
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quick-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(23,27,56,.96), rgba(12,15,34,.96));
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
}

.quick-grid strong,
.quick-grid small {
  display: block;
}

.quick-grid small {
  color: var(--muted);
}

.intro-band {
  background:
    radial-gradient(circle at 82% 20%, rgba(53,244,210,.10), transparent 30%),
    linear-gradient(180deg, #070817, #0b0d1f);
}

.intro-grid,
.split-content,
.cta-content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 38px;
  align-items: center;
}

.intro-grid p,
.prose p,
.cta-content p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-grid article {
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(23,27,56,.96), rgba(12,14,30,.96));
  text-align: center;
  box-shadow: 0 16px 34px rgba(0,0,0,.26);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--gold);
  font-size: 2rem;
}

.stat-grid span {
  color: var(--muted);
  margin-top: 4px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

.service-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 4%, rgba(53,244,210,.12), transparent 35%),
    linear-gradient(160deg, rgba(23,27,56,.96), rgba(10,12,27,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.service-card h3 a {
  text-decoration: none;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.card-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.text-link {
  color: var(--gold-soft);
  font-weight: 800;
}

.image-band {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,95,163,.14), transparent 32%),
    #060716;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 16px;
}

.image-grid img,
.page-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
}

.gallery-preview {
  padding: 70px 0;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,95,163,.15), transparent 30%),
    linear-gradient(180deg, #060716, #090b1b);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.gallery-preview p {
  color: var(--muted);
  line-height: 1.75;
}

.gallery-teaser-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery-teaser-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-teaser-media img:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 6.25;
}

.gallery-stats-band {
  padding: 24px 0;
  background: rgba(5, 6, 17, .96);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-stats article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(23,27,56,.96), rgba(12,15,34,.96));
  text-align: center;
}

.gallery-stats strong,
.gallery-stats span {
  display: block;
}

.gallery-stats strong {
  color: var(--gold);
  font-size: 2rem;
}

.gallery-stats span {
  color: var(--muted);
}

.gallery-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(53,244,210,.10), transparent 26%),
    #070817;
}

.gallery-section.videos {
  background:
    radial-gradient(circle at 82% 18%, rgba(255,200,87,.11), transparent 28%),
    #060716;
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(23,27,56,.96), rgba(10,12,27,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.gallery-card a {
  display: block;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #050611;
}

.video-card video {
  aspect-ratio: 16 / 10;
}

.gallery-card figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: .95rem;
}

.cta-band {
  background:
    radial-gradient(circle at 78% 24%, rgba(255,200,87,.18), transparent 28%),
    linear-gradient(135deg, #050611, #171044 48%, #280b38);
  color: #fffaf0;
}

.cta-content p {
  color: rgba(255,250,240,.8);
}

.page-hero {
  padding: 74px 0 76px;
  background:
    radial-gradient(circle at 88% 22%, rgba(53,244,210,.14), transparent 32%),
    radial-gradient(circle at 8% 12%, rgba(140,92,255,.22), transparent 34%),
    linear-gradient(135deg, #070817, #0b1026);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 42px;
  align-items: center;
}

.page-copy h1 {
  color: var(--ink);
  font-size: 3.3rem;
}

.page-copy .lede {
  color: var(--muted);
}

.page-copy .secondary-action {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.06);
}

.highlight-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(23,27,56,.96), rgba(10,12,27,.98));
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.highlight-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.steps-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,200,87,.10), transparent 28%),
    #070817;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.step-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step-grid strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8c5cff, #ff5fa3);
  color: #fffaf0;
}

.step-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 54px 0 88px;
  background: #03040c;
  color: #fffaf0;
}

.footer-grid {
  display: grid;
  grid-template-columns: .9fr .45fr 1.2fr;
  gap: 34px;
}

.footer-grid p {
  color: rgba(255,250,240,.74);
  line-height: 1.65;
}

.footer-grid h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 14px;
}

.footer-links a,
.site-footer a {
  color: rgba(255,250,240,.86);
}

.footer-contact {
  background: linear-gradient(135deg, #ffe35d, #ff8a35);
  color: #090712;
}

.fine-print {
  font-size: .9rem;
}

.float-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #12b879, #25d366);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 16px 36px rgba(10, 84, 55, .28);
  cursor: pointer;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.contact-modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 12, .78);
}

.modal-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: linear-gradient(160deg, #171b38, #0b0d1f);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modal-close {
  display: inline-flex;
  position: absolute;
  right: 16px;
  top: 16px;
  color: var(--ink);
  border-color: var(--line);
}

.modal-panel h2 {
  padding-right: 48px;
}

.modal-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
}

.contact-option.call {
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
}

.contact-option.whatsapp {
  background: rgba(37, 211, 102, .14);
  border: 1px solid rgba(37, 211, 102, .38);
  color: #a8ffd0;
}

.contact-option strong,
.contact-option small {
  display: block;
}

.contact-option small {
  color: var(--muted);
  margin-top: 2px;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(255,250,240,.18);
    border-radius: 8px;
    background: #070817;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .home-hero {
    min-height: 610px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(3,4,12,.92), rgba(5,6,17,.58));
  }

  .quick-grid,
  .intro-grid,
  .gallery-preview-grid,
  .split-content,
  .page-hero-grid,
  .cta-content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.compact,
  .step-grid,
  .image-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 620px) {
  body {
    padding-bottom: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .home-hero {
    min-height: 570px;
  }

  .hero-content {
    padding: 68px 0 88px;
  }

  h1,
  .page-copy h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .lede {
    font-size: 1rem;
  }

  .quick-strip,
  .intro-band,
  .content-band,
  .services-section,
  .steps-band,
  .image-band,
  .gallery-preview,
  .gallery-section,
  .cta-band {
    padding: 48px 0;
  }

  .quick-grid,
  .service-grid,
  .service-grid.compact,
  .step-grid,
  .image-grid,
  .gallery-grid,
  .gallery-stats,
  .gallery-teaser-media,
  .stat-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .gallery-teaser-media img:first-child {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-actions,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .float-contact {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #090b1b;
    border-top: 1px solid var(--line);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 62px;
    color: var(--ink);
    font-weight: 850;
    text-decoration: none;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid var(--line);
    background: rgba(37, 211, 102, .15);
    color: #a8ffd0;
  }
}
