:root {
  --ink: #111827;
  --muted: #5b6472;
  --blue: #0f4c81;
  --blue-dark: #08365f;
  --orange: #f59e0b;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --font: "Inter", Arial, sans-serif;
  --display: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  background: var(--paper);
}

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

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

.container {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 1.1rem;
}

.topbar {
  display: none;
  background: var(--blue-dark);
  color: #dbeafe;
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.55rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: 210px;
}

.menu-btn {
  display: grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.nav-links {
  position: absolute;
  inset: 100% 1rem auto;
  display: none;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-links.active {
  display: grid;
}

.nav-links a {
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 800;
}

.nav-links a:hover {
  background: var(--soft);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: center;
}

.nav-cta,
.btn.primary {
  background: var(--orange);
  color: #111827;
}

.btn.light {
  background: #fff;
  color: var(--blue-dark);
}

.btn.outline {
  border-color: rgba(15, 76, 129, 0.28);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 54, 95, 0.92), rgba(8, 54, 95, 0.64), rgba(8, 54, 95, 0.25)),
    url("assets/optimized/carousel-1.webp") center / cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 6rem 4rem;
  color: #fff;
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.05;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.55rem, 10vw, 5.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 8vw, 3.75rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.35rem;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions {
  display: grid;
  gap: 0.8rem;
  width: min(100%, 450px);
  margin-top: 1.6rem;
}

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

.highlights-grid {
  display: grid;
  gap: 1rem;
  padding-block: 1rem;
}

.highlights article,
.service-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.highlights span {
  color: var(--orange);
  font-weight: 900;
}

.highlights h2 {
  margin: 0.45rem 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.highlights p,
.about p,
.service-grid p,
.contact-cards a {
  color: var(--muted);
}

.about,
.services,
.gallery,
.contact,
.reviews {
  padding: 4.5rem 0;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-content {
  display: grid;
  gap: 1rem;
  align-content: center;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.4rem 0;
  list-style: none;
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.services,
.contact {
  background: var(--soft);
}

.reviews {
  background: #fff;
  overflow: hidden;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-head.split {
  display: grid;
  gap: 1rem;
  max-width: none;
}

.review-controls {
  display: flex;
  gap: 0.55rem;
}

.review-nav {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 900;
}

.review-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 86%;
  min-height: 320px;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scroll-snap-align: start;
}

.reviewer {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.85rem;
  align-items: center;
}

.reviewer img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
}

.reviewer h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.reviewer span {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.stars::before {
  content: "★★★★★";
}

.review-card p {
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card a {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 900;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-grid article {
  min-height: 0;
  padding: 1rem;
}

.service-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--blue-dark);
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 5 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  cursor: zoom-in;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.contact-inner {
  max-width: 760px;
}

.contact-budget {
  margin-top: 1rem;
}

.contact-cards a {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.contact-cards span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--blue-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem;
  font: inherit;
}

.contact-cta {
  display: grid;
  gap: 1rem;
  align-content: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-cta h3 {
  color: var(--blue-dark);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.contact-cta p {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(8, 54, 95, 0.9);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(100%, 980px);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
}

.footer {
  padding: 2.5rem 0;
  background: var(--blue-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer img {
  width: 250px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer a {
  display: inline-flex;
  margin: 0 0.8rem 0.5rem 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (min-width: 640px) {
  .hero-actions {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 780px) {
  .topbar {
    display: block;
  }

  .menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0;
  }

  .nav-links .nav-cta {
    padding: 0.78rem 1rem;
  }

  .highlights-grid,
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid article {
    min-height: 185px;
    padding: 1.25rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .section-head.split {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 82vh;
  }

  .about,
  .services,
  .gallery,
  .reviews,
  .contact {
    padding: 6rem 0;
  }

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

  .review-card {
    flex-basis: calc(33.333% - 0.67rem);
  }
}
