:root {
  --black: #050505;
  --ink: #151515;
  --muted: #66696f;
  --line: #e8e5df;
  --paper: #ffffff;
  --soft: #f7f6f2;
  --gold: #c8a45d;
  --gold-dark: #9b7a33;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(200, 164, 93, 0.72);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.botcheck {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  min-height: 62px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(5, 5, 5, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-switcher {
  position: relative;
  justify-self: end;
  z-index: 2;
}

.language-switcher summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  min-width: 70px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 820;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher div {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  min-width: 158px;
  max-width: min(220px, calc(100vw - 32px));
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.language-switcher:not([open]) div {
  display: none;
}

.language-switcher a {
  padding: 10px 12px;
  border-radius: 6px;
  color: currentColor;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 740;
}

.language-switcher a[aria-current="page"] {
  background: var(--gold);
  color: var(--black);
}

.site-header.is-hidden {
  transform: translateY(-120%);
}

.site-header.is-scrolled {
  color: #fff;
  background: rgba(5, 5, 5, 0.82);
  border-color: rgba(200, 164, 93, 0.24);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  flex: 0 0 auto;
  max-width: 100%;
}

.brand-logo {
  display: block;
  width: clamp(150px, 14vw, 202px);
  height: auto;
}

.footer-brand-logo {
  width: clamp(190px, 19vw, 260px);
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand-line {
  margin-top: 5px;
  color: currentColor;
  opacity: 0.68;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: currentColor;
  font-size: 0.88rem;
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(200, 164, 93, 0.16);
  opacity: 1;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(880px, 92svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  display: block;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  opacity: 0.88;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.12) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-content {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 86px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.6rem);
  font-weight: 760;
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 720;
}

h3 {
  font-size: 1.08rem;
  font-weight: 720;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 730;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d9ba76;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
}

.button-whatsapp {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(37, 211, 102, 0.14);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.72);
  background: rgba(37, 211, 102, 0.2);
}

.section {
  padding: 116px 0;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.intro {
  background: var(--black);
  color: #fff;
  padding: 72px 0;
}

.intro-grid,
.equipment-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.intro h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
}

.intro p:not(.eyebrow),
.equipment-grid p,
.about-copy p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
}

.section-heading {
  margin-bottom: 46px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  display: flex;
  min-height: 262px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-card:hover {
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.service-card-dark {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.card-number {
  display: block;
  margin-bottom: auto;
  padding-bottom: 42px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 760;
}

.service-card p,
.why-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.equipment-band {
  background: #0a0a0a;
  color: #fff;
}

.visual-band {
  padding-top: 0;
  background: #fff;
}

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

.visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.visual-card figcaption {
  padding: 16px;
  color: #fff;
  font-weight: 750;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 780;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.equipment-grid p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
}

.equipment-list {
  display: grid;
  gap: 12px;
}

.equipment-list span {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.about-copy {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.why {
  background: var(--soft);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.why-item {
  grid-column: span 2;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.why-item.feature {
  grid-column: span 4;
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.why-item.feature p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-section {
  background: #fff;
}

.contact-grid {
  align-items: stretch;
}

.contact-grid h2 {
  margin-bottom: 24px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink);
  font-weight: 700;
}

.contact-details a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(200, 164, 93, 0.65);
}

.contact-cta-panel {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.contact-cta-panel {
  align-content: center;
}

.button-outline-dark {
  color: var(--black);
  border-color: rgba(5, 5, 5, 0.24);
  background: transparent;
}

.button-outline-dark:hover,
.button-outline-dark:focus-visible {
  border-color: var(--gold);
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 40;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp {
  right: 18px;
  bottom: 18px;
  display: grid;
  inline-size: 56px;
  block-size: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  place-items: center;
  padding: 0;
  background: #25d366;
  color: #06170d;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.back-to-top {
  right: 18px;
  bottom: 82px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #fff;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  padding: 34px 0;
  background: var(--black);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-meta {
  display: grid;
  gap: 6px;
  text-align: right;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 720;
}

.social-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(200, 164, 93, 0.58);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.social-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(420px, calc(100% - 110px));
  padding: 12px;
  border: 1px solid rgba(200, 164, 93, 0.28);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.92);
  color: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-decoration: underline;
}

.button-cookie-secondary {
  min-height: 40px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.cookie-banner.is-hidden {
  display: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 650;
}

.legal-page {
  background: var(--soft);
}

.legal-main {
  width: min(calc(100% - 40px), 860px);
  margin: 0 auto;
  padding: 140px 0 90px;
}

.legal-main h1 {
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-main h2 {
  margin-top: 42px;
  color: var(--black);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-main p,
.legal-main li {
  color: var(--muted);
  font-size: 1rem;
}

.legal-notice {
  margin: 28px 0;
  padding: 18px;
  border: 1px solid rgba(200, 164, 93, 0.38);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .intro-grid,
  .equipment-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why-item,
  .why-item.feature {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
    grid-template-columns: minmax(0, auto) auto auto;
    gap: 10px;
    min-height: 58px;
    padding: 8px 9px;
  }

  .brand-logo {
    width: clamp(124px, 39vw, 154px);
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-switcher summary {
    min-width: 62px;
    min-height: 38px;
    padding-inline: 9px;
    font-size: 0.78rem;
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.36)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.72));
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding: 132px 0 54px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 4rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.9rem);
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .button {
    min-height: 46px;
    padding: 12px 15px;
  }

  .section {
    padding: 78px 0;
  }

  .section-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .intro {
    padding: 58px 0;
  }

  .service-grid,
  .why-grid,
  .visual-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-item,
  .why-item.feature {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .card-number {
    padding-bottom: 36px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    inline-size: 50px;
    block-size: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .back-to-top {
    right: 12px;
    bottom: 76px;
  }

  .cookie-banner {
    left: 12px;
    bottom: 82px;
    grid-template-columns: 1fr;
    width: calc(100% - 84px);
  }

  .cookie-banner div {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
