:root {
  --primary: #d70416;
  --primary-dark: #8f0612;
  --ink: #171717;
  --gold: #f9c018;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

.text-primary,
.text-primary-DEFAULT {
  color: var(--primary);
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(215, 4, 22, 0.82);
}

.brand-mark span,
.brand-mark span::before {
  display: block;
  width: 22px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.brand-mark span::before {
  transform: rotate(90deg);
}

.nav-link,
.mobile-link {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link {
  padding: 0.68rem 0.92rem;
}

.mobile-link {
  display: block;
  padding: 0.86rem 0.6rem;
}

.nav-link:hover,
.mobile-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.whatsapp-btn,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-btn {
  padding: 0.88rem 1.05rem;
  background: #19bf5b;
  color: #fff;
  box-shadow: 0 16px 30px rgba(25, 191, 91, 0.28);
}

.primary-cta {
  padding: 1rem 1.35rem;
  background: linear-gradient(135deg, var(--primary), #ff2638);
  color: #fff;
  box-shadow: 0 18px 42px rgba(215, 4, 22, 0.32);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  backdrop-filter: blur(14px);
}

.whatsapp-btn:hover,
.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.mobile-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #1a0b0c;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46) 50%, rgba(215, 4, 22, 0.24)), linear-gradient(0deg, rgba(15, 10, 10, 0.8), rgba(15, 10, 10, 0.08));
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.55rem 0.74rem;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(14px);
}

.section-kicker {
  color: var(--primary);
}

.mini-kicker {
  display: inline-flex;
  width: fit-content;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-pad {
  padding: 6rem 0;
}

.section-title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 950;
  line-height: 0.98;
  color: var(--ink);
}

.section-copy {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #555;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-metrics div,
.hero-info-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 1rem;
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-info-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  color: #fff;
}

.hero-info-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
}

.hero-info-card ul {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.hero-info-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
}

.hero-info-card li span {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(249, 192, 24, 0.16);
}

.hero-address {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1.3rem;
}

.hero-address small,
.hero-address span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.hero-address small {
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-address strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.05rem;
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -3.5rem;
  padding-bottom: 3rem;
}

.quick-item {
  border: 1px solid rgba(215, 4, 22, 0.14);
  border-radius: 8px;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(30, 10, 10, 0.13);
  backdrop-filter: blur(16px);
}

.quick-item span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}

.quick-item strong {
  display: block;
  margin-top: 1rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 950;
}

.quick-item p {
  margin-top: 0.45rem;
  color: #666;
  line-height: 1.65;
}

.stat-card,
.service-card,
.contact-card,
.feature-card,
.category-panel,
.about-media,
.map-wrap {
  border-radius: 8px;
}

.stat-card {
  border: 1px solid #f1d0d3;
  padding: 1.35rem;
  background: linear-gradient(145deg, #fff, #fff5f5);
  box-shadow: 0 18px 45px rgba(65, 20, 20, 0.08);
}

.stat-card strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.stat-card span {
  margin-top: 0.55rem;
  display: block;
  color: #5f5f5f;
  font-weight: 750;
}

.stat-card.compact {
  padding: 1rem;
}

.stat-card.compact strong {
  font-size: 1.55rem;
}

.about-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(40, 10, 10, 0.16);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 1.1rem;
  background: rgba(23, 23, 23, 0.66);
  color: #fff;
  backdrop-filter: blur(16px);
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  font-size: 1.35rem;
  font-weight: 950;
}

.about-badge span {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 750;
}

.detail-band {
  background: linear-gradient(180deg, #fff, #fff7f7);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border: 1px solid rgba(215, 4, 22, 0.13);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(54, 12, 12, 0.08);
  backdrop-filter: blur(12px);
}

.feature-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), #ff3445);
  color: #fff;
  font-weight: 950;
}

.feature-card h3 {
  margin-top: 1.1rem;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 950;
}

.feature-card p {
  margin-top: 0.55rem;
  color: #606060;
  line-height: 1.7;
}

.service-band {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0%, rgba(249, 192, 24, 0.18), transparent 32%), linear-gradient(135deg, #221010, #8f0612 48%, #15090a);
}

.service-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  text-align: center;
  backdrop-filter: blur(18px);
}

.service-card h3 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
}

.service-card p {
  margin-top: 0.8rem;
  color: #555;
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.service-tags span,
.category-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-tags span {
  padding: 0.42rem 0.56rem;
  background: #fff1f2;
  color: var(--primary-dark);
}

.category-panel {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  color: #fff;
  backdrop-filter: blur(18px);
}

.category-panel h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.category-list span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.62rem 0.78rem;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

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

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.11);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.gallery-item span {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-weight: 900;
  text-align: left;
  backdrop-filter: blur(12px);
}

.contact-band {
  background: linear-gradient(135deg, #171717, #2e0b0e 48%, #7f0611);
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(1.25rem, 4vw, 2rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.contact-header {
  margin-bottom: 1.4rem;
}

.contact-header h3 {
  margin-top: 0.35rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 950;
  line-height: 1;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list div {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  padding-bottom: 1rem;
}

.contact-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list dt {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list dd {
  margin-top: 0.28rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.outline-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(215, 4, 22, 0.26);
  border-radius: 8px;
  padding: 1rem 1.35rem;
  color: var(--primary-dark);
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease;
}

.outline-cta:hover {
  background: #fff1f2;
  transform: translateY(-2px);
}

.map-wrap {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.footer {
  background: #111;
}

.privacy-link {
  width: fit-content;
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-card,
.lightbox-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(84vh, 760px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.modal-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.modal-card h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
}

.modal-card p {
  margin-top: 1rem;
  color: #555;
  line-height: 1.8;
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-card {
  width: min(100%, 980px);
  background: #111;
}

.lightbox-card img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
}

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

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

@media (min-width: 768px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .gallery-wide {
    grid-column: span 2;
    aspect-ratio: 8 / 5;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-panel {
    grid-template-columns: 0.54fr 1fr;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 4.5rem 0;
  }

  .hero-image {
    object-position: 56% center;
  }

  .quick-strip {
    margin-top: -2.2rem;
  }

  .about-media,
  .about-media img {
    min-height: 390px;
  }
}
