:root {
  --sand: #efe6d4;
  --sand-deep: #e4d7bc;
  --ink: #171411;
  --ticket: #fffdf8;
  --ember: #ff3b00;
  --ember-dark: #c72e00;
  --mark: #d6ff3d;
  --steel: #5c5348;
  --line: rgba(23, 20, 17, 0.1);
  --shadow: 0 24px 50px rgba(23, 20, 17, 0.16);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 1px 1px, rgba(23,20,17,.05) 1px, transparent 0) 0 0 / 18px 18px,
    var(--sand);
  font-family: "Outfit", "Segoe UI", sans-serif;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, .font-display, .navbar-brand strong {
  font-family: "Bricolage Grotesque", "Outfit", sans-serif;
  letter-spacing: -0.04em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
section { padding: 0; }

.topbar {
  background: var(--ink);
  color: #f3ead8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
}
.topbar a { color: var(--mark); }

.navbar-custom {
  background: rgba(239, 230, 212, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-lockup img { width: 42px; height: 42px; border-radius: 10px; }
.brand-text { line-height: 1.05; }
.brand-text strong { display: block; font-size: 1.02rem; color: var(--ink); }
.brand-text span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
.brand-text span.brand-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 2px;
  padding: 0;
  background: var(--ember);
  border-radius: 50%;
  vertical-align: 1px;
  letter-spacing: 0;
  font-size: 0;
}
.navbar-custom .navbar-toggler {
  border: 1.5px solid var(--ink);
  padding: 6px 8px;
}
.navbar-custom .nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 12px !important;
}
.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover { color: var(--ember) !important; }
.dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: var(--ticket);
  padding: 8px;
}
.dropdown-item { border-radius: 8px; font-weight: 600; }
.dropdown-item:hover { background: var(--sand); color: var(--ink); }

.btn-cta,
.btn.btn-cta {
  background: var(--ember);
  background-color: var(--ember);
  color: #fff !important;
  border: 0;
  font-weight: 800;
  border-radius: 12px;
  padding: 13px 22px;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 0 var(--ember-dark);
  --bs-btn-hover-bg: var(--ember-dark);
  --bs-btn-hover-border-color: var(--ember-dark);
  --bs-btn-hover-color: #fff;
}
.btn-cta:hover,
.btn.btn-cta:hover,
.btn.btn-cta:focus,
.btn.btn-cta:focus-visible {
  background: var(--ember-dark);
  background-color: var(--ember-dark);
  color: #fff !important;
  border-color: var(--ember-dark);
  transform: translateY(2px);
  box-shadow: 0 8px 0 #9a2300;
}
.btn-ghost,
.btn.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 18px;
}
.btn-ghost:hover,
.btn.btn-ghost:hover {
  background: #fff;
  background-color: #fff;
  color: var(--ink) !important;
  border-color: #fff;
}
.btn-call, .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 16px;
  border: 0;
}
.btn-call,
.btn.btn-call {
  background: var(--ink);
  background-color: var(--ink);
  color: #fff !important;
  --bs-btn-hover-bg: #2c2622;
  --bs-btn-hover-border-color: #2c2622;
  --bs-btn-hover-color: var(--mark);
}
.btn-call:hover,
.btn.btn-call:hover,
.btn.btn-call:focus {
  background: #2c2622;
  background-color: #2c2622;
  color: var(--mark) !important;
}
.btn-wa,
.btn.btn-wa {
  background: #128c4b;
  background-color: #128c4b;
  color: #fff !important;
  justify-content: center;
  --bs-btn-hover-bg: #0e7a3f;
  --bs-btn-hover-border-color: #0e7a3f;
  --bs-btn-hover-color: #fff;
}
.btn-wa:hover,
.btn.btn-wa:hover,
.btn.btn-wa:focus {
  background: #0e7a3f;
  background-color: #0e7a3f;
  color: #fff !important;
  opacity: 1;
}
.btn-ice,
.btn.btn-ice {
  background: var(--mark);
  background-color: var(--mark);
  color: var(--ink);
  border-radius: 12px;
  font-weight: 800;
  padding: 12px 18px;
  border: 0;
}
.btn-ice:hover,
.btn.btn-ice:hover {
  background: #c4f020;
  background-color: #c4f020;
  color: var(--ink);
}

/* Homepage desk */
.desk {
  padding: 36px 0 28px;
}
.desk-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--mark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 18px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mark);
  box-shadow: 0 0 0 0 rgba(214,255,61,.7);
  animation: ping 1.6s infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 8px rgba(214,255,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(214,255,61,0); }
}
.desk-copy h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 0.92;
  font-weight: 800;
  margin: 0 0 16px;
}
.desk-copy h1 span {
  display: block;
  color: var(--ember);
}
.lede {
  font-size: 1.12rem;
  color: #3d372f;
  max-width: 460px;
  margin-bottom: 18px;
}
.hero-mains { margin: 0 0 20px; }
.hero-mains-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 8px;
}
.hero-mains-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
}
.hero-main i { color: var(--mark); }
.hero-main:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
}
.hero-main:hover i { color: #fff; }
.proofs {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.proofs li {
  display: flex;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 8px;
}
.proofs i { color: var(--ember); margin-top: 4px; }
.desk-calls { display: flex; flex-wrap: wrap; gap: 10px; }

.ticket {
  position: relative;
  background: var(--ticket);
  border-radius: 4px 22px 22px 4px;
  padding: 26px 24px 22px 38px;
  box-shadow: var(--shadow);
  z-index: 2;
  border: 1px solid rgba(23,20,17,.08);
}
.ticket::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 22px;
  background-color: var(--ink);
  background-image: radial-gradient(circle at 11px 10px, var(--sand) 4.5px, transparent 5.2px);
  background-size: 22px 20px;
  background-repeat: repeat-y;
  border-radius: 4px 0 0 4px;
}
.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}
.ticket-id {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--steel);
  margin-bottom: 4px;
}
.ticket h3 { font-size: 1.45rem; margin: 0; }
.stamp {
  flex-shrink: 0;
  border: 2.5px solid #128c4b;
  color: #128c4b;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 8px;
  transform: rotate(8deg);
  border-radius: 4px;
}
.ticket-sub { font-size: 0.92rem; color: var(--steel); margin-bottom: 14px; }

.form-control, .form-select {
  border: 1.5px solid #e2d8c4;
  border-radius: 10px;
  padding: 11px 12px;
  font-weight: 600;
  min-height: 46px;
  background: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23,20,17,.12);
}
.captcha-row { display: flex; align-items: center; gap: 10px; }
.captcha-code {
  background: var(--ink);
  color: var(--mark);
  font-weight: 800;
  letter-spacing: 0.22em;
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 82px;
  text-align: center;
}
.form-note { font-size: 12px; color: var(--steel); margin-top: 10px; }

.rail { padding: 8px 0 36px; }
.rail-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}
.rail-head h2 { font-size: 1.35rem; margin: 0; }
.rail-head p { margin: 0; color: var(--steel); font-weight: 600; }
.svc-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.svc-chip {
  background: var(--ticket);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc-chip.featured {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.svc-chip.featured img { height: 200px; }
.svc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  background: var(--ember);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 10px;
}
.svc-chip img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
}
.svc-chip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 14px;
}
a.svc-chip:hover { color: var(--ink); }
.svc-chip i { font-size: 1rem; color: var(--ember); }
.svc-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--ink);
}

.how3 {
  padding: 0 0 40px;
}
.how3-row {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 18px;
  background: var(--ink);
  color: #f3ead8;
  border-radius: 22px;
}
.how3-row li { display: flex; gap: 12px; align-items: flex-start; }
.how3-row b {
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--mark);
  font-size: 1.4rem;
  line-height: 1;
}
.how3-row h3 { font-size: 1.05rem; margin: 0 0 2px; color: #fff; }
.how3-row p { margin: 0; color: #cbbfa8; font-size: 0.92rem; }

.voices { padding: 0 0 48px; }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.voices-grid.reviews-only {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat-stack {
  background: var(--mark);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-stack strong {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}
.stat-stack span {
  font-weight: 700;
  color: #3d4a12;
  margin-bottom: 12px;
}
.voices blockquote {
  background: var(--ticket);
  border-radius: 18px;
  padding: 22px;
  margin: 0;
  box-shadow: 0 8px 24px rgba(23,20,17,.06);
}
.voices blockquote p {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 8px 0 10px;
}
.voices cite { font-style: normal; color: var(--steel); font-size: 0.88rem; font-weight: 700; }
.stars {
  color: #e2a008;
  letter-spacing: 0;
  display: inline-flex;
  gap: 3px;
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.stat-stack .stars { margin: 2px 0 10px; }
.review-src {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  color: #3d4a12;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-src:hover { color: var(--ink); }

/* Inner pages */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 40px 0 32px;
}
.page-hero a { color: var(--mark); }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 6px; }
.section-kicker {
  color: var(--ember);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.section-sub { color: var(--steel); max-width: 560px; }
.inner { padding: 40px 0; }

.service-layout { padding: 36px 0 20px; }
.service-layout img.img-service,
.img-service {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}
.fix-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.fix-list li {
  background: var(--ticket);
  border-radius: 10px;
  padding: 9px 11px;
  font-weight: 600;
  font-size: 0.92rem;
}
.fix-list i { color: #128c4b; margin-right: 6px; }
.sticky-form { position: sticky; top: 88px; }
.sticky-form.ticket { box-shadow: var(--shadow); }

.why-card, .testimonial, .info-tile, .step-card {
  background: var(--ticket);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
}
.why-card i { color: var(--ember); margin-bottom: 8px; display: block; }
.why-card h4, .step-card h5 { font-size: 1.05rem; }
.testimonial blockquote { margin: 8px 0 10px; }

.step-card { border: 1px solid var(--line); }
.step-num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.6rem;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 6px;
}

.info-tile {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  align-items: flex-start;
  height: auto;
}
.info-tile i {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ink); color: var(--mark);
  display: flex; align-items: center; justify-content: center;
}

.loc-card {
  background: var(--ticket);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}
.loc-card iframe { width: 100%; height: 200px; border: 0; }
.loc-card .body { padding: 18px; }
.loc-card h3 { font-size: 1.15rem; }

.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band h3 { margin: 0 0 4px; }
.cta-band p { margin: 0; color: #cbbfa8; }
.cta-band-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.mid-cta { padding: 28px 0 0; }

.site-foot {
  background: #12100e;
  color: #cbbfa8;
  padding: 40px 0 20px;
  margin-top: 28px;
}
.site-foot .brand-text strong { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr 1.2fr;
  gap: 24px;
}
.site-foot h5 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: 7px; font-size: 0.92rem; }
.site-foot a:hover { color: var(--mark); }
.copy {
  margin: 28px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.float-actions a {
  position: fixed;
  z-index: 1050;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.call-button { left: 14px; bottom: 16px; background: #16a34a; }
.whatsapp-button { right: 14px; bottom: 16px; background: #22c55e; }
.float-actions a:hover {
  color: #fff;
  opacity: 1;
}
.call-button:hover { background: #15803d; }
.whatsapp-button:hover { background: #16a34a; }

.thanks-card {
  max-width: 560px;
  margin: 48px auto;
  background: var(--ticket);
  border-radius: 22px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.eyebrow {
  display: inline-flex;
  background: var(--ink);
  color: var(--mark);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.repair-process { padding: 8px 0 36px; }

.modal-content { background: var(--ticket); border-radius: 20px !important; }

@media (max-width: 991px) {
  .desk { padding-top: 22px; }
  .desk-grid { grid-template-columns: 1fr; gap: 22px; }
  .desk-copy h1 { font-size: 2.35rem; }
  .ticket { margin-top: 0; }
  .svc-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-chip img { height: 140px; }
  .svc-chip.featured img { height: 168px; }
  .how3-row, .foot-grid { grid-template-columns: 1fr; }
  .voices-grid { grid-template-columns: 1fr 1fr; }
  .rail-head { flex-direction: column; align-items: flex-start; }
  .fix-list { grid-template-columns: 1fr; }
  .navbar-custom .btn-cta,
  .navbar-custom .btn-wa { margin-top: 8px; }
}
@media (max-width: 576px) {
  .topbar { display: none; }
  .desk-copy h1 { font-size: 2.05rem; }
  .svc-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-chip img { height: 118px; }
  .svc-chip.featured img { height: 140px; }
  .img-service { height: 200px; }
  .voices-grid { grid-template-columns: 1fr; }
  .ticket { padding-left: 30px; }
  .ticket::before { width: 16px; }
}
