:root {
  --ink: #171717;
  --muted: #626262;
  --line: #e5e0d8;
  --paper: #fffdf9;
  --soft: #f6f1ea;
  --wood: #b98c5d;
  --red: #c72832;
  --red-dark: #951c24;
  --green: #1f8f54;
  --shadow: 0 18px 50px rgba(25, 20, 16, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

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

.topbar {
  background: #1d1a18;
  color: #f8f3ed;
  font-size: 0.86rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand img {
  width: 48px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand > span {
  display: block;
  color: var(--ink);
}

.brand > span > span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 0.93rem;
  color: #2e2b28;
}

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

.nav a:hover,
.nav a.active {
  color: var(--red);
  border-color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 11px;
}

.menu-toggle::before {
  top: 13px;
}

.menu-toggle span {
  top: 20px;
}

.menu-toggle::after {
  top: 27px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 0.95rem;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px rgba(199, 40, 50, 0.2);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-whatsapp {
  background: var(--green);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: #211f1d;
}

.hero {
  padding: 64px 0 38px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2ea 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--red);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 5vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  color: #393532;
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

.subcopy {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.trust-item {
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #4a4642;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-photo {
  position: relative;
}

.hero-photo img {
  height: min(68vh, 620px);
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

.quote-card strong {
  display: block;
  font-size: 1.05rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.91rem;
}

section {
  padding: 74px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 620px;
}

.promo {
  background: #211f1d;
  color: #fff;
}

.promo .subcopy,
.promo .eyebrow {
  color: #f0d7d1;
}

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

.price-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 166px;
}

.price-card span {
  color: var(--muted);
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.disclaimer {
  margin: 20px 0 0;
  color: #eaded0;
  font-size: 0.93rem;
}

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

.service-card,
.info-card,
.faq-item,
.contact-card,
.step-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(25, 20, 16, 0.05);
}

.service-card {
  padding: 22px;
}

.service-card p,
.info-card p,
.step-card p,
.contact-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card .num {
  color: var(--red);
  font-weight: 850;
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
}

.split-media img {
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-media img:nth-child(2) {
  height: 340px;
  margin-top: 44px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #383431;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.57em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

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

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

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  min-height: 260px;
}

.gallery-card img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 240ms ease;
}

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

.gallery-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px;
  background: rgba(255, 253, 249, 0.94);
  border-radius: 6px;
  font-weight: 800;
}

.gallery-label span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
}

.filter-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2ea 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 36px;
  align-items: center;
}

.page-hero img {
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  padding: 24px;
}

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

.step-card {
  padding: 22px;
}

.step-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-weight: 850;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex: 0 0 auto;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  padding: 26px;
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.cta-band {
  padding: 44px 0;
  background: #211f1d;
  color: #fff;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.cta-band p {
  margin-bottom: 0;
  color: #eaded0;
}

.site-footer {
  padding: 42px 0 26px;
  background: #111;
  color: #f7f1ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 30px;
}

.site-footer a,
.site-footer p {
  color: #d7cfc5;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bdb5ad;
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 52px;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1040px) {
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    padding: 10px 20px 18px;
    background: #fffdf9;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

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

  .hero-grid,
  .split,
  .page-hero .container {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .topbar span:first-child {
    display: none;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-photo img,
  .page-hero img {
    min-height: 0;
    height: 360px;
  }

  .quote-card {
    position: static;
    margin-top: 12px;
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .price-grid,
  .service-grid,
  .gallery-preview,
  .gallery-grid,
  .info-grid,
  .steps,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cta-band .container {
    display: block;
  }

  .split-media {
    grid-template-columns: 1fr;
  }

  .split-media img,
  .split-media img:nth-child(2) {
    height: 320px;
    margin-top: 0;
  }

  section {
    padding: 54px 0;
  }

  .floating-whatsapp {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
