:root {
  --black: #080808;
  --ink: #151515;
  --gray: #242424;
  --soft-gray: #f4f4f4;
  --muted: #c8c8c8;
  --orange: #f47b20;
  --orange-strong: #ff8a24;
  --blue: #1677d2;
  --blue-strong: #0f5fb3;
  --whatsapp: #25d366;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--black);
  line-height: 1.6;
}

body.nav-open {
  overflow: auto;
}

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

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

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

.section {
  padding: 88px 0;
  background: var(--white);
}

.dark {
  color: var(--white);
  background: var(--black);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  min-height: 78px;
  padding: 11px clamp(16px, 4vw, 44px);
  color: var(--white);
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--black);
  font-size: 25px;
  font-weight: 900;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--black), 0 0 0 2px var(--orange);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 18px;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 1.7vw, 24px);
  color: #eeeeee;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.primary-nav a {
  padding: 12px 2px;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--orange);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.icon-cta img {
  width: 21px;
  height: 21px;
  margin-right: 8px;
}

.icon-cta.call,
.btn.primary {
  color: var(--white);
  background: var(--blue);
}

.icon-cta.whatsapp,
.btn.whatsapp-btn {
  color: var(--white);
  background: #159947;
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
  align-items: end;
  gap: 36px;
  min-height: calc(100svh - 78px);
  padding: 96px 0 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 670px;
  color: #eeeeee;
  font-size: clamp(17px, 2vw, 22px);
}

.hero-panel,
.contact-card,
.review-card,
.service-card {
  border-radius: var(--radius);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 20px;
  background: rgba(10, 10, 10, 0.76);
}

.hero-panel span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.copy-block {
  color: #3f3f3f;
  font-size: 18px;
}

.copy-block p:last-child,
.contact-card p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid,
.review-grid,
.gallery-grid,
.reason-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 28px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card p {
  color: #d4d4d4;
  margin-bottom: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--black);
  font-weight: 900;
  background: var(--orange);
  border-radius: 50%;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.reason-grid div {
  min-height: 74px;
  padding: 20px 20px 20px 54px;
  font-weight: 800;
  background: var(--soft-gray);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  position: relative;
}

.reason-grid div::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 27px;
  width: 13px;
  height: 13px;
  background: var(--orange);
  border-radius: 50%;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #222;
}

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

.review-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--soft-gray);
  border: 1px solid #e3e3e3;
}

.stars {
  color: var(--orange);
  font-size: 20px;
  letter-spacing: 0;
}

.review-card p {
  color: #333333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-intro {
  color: #d8d8d8;
  font-size: 18px;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 30px;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card a:not(.btn) {
  display: inline-block;
  margin-top: 4px;
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.contact-card p {
  margin: 4px 0 0;
  color: #ededed;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 40vh;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.2);
}

.site-footer {
  padding: 52px 0 28px;
  color: var(--white);
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 42px;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: var(--orange);
}

.site-footer p,
.site-footer a {
  display: block;
  color: #d7d7d7;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 7px;
}

.developer-credit {
  margin-top: 34px;
  padding-top: 18px;
  color: #bdbdbd;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-credit a {
  display: inline;
  color: var(--orange);
  font-weight: 800;
}

.mobile-quick-actions {
  display: none;
}

.floating-contact {
  position: fixed;
  right: 18px;
  top: 62%;
  z-index: 70;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.floating-contact__button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-contact__button:hover,
.floating-contact__button:focus-visible {
  transform: translateX(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  filter: saturate(1.08);
}

.floating-contact__button img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.floating-contact__button--phone {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
}

.floating-contact__button--whatsapp {
  background: var(--whatsapp);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .primary-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 55;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.38);
  }

  .primary-nav.is-open a {
    display: block;
    width: 100%;
    color: var(--white);
    padding: 13px 0;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .primary-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .hero-content,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: center;
  }

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

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .section {
    padding: 62px 0;
  }

  .site-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .brand-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .primary-nav.is-open {
    top: 100%;
    left: 0;
    right: 0;
  }

  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero-content {
    min-height: calc(100svh - 72px);
    padding: 58px 0 96px;
  }

  .hero-bg img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28));
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn,
  .icon-cta {
    width: 100%;
  }

  .service-grid,
  .review-grid,
  .reason-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .review-card {
    min-height: auto;
  }

  .gallery-grid img {
    aspect-ratio: 1 / 1;
  }

  .map-section iframe {
    height: min(92vw, 420px);
    min-height: 0;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .floating-contact {
    right: 12px;
    top: auto;
    bottom: 92px;
    gap: 10px;
    transform: none;
  }

  .floating-contact__button {
    width: 50px;
    height: 50px;
  }

  .floating-contact__button img {
    width: 24px;
    height: 24px;
  }

  .mobile-quick-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-quick-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    color: var(--white);
    font-weight: 900;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.34);
  }

  .mobile-quick-actions a:first-child {
    color: var(--white);
    background: var(--blue);
  }

  .mobile-quick-actions img {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 380px) {
  .section-inner {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }
}
