:root {
  --blue: #004f9e;
  --orange: #e86a10;
  --gold: #fdba12;
  --night: #060a11;
  --panel: #121c31;
  --panel-soft: #19243b;
  --text: #f7f9fd;
  --muted: #aeb8c9;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-600.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/montserrat-800.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/montserrat-900.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/open-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/open-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/open-sans-700.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(0, 79, 158, 0.2), transparent 30%),
    linear-gradient(180deg, #060a11 0%, #0b1220 48%, #060a11 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, rgba(253, 186, 18, 0.08), transparent 34%, rgba(0, 79, 158, 0.12));
  background-size: 180px 180px, auto;
  opacity: 0.65;
}

img,
picture,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 10, 17, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-mark picture,
.brand-mark img {
  width: 64px;
  height: 64px;
}

.brand-mark img {
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(253, 186, 18, 0.28));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.phone-link,
.account-nav,
.language-switcher {
  display: inline-flex;
  align-items: center;
}

.phone-link {
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
}

.phone-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.account-nav {
  gap: 8px;
  color: #dfe7f4;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.account-nav button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.account-nav a:hover,
.account-nav button:hover,
.footer-column a:hover {
  color: var(--gold);
}

.language-switcher {
  gap: 5px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-button {
  min-width: 40px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: #d9e2ee;
  background: transparent;
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-button.is-active {
  color: #06101c;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.hero {
  position: relative;
  overflow: hidden;
  background: #05080d;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 86px);
  min-height: 396px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 750ms ease, transform 900ms ease;
  transform: scale(1.025);
}

.slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.slide picture,
.slide img {
  width: 100%;
  height: 100%;
}

.slide picture {
  display: block;
}

.slide img {
  object-fit: cover;
  object-position: center;
  background: #05080d;
}

.slider-controls {
  position: absolute;
  right: 50%;
  bottom: 22px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 10, 17, 0.72);
  box-shadow: var(--shadow);
  transform: translateX(50%);
  backdrop-filter: blur(14px);
}

.slider-arrow,
.slider-dot {
  border: 0;
  cursor: pointer;
}

.slider-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.slider-arrow:hover {
  background: rgba(232, 106, 16, 0.8);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.slider-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--gold);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 84px;
  gap: 46px;
  align-items: start;
}

.intro-copy {
  padding-top: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(1.65rem, 4.2vw, 4.06rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-copy > p:last-child {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(25, 36, 59, 0.96), rgba(9, 15, 27, 0.96)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-card-header {
  padding: 30px 30px 0;
}

.contact-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.contact-form {
  display: grid;
  padding: 28px 30px 30px;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8e0ec;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(6, 10, 17, 0.62);
  outline: none;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(253, 186, 18, 0.16);
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 6px;
  color: #06101c;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
  gap: 10px;
}

.submit-button:hover {
  filter: brightness(1.06);
}

.submit-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(253, 186, 18, 0.22);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 17%),
    linear-gradient(90deg, #070a0f 0%, #1c252f 45%, #080b10 100%);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(128deg, transparent 0 7%, rgba(255, 255, 255, 0.32) 7.2%, transparent 7.8% 100%),
    linear-gradient(145deg, transparent 0 13%, rgba(0, 0, 0, 0.58) 13.2%, transparent 27% 100%);
  pointer-events: none;
  opacity: 0.58;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  width: min(1180px, calc(100% - 32px));
  min-height: 230px;
  margin: 0 auto;
  padding: 32px 0 28px;
  gap: 34px;
}

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

.footer-brand img {
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5));
}

.footer-brand picture {
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 2px 0;
  color: #ffffff;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 18px;
}

.footer-column h2 {
  margin-bottom: 2px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
}

.footer-column a {
  color: #d8e0e8;
  font-size: 0.92rem;
  line-height: 1.35;
}

.claim-link {
  margin-top: 8px;
  max-width: 140px;
  color: #ffffff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-links a {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.whatsapp-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #18d55d;
  box-shadow: 0 14px 30px rgba(24, 213, 93, 0.38);
}

.whatsapp-button svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 11, 0.82);
  backdrop-filter: blur(10px);
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1040px, 100%);
  max-height: min(92vh, 840px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(25, 36, 59, 0.98), rgba(6, 10, 17, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.gallery-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px 16px;
  gap: 18px;
}

.gallery-header h2 {
  font-size: clamp(1.35rem, 2.8vw, 2.15rem);
  line-height: 1.05;
}

.gallery-close,
.gallery-arrow {
  display: grid;
  border: 0;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.gallery-close:hover,
.gallery-arrow:hover {
  background: rgba(232, 106, 16, 0.85);
}

.gallery-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.gallery-close svg,
.gallery-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.gallery-stage {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 0 76px;
  background: #03060b;
}

.gallery-stage picture,
.gallery-stage img {
  width: 100%;
}

.gallery-stage picture {
  display: grid;
  place-items: center;
}

.gallery-stage img {
  max-height: min(58vh, 560px);
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.gallery-arrow-prev {
  left: 18px;
}

.gallery-arrow-next {
  right: 18px;
}

.gallery-footer {
  display: grid;
  padding: 14px 24px 20px;
  gap: 12px;
}

.gallery-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.gallery-thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    min-height: auto;
    padding: 12px 0;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .intro-section {
    grid-template-columns: 1fr;
    padding: 54px 0 68px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    gap: 12px;
  }

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

  .header-actions {
    align-items: flex-end;
    flex-direction: column;
  }

  .language-switcher {
    position: fixed;
    top: 30vh;
    right: 12px;
    z-index: 60;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(6, 10, 17, 0.84);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(14px);
  }

  .language-button {
    min-width: 42px;
    min-height: 42px;
    font-size: 0.76rem;
  }

  .phone-link span,
  .account-nav {
    font-size: 0.72rem;
  }

  .hero-slider {
    height: 68vh;
    min-height: 363px;
  }

  .slide img {
    object-position: center;
  }

  .gallery-modal {
    padding: 12px;
  }

  .gallery-dialog {
    max-height: 94vh;
  }

  .gallery-header {
    padding: 18px 16px 12px;
  }

  .gallery-stage {
    padding: 0 12px 58px;
  }

  .gallery-stage img {
    max-height: 58vh;
  }

  .gallery-arrow {
    top: auto;
    bottom: 10px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .gallery-arrow-prev {
    left: calc(50% - 54px);
  }

  .gallery-arrow-next {
    right: calc(50% - 54px);
  }

  .gallery-footer {
    padding: 12px 16px 16px;
  }

  .gallery-thumb {
    flex-basis: 64px;
    width: 64px;
    height: 46px;
  }

  .slider-controls {
    bottom: 14px;
    gap: 10px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
  }

  .intro-section {
    width: min(100% - 24px, 1180px);
    gap: 32px;
  }

  h1 {
    font-size: clamp(1.47rem, 9.1vw, 2.35rem);
  }

  .contact-card-header,
  .contact-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 28px, 1180px);
    gap: 24px 18px;
    padding: 28px 0 30px;
    align-items: start;
  }

  .footer-brand {
    grid-column: auto;
  }

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

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-column {
    min-width: 0;
    gap: 10px;
    padding-top: 4px;
  }

  .footer-column h2 {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .footer-column a {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .claim-link {
    max-width: none;
    font-size: 0.72rem;
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .whatsapp-button {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 360px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
