:root {
  --primary: #d71920;
  --primary-dark: #9f1117;
  --yellow: #ffd21e;
  --blue: #0d4ea6;
}

* {
  border-radius: 8px;
}

html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: #18181b;
  font-family: Manrope, Arial, sans-serif;
}

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

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

img,
iframe {
  border-radius: 8px;
}

#siteHeader.header-hidden {
  transform: translateY(-120%);
}

.brand-logo {
  display: block;
  width: clamp(170px, 20vw, 260px);
  height: 48px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.nav-link {
  position: relative;
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  position: absolute;
  left: 0;
  content: "";
}

.hamburger::before {
  transform: translateY(-7px);
}

.hamburger::after {
  transform: translateY(7px);
}

#menuToggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

#menuToggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
}

#menuToggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
}

#mobileMenu a {
  display: block;
  padding: 14px 12px;
  font-weight: 800;
  color: #27272a;
}

#mobileMenu a + a {
  border-top: 1px solid rgba(39, 39, 42, 0.08);
}

#mobileMenu .mobile-whatsapp {
  margin-top: 8px;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.hero {
  isolation: isolate;
}

.hero-grid {
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 78%, transparent);
}

.glass-pill {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.section-band {
  position: relative;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.service-card {
  min-height: 285px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.72);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 22px 60px rgba(13, 78, 166, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgba(215, 25, 32, 0.3);
  box-shadow: 0 28px 70px rgba(215, 25, 32, 0.14);
  transform: translateY(-8px);
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #18181b;
}

.service-card p {
  margin-top: 12px;
  color: #52525b;
  line-height: 1.7;
}

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

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0;
}

.left-0 {
  left: 0;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.z-\[60\] {
  z-index: 60;
}

.hidden {
  display: none !important;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.place-items-center {
  place-items: center;
}

.flex-col {
  flex-direction: column;
}

.shrink-0 {
  flex-shrink: 0;
}

.min-w-0 {
  min-width: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.h-10 {
  height: 2.5rem;
}

.w-10 {
  width: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.w-11 {
  width: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-md {
  max-width: 28rem;
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bg-white {
  background: #fff;
}

.bg-zinc-50 {
  background: #fafafa;
}

.bg-zinc-950 {
  background: #09090b;
}

.bg-primary {
  background: var(--primary);
}

.bg-accent-yellow {
  background: var(--yellow);
}

.text-white {
  color: #fff;
}

.text-zinc-900 {
  color: #18181b;
}

.text-zinc-950 {
  color: #09090b;
}

.text-zinc-800 {
  color: #27272a;
}

.text-zinc-700 {
  color: #3f3f46;
}

.text-zinc-600 {
  color: #52525b;
}

.text-accent-yellow {
  color: var(--yellow);
}

.text-accent-blue {
  color: var(--blue);
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-normal {
  letter-spacing: 0;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-5xl {
  font-size: 3rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-28 {
  padding-top: 7rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pr-12 {
  padding-right: 3rem;
}

.right-4 {
  right: 1rem;
}

.top-4 {
  top: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-10 {
  gap: 2.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-zinc-200 {
  border-color: #e4e4e7;
}

.border-white\/35 {
  border-color: rgba(255, 255, 255, 0.35);
}

.bg-white\/78 {
  background: rgba(255, 255, 255, 0.78);
}

.bg-white\/92 {
  background: rgba(255, 255, 255, 0.92);
}

.bg-white\/12 {
  background: rgba(255, 255, 255, 0.12);
}

.bg-black\/55 {
  background: rgba(0, 0, 0, 0.55);
}

.from-black\/55,
.via-black\/35,
.to-black\/80 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.8));
}

.bg-zinc-950\/75 {
  background: rgba(9, 9, 11, 0.75);
}

.backdrop-blur-xl,
.backdrop-blur-sm {
  backdrop-filter: blur(18px);
}

.shadow-2xl,
.shadow-lg {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.transition,
.transition-transform {
  transition-property: all;
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

.hover\:bg-primary-dark:hover {
  background: var(--primary-dark);
}

.hover\:bg-white:hover {
  background: #fff;
}

.hover\:bg-white\/20:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.w-fit {
  width: fit-content;
}

.max-h-\[86vh\] {
  max-height: 86vh;
}

.w-\[min\(1120px\,calc\(100\%-32px\)\)\] {
  width: min(1120px, calc(100% - 32px));
}

.w-\[min\(1120px\,calc\(100\%-24px\)\)\] {
  width: min(1120px, calc(100% - 24px));
}

.w-\[min\(680px\,100\%\)\] {
  width: min(680px, 100%);
}

.grid-cols-\[0\.9fr_1\.1fr\] {
  grid-template-columns: 0.9fr 1.1fr;
}

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

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

.bg-gradient-to-b {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.8));
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }

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

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

  .sm\:w-auto {
    width: auto;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:text-xl {
    font-size: 1.25rem;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
  }

  .md\:text-7xl {
    font-size: 4.5rem;
  }

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

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-end {
    align-items: flex-end;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex !important;
  }

  .lg\:hidden {
    display: none !important;
  }

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

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

  .lg\:items-center {
    align-items: center;
  }

  .lg\:text-8xl {
    font-size: 6rem;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f4f5;
  box-shadow: 0 18px 44px rgba(24, 24, 27, 0.1);
}

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

.gallery-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(24, 24, 27, 0.54);
  padding: 9px 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

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

.contact-band {
  background: radial-gradient(circle at 18% 18%, rgba(255, 210, 30, 0.26), transparent 28%), linear-gradient(135deg, #991015, #d71920 42%, #0d4ea6);
}

.contact-panel,
.map-wrap {
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  padding: 26px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.contact-panel dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel dd {
  margin-top: 4px;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  word-break: break-word;
}

.contact-panel a {
  transition: color 0.25s ease;
}

.contact-panel a:hover {
  color: var(--yellow);
}

.map-wrap {
  padding: 0;
  overflow: hidden;
}

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

.modal-card {
  animation: modalIn 0.25s ease both;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 210px;
    max-width: calc(100vw - 150px);
    height: 46px;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .contact-panel,
  .map-wrap iframe {
    min-height: auto;
  }

  .map-wrap {
    min-height: 500px;
  }
}
