@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #0c142b;
  --navy-900: #111d3e;
  --navy-800: #1c2544;
  --blue-600: #426aa6;
  --blue-500: #4b73b3;
  --gold-500: #f39208;
  --gold-400: #ffab2d;
  --ink: #17203a;
  --muted: #667085;
  --line: #dde3ed;
  --paper: #f4f6fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(12, 20, 43, 0.09);
  --shadow-lg: 0 24px 70px rgba(12, 20, 43, 0.2);
  --radius: 1.25rem;
  --container: min(1180px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 700;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-500);
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--navy-800);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.85rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.7rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 46rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.topbar {
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 0.86rem;
  font-weight: 700;
}

.topbar__inner {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(12, 20, 43, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 5.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(11.5rem, 18vw, 15rem);
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.6vw, 1.65rem);
}

.nav__links a,
.nav__toggle,
.language-link {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav__links > a {
  position: relative;
  padding-block: 0.6rem;
}

.nav__links > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold-500);
  transition: transform 180ms ease;
}

.nav__links > a:hover::after,
.nav__links > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.language-link:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.nav__toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.27rem auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 7.5rem));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 15, 34, 0.97) 0%, rgba(8, 15, 34, 0.78) 47%, rgba(8, 15, 34, 0.32) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__copy {
  max-width: 47rem;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero__copy > p:not(.eyebrow) {
  max-width: 41rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 0.7rem;
  background: var(--gold-500);
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--gold-400);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-950);
}

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

.button--navy:hover {
  background: var(--navy-800);
}

.estimate-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
}

.estimate-card h2 {
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.estimate-card > p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-grid {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.35rem;
}

.field {
  display: grid;
  gap: 0.38rem;
}

.field label {
  color: var(--navy-900);
  font-size: 0.85rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #c8d0dd;
  border-radius: 0.55rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(75, 115, 179, 0.2);
}

.form-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="success"] {
  color: #136c3c;
}

.form-status[data-state="error"] {
  color: #a12626;
}

.trust-strip {
  background: var(--navy-900);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 7.25rem;
  display: grid;
  align-content: center;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--gold-400);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.trust-item span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
}

.section {
  padding-block: clamp(4.75rem, 9vw, 8rem);
}

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

.section--navy {
  background: var(--navy-950);
  color: var(--white);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.section-heading__copy {
  max-width: 45rem;
}

.section-heading .lead {
  margin-top: 1rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 33rem;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split__badge {
  position: absolute;
  right: -1.5rem;
  bottom: 2.5rem;
  max-width: 13rem;
  padding: 1.3rem;
  border-radius: 1rem;
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.split__copy p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
}

.split__copy .button {
  margin-top: 1.7rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 24rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--navy-900);
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
}

.service-card:nth-child(1),
.service-card:nth-child(5) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(6) {
  grid-column: span 5;
}

.service-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 43, 0.02) 25%, rgba(12, 20, 43, 0.95) 100%);
}

.service-card__content {
  width: 100%;
  padding: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  color: var(--white);
}

.service-card p {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  opacity: 0;
  transition: max-height 240ms ease, opacity 240ms ease, margin-top 240ms ease;
}

.service-card__link {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.service-card__arrow {
  position: absolute;
  right: 1.3rem;
  bottom: 1.4rem;
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 1.25rem;
  transition: transform 200ms ease;
}

.service-card:hover img,
.service-card:focus-within img {
  transform: scale(1.045);
}

.service-card:hover p,
.service-card:focus-within p {
  max-height: 5rem;
  margin-top: 0.55rem;
  opacity: 1;
}

.service-card:hover .service-card__arrow,
.service-card:focus-within .service-card__arrow {
  transform: translate(3px, -3px);
}

.project-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 15rem);
  gap: 1rem;
}

.project-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.project-mosaic img:first-child {
  grid-row: 1 / -1;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quote-card:hover {
  transform: translateY(-0.2rem);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.quote-card:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.quote-card__stars {
  color: var(--gold-500);
  font-size: 1.1rem;
  letter-spacing: 0.18em;
}

.quote-card blockquote {
  margin: 1rem 0 1.3rem;
  color: #344054;
  font-size: 1.02rem;
}

.quote-card footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  font-weight: 700;
}

.quote-card footer img {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-source {
  width: fit-content;
  margin-top: 1.15rem;
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 0.25rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius);
  background: var(--gold-500);
  color: var(--navy-950);
}

.cta-panel::after {
  content: "MS";
  position: absolute;
  right: -1rem;
  bottom: -5.5rem;
  color: rgba(255, 255, 255, 0.18);
  font-family: "Poppins", sans-serif;
  font-size: clamp(9rem, 24vw, 18rem);
  font-weight: 800;
  line-height: 1;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  max-width: 45rem;
  margin-top: 0.8rem;
}

.page-hero {
  --hero-image: none;
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(8, 15, 34, 0.96), rgba(8, 15, 34, 0.5));
}

.page-hero__copy {
  max-width: 52rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero h1 {
  max-width: 48rem;
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.prose h2 {
  margin-bottom: 1.2rem;
}

.prose p + p {
  margin-top: 1rem;
}

.prose p {
  color: var(--muted);
  font-size: 1.06rem;
}

.offer-card {
  position: sticky;
  top: 7rem;
  padding: 1.7rem;
  border-top: 5px solid var(--gold-500);
  border-radius: 0.85rem;
  background: var(--paper);
}

.offer-card h2 {
  font-size: 1.35rem;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #3b465c;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 900;
}

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

.gallery figure {
  grid-column: span 6;
  margin: 0;
}

.gallery figure:nth-child(3n + 1) {
  grid-column: span 7;
}

.gallery figure:nth-child(3n + 2) {
  grid-column: span 5;
}

.gallery img {
  width: 100%;
  height: clamp(18rem, 36vw, 32rem);
  border-radius: 1rem;
  object-fit: cover;
}

.gallery figcaption {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.project-card img {
  width: 100%;
  height: 17rem;
  object-fit: cover;
}

.project-card__copy {
  padding: 1.35rem;
}

.project-card__copy p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.project-card__copy a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue-600);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5.5rem);
}

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

.contact-item {
  padding: 1.15rem;
  border-left: 4px solid var(--gold-500);
  background: var(--paper);
}

.contact-item strong {
  display: block;
  font-family: "Poppins", sans-serif;
}

.contact-item a {
  color: var(--blue-600);
}

.contact-form {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.site-footer {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.3fr) 0.6fr 0.9fr 0.8fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 15rem;
}

.footer-brand p {
  max-width: 30rem;
  margin-top: 1rem;
}

.footer-column h2 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  width: fit-content;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  min-height: 2.75rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.social-link:hover {
  color: var(--gold-400);
}

.social-link__icon {
  display: grid;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #1877f2;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.footer-bottom {
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--white);
}

.whatsapp {
  position: fixed;
  z-index: 90;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #25d366;
  color: #063d1b;
  box-shadow: 0 14px 35px rgba(7, 69, 30, 0.3);
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.whatsapp:hover {
  transform: translateY(-2px);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  :root {
    --container: min(100% - 2rem, 760px);
  }

  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__inner span:last-child {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: calc(5.15rem + 2.35rem);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 2rem 1.3rem;
    transform: translateX(100%);
    background: var(--navy-950);
    transition: transform 220ms ease;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__links > a {
    padding: 1rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 1.15rem;
  }

  .language-link {
    width: fit-content;
    margin-top: 1.2rem;
  }

  .hero {
    min-height: auto;
  }

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

  .hero__grid {
    padding-block: 4rem;
  }

  .estimate-card {
    max-width: 35rem;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .split__media img {
    min-height: 28rem;
  }

  .split__badge {
    right: 1rem;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: span 6;
  }

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

  .offer-card {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100% - 1.25rem, 34rem);
  }

  html {
    scroll-padding-top: 6rem;
  }

  .topbar {
    font-size: 0.76rem;
  }

  .nav {
    min-height: 4.6rem;
  }

  .brand img {
    width: 10.7rem;
  }

  .nav__links {
    top: calc(4.6rem + 2.35rem);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(8, 15, 34, 0.93), rgba(8, 15, 34, 0.8));
  }

  .hero__grid {
    padding-block: 3.2rem;
  }

  .hero__actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    min-height: 5.8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    margin-top: 1.2rem;
  }

  .split__media img {
    min-height: 24rem;
  }

  .split__badge {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: 1 / -1;
    min-height: 20rem;
  }

  .service-card p {
    max-height: 5rem;
    margin-top: 0.55rem;
    opacity: 1;
  }

  .project-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 14rem);
  }

  .project-mosaic img:first-child {
    grid-row: auto;
  }

  .testimonials,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .button {
    width: 100%;
  }

  .page-hero {
    min-height: 29rem;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(8, 15, 34, 0.55), rgba(8, 15, 34, 0.96));
  }

  .page-hero__copy {
    padding-block: 3.5rem;
  }

  .gallery figure,
  .gallery figure:nth-child(3n + 1),
  .gallery figure:nth-child(3n + 2) {
    grid-column: 1 / -1;
  }

  .gallery img {
    height: 22rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1.2rem;
  }

  .whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Visual system v2 — architectural editorial direction */
:root {
  --paper: #f6f7f9;
  --line: #d9dee8;
  --radius: 0.45rem;
  --shadow-sm: 0 16px 42px rgba(12, 20, 43, 0.08);
  --shadow-lg: 0 32px 90px rgba(12, 20, 43, 0.18);
}

body {
  overflow-x: hidden;
  background: #ffffff;
}

.topbar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.topbar a {
  color: var(--gold-400);
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(12, 20, 43, 0.11);
}

.nav {
  min-height: 5.6rem;
}

.brand img {
  width: clamp(11.8rem, 17vw, 14.2rem);
  height: auto;
  aspect-ratio: 2550 / 1093;
  object-fit: contain;
}

.nav__links a,
.nav__toggle,
.language-link {
  color: var(--navy-950);
}

.language-link {
  border-color: rgba(12, 20, 43, 0.24);
}

.nav__toggle {
  border-color: rgba(12, 20, 43, 0.24);
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  background: var(--navy-950);
}

.hero {
  min-height: auto;
  overflow: hidden;
  background: var(--navy-950);
}

.hero::before,
.hero::after {
  display: none;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(1rem, 2vw, 1.7rem);
}

.hero__copy::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  bottom: 0.15rem;
  left: 0;
  width: 3px;
  background: var(--gold-500);
}

.hero__copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5.7vw, 5.4rem);
}

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.06;
  min-width: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1rem;
  right: -1rem;
  width: 38%;
  height: 32%;
  border-top: 2px solid var(--gold-500);
  border-right: 2px solid var(--gold-500);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-lg);
}

.hero__proof {
  position: absolute;
  z-index: 3;
  right: -1rem;
  bottom: 2rem;
  min-width: 11.5rem;
  display: grid;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.hero__proof strong {
  color: var(--navy-950);
  font-family: "Poppins", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.hero__proof span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.estimate-band {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.estimate-band__grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2rem, 4vw, 3.2rem);
}

.estimate-band h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.025em;
}

.estimate-band p:not(.eyebrow):not(.form-note) {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.estimate-inline {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  margin-top: 0;
}

.estimate-inline .button {
  min-height: 3.2rem;
  white-space: nowrap;
}

.estimate-inline .form-note,
.estimate-inline .form-status {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--navy-950);
}

.trust-item {
  min-height: 6.4rem;
  border-right-color: var(--line);
}

.trust-item strong {
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.trust-item span {
  color: var(--muted);
}

.section {
  padding-block: clamp(5rem, 8vw, 8.5rem);
}

.section-heading {
  position: relative;
  padding-left: clamp(1rem, 2vw, 1.8rem);
}

.section-heading::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--gold-500);
}

.split__media {
  position: relative;
}

.split__media::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -1rem;
  bottom: -1rem;
  width: 62%;
  height: 54%;
  background: var(--gold-500);
}

.split__media:not(.split__media--owner) img {
  min-height: 0;
  height: auto;
  border-radius: var(--radius);
}

.split__media--owner {
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dbe1e8;
  box-shadow: var(--shadow-lg);
}

.split__media--owner::before {
  display: none;
}

.split__media--owner .owner-portrait {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.split__badge {
  right: 1rem;
  bottom: 1rem;
  border-radius: var(--radius);
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card,
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: auto;
  min-height: clamp(25rem, 42vw, 31rem);
  border-radius: var(--radius);
}

.service-card:nth-child(7) {
  grid-column: 1 / -1;
  min-height: clamp(25rem, 36vw, 30rem);
}

.service-card::after {
  background: linear-gradient(180deg, rgba(12, 20, 43, 0.04) 18%, rgba(12, 20, 43, 0.94) 100%);
}

.service-card__content {
  padding: clamp(1.35rem, 3vw, 2rem);
  padding-right: 5.25rem;
}

.service-card__label {
  max-height: none !important;
  margin: 0 0 0.55rem !important;
  color: var(--gold-400) !important;
  font-family: "Poppins", sans-serif;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 1 !important;
  text-transform: uppercase;
}

.service-card__content > p:last-child {
  max-width: 31rem;
  max-height: none;
  margin-top: 0.55rem;
  opacity: 1;
}

.service-card__number {
  position: absolute;
  z-index: 1;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(12, 20, 43, 0.48);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.service-card__arrow {
  right: 1.4rem;
  bottom: 1.55rem;
  border-radius: var(--radius);
}

.project-mosaic img,
.quote-card,
.project-card,
.gallery img,
.video-frame,
.contact-form,
.offer-card {
  border-radius: var(--radius);
}

.quote-card {
  border-top: 3px solid var(--gold-500);
}

.page-hero {
  min-height: clamp(30rem, 52vw, 39rem);
}

.page-hero::before {
  background-position: center 48%;
}

.page-hero__copy {
  position: relative;
  padding-left: clamp(1rem, 2vw, 1.8rem);
}

.page-hero__copy::before {
  content: "";
  position: absolute;
  top: clamp(4rem, 8vw, 7rem);
  bottom: clamp(4rem, 8vw, 7rem);
  left: 0;
  width: 3px;
  background: var(--gold-500);
}

.about-hero {
  overflow: hidden;
  background: var(--navy-950);
}

.about-hero__media {
  overflow: hidden;
  background: #071126;
}

.about-hero__media img {
  width: 100%;
  height: auto;
}

.about-hero__intro {
  border-top: 4px solid var(--gold-500);
  background: var(--navy-950);
}

.about-hero__copy {
  position: relative;
  padding: clamp(2.3rem, 5vw, 4.5rem) 0 clamp(2.8rem, 6vw, 5.2rem) clamp(1rem, 2vw, 1.8rem);
}

.about-hero__copy::before {
  content: "";
  position: absolute;
  top: clamp(2.3rem, 5vw, 4.5rem);
  bottom: clamp(2.8rem, 6vw, 5.2rem);
  left: 0;
  width: 3px;
  background: var(--gold-500);
}

.about-hero__copy h1 {
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
}

.about-hero__copy > p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.gallery img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figure:only-child {
  grid-column: 1 / -1;
}

.project-card img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cta-panel {
  border-left: 6px solid var(--gold-500);
  border-radius: var(--radius);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel h2 {
  color: #ffffff;
}

.cta-panel::after {
  color: rgba(255, 255, 255, 0.05);
}

.cta-panel .button--navy {
  background: var(--gold-500);
  color: var(--navy-950);
}

.footer-brand img {
  width: min(16rem, 100%);
  height: auto !important;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: left center;
}

.email-link {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.email-link:hover {
  color: var(--gold-400);
}

.contact-item .email-link {
  color: var(--blue-600);
}

.service-area-section {
  background: var(--navy-950);
  color: #ffffff;
}

.service-area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.service-area-grid h2,
.service-area-grid .prose,
.service-area-grid .prose strong {
  color: #ffffff;
}

.service-area-grid .prose p {
  color: rgba(255, 255, 255, 0.8);
}

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

.faq-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.faq-grid h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.faq-grid p {
  margin-top: 0.75rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .nav {
    min-height: 4.9rem;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    min-height: calc(100dvh - 4.9rem);
    max-height: calc(100dvh - 4.9rem);
    overflow-y: auto;
    padding: 1.5rem max(1.25rem, env(safe-area-inset-right)) max(2rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
    background: #ffffff;
  }

  .nav__links > a {
    border-bottom-color: var(--line);
    color: var(--navy-950);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__copy {
    max-width: 46rem;
  }

  .hero__visual {
    aspect-ratio: 16 / 10;
  }

  .hero__proof {
    right: 1rem;
  }

  .estimate-band__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .split__media--owner {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  .footer-brand img {
    width: 13rem;
  }

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

@media (max-width: 720px) {
  .estimate-inline {
    grid-template-columns: 1fr 1fr;
  }

  .estimate-inline .button,
  .estimate-inline .form-note,
  .estimate-inline .form-status {
    grid-column: 1 / -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7) {
    grid-column: 1;
    min-height: 25rem;
  }
}

@media (max-width: 640px) {
  .topbar__inner {
    min-height: 2.55rem;
  }

  .nav {
    min-height: 4.65rem;
  }

  .brand img {
    width: 10.9rem;
  }

  .nav__links {
    min-height: calc(100dvh - 4.65rem);
    max-height: calc(100dvh - 4.65rem);
  }

  .hero__grid {
    gap: 2rem;
    padding-block: 0 2.75rem;
  }

  .hero__copy {
    order: 2;
    padding-left: 0.9rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
  }

  .hero__visual {
    order: 1;
    width: calc(100% + 2.5rem);
    margin-inline: -1.25rem;
    aspect-ratio: 3 / 2;
  }

  .hero__visual img {
    object-position: center center;
  }

  .hero__visual::before {
    top: 0;
    right: 1.25rem;
  }

  .hero__proof {
    right: 0.55rem;
    bottom: 0.55rem;
    min-width: 9.5rem;
  }

  .estimate-band__grid {
    padding-block: 2.5rem;
  }

  .estimate-inline {
    grid-template-columns: 1fr;
  }

  .estimate-inline .button,
  .estimate-inline .form-note,
  .estimate-inline .form-status {
    grid-column: auto;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    border-bottom-color: var(--line);
  }

  .section-heading {
    padding-left: 0.9rem;
  }

  .split__media--owner {
    aspect-ratio: auto;
  }

  .split__media--owner .owner-portrait {
    object-position: center;
    transform: none;
  }

  .about-hero__media {
    aspect-ratio: 16 / 9;
  }

  .about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
  }

  .about-hero__copy {
    padding: 2.5rem 0 3rem 0.9rem;
  }

  .about-hero__copy::before {
    top: 2.5rem;
    bottom: 3rem;
  }

  .split__badge {
    right: 0.65rem;
    bottom: 0.65rem;
    max-width: 11.5rem;
    padding: 0.9rem;
    font-size: 0.78rem;
  }

  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(7) {
    min-height: 23rem;
  }

  .service-card__content {
    padding: 1.2rem 4.7rem 1.25rem 1.2rem;
  }

  .page-hero__copy {
    padding-left: 0.9rem;
  }

  .page-hero__copy::before {
    top: 3.5rem;
    bottom: 3.5rem;
  }

  .gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .footer-brand img {
    width: min(15rem, 100%);
    height: auto !important;
    max-height: none;
  }
}
