:root {
  --teal: #d7a629;
  --teal-dark: #1b2430;
  --navy: #0b1018;
  --mint: #fff1bc;
  --amber: #f6c341;
  --gold-soft: #fff5d5;
  --ink: #111827;
  --muted: #5b6675;
  --line: #e5d8b8;
  --paper: #ffffff;
  --soft: #fffaf0;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  --shadow-soft: 0 12px 30px rgba(39, 31, 15, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.navbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  color: #1f2937;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px !important;
  border: 1px solid rgba(215, 166, 41, 0.32) !important;
  border-radius: 999px;
  color: var(--teal-dark) !important;
  background: var(--mint);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--teal-dark);
  font-size: 20px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.91), rgba(13, 17, 25, 0.64) 48%, rgba(13, 17, 25, 0.18)),
    linear-gradient(0deg, rgba(8, 10, 14, 0.46), rgba(8, 10, 14, 0.08) 38%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: #fff;
  padding: 80px 0 110px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff7df;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff9e6;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero-actions,
.footer-inner,
.contact-list a,
.contact-list p {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(27, 36, 48, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(27, 36, 48, 0.24);
}

.btn.primary {
  background: linear-gradient(135deg, #d7a629, #f6c341);
  color: #111827;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-dark);
}

.hero-note {
  margin-top: 18px !important;
  color: #f9e7b4 !important;
  font-size: 15px !important;
  font-weight: 700;
}

.intro-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  color: #fff;
}

.intro-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-grid div {
  padding: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.intro-grid div::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 48px;
  height: 3px;
  background: var(--amber);
}

.intro-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid strong {
  font-size: 20px;
}

.intro-grid span {
  color: #f7e6b2;
}

.section {
  padding: 88px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

h2 {
  max-width: 800px;
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin: 14px 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.text-block p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.section-lead {
  max-width: 720px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.services,
.faq {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 255, 255, 0.92)),
    var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.service-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 166, 41, 0.44);
  box-shadow: 0 22px 42px rgba(27, 36, 48, 0.12);
}

.service-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), #fff8df);
  color: var(--teal-dark);
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
  margin-top: 36px;
}

.gallery-grid figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(10, 15, 24, 0.78);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.process {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.process-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fffaf0);
  box-shadow: var(--shadow-soft);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--gold-soft);
  border: 1px solid rgba(245, 158, 11, 0.28);
  font-weight: 900;
}

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

.service-area {
  padding: 54px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.service-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.service-area h2 {
  margin-bottom: 0;
  max-width: 660px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--teal);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.contact-list a,
.contact-list p {
  gap: 12px;
  margin: 0;
  color: #263241;
  font-weight: 800;
}

.contact-list i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mint), #fff8df);
  color: var(--teal-dark);
}

.map-panel {
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--soft);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.site-footer {
  background: var(--navy);
  color: #d6e8e5;
  padding: 28px 0;
}

.footer-inner {
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.24);
  transition: transform 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn.call {
  background: linear-gradient(135deg, #d7a629, #f6c341);
  color: #111827;
}

.float-btn.whatsapp {
  background: #25d366;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .intro-grid,
  .two-col,
  .contact-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid div,
  .intro-grid div:last-child {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

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

@media (max-width: 620px) {
  .navbar,
  .container,
  .hero-content,
  .intro-grid {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-content {
    padding: 64px 0 86px;
  }

  .hero-overlay {
    background: rgba(8, 26, 31, 0.68);
  }

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

  .section {
    padding: 64px 0;
  }

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

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

  .gallery-grid figure:first-child {
    grid-row: auto;
  }

  .gallery-grid figure {
    min-height: 280px;
  }

  .hero-badges span {
    width: 100%;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

  .floating-contact {
    display: none;
  }

  .float-btn {
    width: 54px;
    height: 54px;
  }
}
