:root {
  --ink: #151719;
  --black: #08090a;
  --navy: #172636;
  --navy-soft: #22374c;
  --brown: #5a3d2b;
  --gold: #d8a43d;
  --paper: #f7f4ee;
  --white: #ffffff;
  --muted: #6d716f;
  --line: rgba(21, 23, 25, 0.12);
  --shadow: 0 22px 60px rgba(8, 9, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.gallery-controls,
.header-tools,
.lang-toggle {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-size: 13px;
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  font-size: 15px;
  color: var(--muted);
}

.nav a:hover {
  color: var(--brown);
}

.header-tools {
  justify-content: flex-end;
}

.lang-toggle {
  gap: 6px;
  min-height: 40px;
  padding: 5px;
  border: 1px solid rgba(21, 23, 25, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(8, 9, 10, 0.08);
}

.lang-toggle span,
.lang-toggle strong {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border-radius: 999px;
}

.lang-toggle span {
  color: var(--white);
  background: var(--navy);
}

.lang-toggle strong {
  color: var(--muted);
}

body.lang-en .lang-toggle span {
  color: var(--muted);
  background: transparent;
}

body.lang-en .lang-toggle strong {
  color: var(--black);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(24px, 5vw, 56px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.9), rgba(23, 38, 54, 0.72) 42%, rgba(8, 9, 10, 0.28)),
    linear-gradient(0deg, rgba(8, 9, 10, 0.74), transparent 55%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.whatsapp {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-panel {
  width: min(420px, 100%);
  margin-top: 50px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-panel span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(260px, 1.1fr);
  gap: clamp(26px, 6vw, 80px);
  background: var(--white);
}

.intro p:last-child,
.contact h2 + p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.proof-band {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(18px, 4vw, 34px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}

.proof-band div {
  min-height: 150px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.proof-band .proof-intro {
  background: var(--gold);
  color: var(--black);
}

.proof-intro span {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-band strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.proof-band span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.proof-band .proof-intro span {
  color: rgba(8, 9, 10, 0.72);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.section-heading.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.services {
  background: linear-gradient(135deg, var(--navy), #0d1218);
  color: var(--white);
}

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

.service-grid article {
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-grid span {
  color: var(--gold);
  font-weight: 800;
}

.service-grid h3 {
  margin: 24px 0 12px;
  font-size: 20px;
}

.service-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.gallery-section {
  background: var(--paper);
}

.process {
  background: var(--white);
}

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

.process-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--black);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.gallery-controls {
  gap: 8px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--white);
  background: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 29vw);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding-bottom: 18px;
}

.gallery-track::-webkit-scrollbar {
  height: 10px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 999px;
}

.gallery-item {
  position: relative;
  height: clamp(260px, 36vw, 430px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  scroll-snap-align: start;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(8, 9, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-weight: 800;
  text-align: left;
}

.faq-section {
  background: var(--white);
}

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

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

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  background: var(--white);
}

.contact-heading {
  max-width: 900px;
}

.contact-heading p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: 18px;
  align-items: stretch;
  width: 100%;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(216, 164, 61, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 238, 0.94)),
    var(--white);
  box-shadow: var(--shadow);
}

.form-heading span,
.info-intro span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h3,
.info-intro h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.12;
}

.form-success {
  margin: 0;
  padding: 13px 14px;
  color: #173d26;
  background: #e9f6ee;
  border: 1px solid #b7dfc6;
  border-radius: 6px;
  font-weight: 700;
}

.contact-form label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 23, 25, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(216, 164, 61, 0.42);
  border-color: var(--gold);
}

.contact-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-info-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 38, 54, 0.98), rgba(8, 9, 10, 0.96)),
    var(--navy);
  border-radius: 8px;
}

.info-intro p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

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

.contact-grid a {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-grid a:hover {
  border-color: rgba(216, 164, 61, 0.7);
}

.contact-grid span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.contact-grid .address {
  grid-column: 1 / -1;
}

.map-link {
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  color: var(--black);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 800;
}

.map-section {
  background: var(--paper);
}

.map-button {
  color: var(--white);
  background: var(--navy);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: 18px;
  align-items: stretch;
}

.map-copy {
  display: grid;
  align-content: center;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, var(--brown), var(--navy));
  border-radius: 8px;
}

.map-copy span {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-copy strong {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.map-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.map-layout iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(8, 9, 10, 0.9);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 28px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 60px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(8, 9, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--white);
  border-radius: 6px;
  font-weight: 800;
}

.quick-contact a:first-child {
  color: var(--black);
  background: var(--gold);
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .proof-band,
  .map-layout,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    grid-auto-columns: minmax(235px, 72vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 14px;
  }

  .lang-toggle {
    min-height: 36px;
    font-size: 12px;
  }

  .lang-toggle span,
  .lang-toggle strong {
    min-width: 30px;
    height: 26px;
  }

  .hero {
    min-height: 82svh;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.row {
    align-items: start;
    flex-direction: column;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .footer {
    flex-direction: column;
    padding-bottom: 92px;
  }

  .lightbox {
    padding-inline: 12px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .quick-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .quick-contact a {
    flex: 1;
  }
}
