/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 13px 22px;
  font-family: var(--ff-ui);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  line-height: 1;
  min-height: 46px;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover {
  background: var(--wa-green-dark);
  border-color: var(--wa-green-dark);
}
.btn-ghost-light {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.92);
  color: var(--accent);
  border-color: rgba(255,255,255,.92);
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 500;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.chip svg { width: 14px; height: 14px; }
.chip--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}

/* Rating badge hero */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--ff-ui);
  font-size: .88rem;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: transform .2s ease, background .2s ease;
}
.rating-badge:hover { transform: translateY(-1px); background: #fff; }
.rating-badge .stars {
  display: inline-flex;
  gap: 1px;
  color: #E4B23F;
}
.rating-badge .stars svg { width: 14px; height: 14px; }
.rating-badge strong {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
}
.rating-badge span { color: var(--text-mute); font-size: .8rem; }

/* SECTIONS HEADS */
.sec-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.sec-head h2 { margin-bottom: .4em; }
.sec-head p {
  color: var(--text-2);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  max-width: 56ch;
  margin: 0;
}
.sec-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* Cards radius-asym (LAY-6) */
.c-asym {
  background: color-mix(in srgb, var(--text) 4%, var(--bg));
  border-radius: 22px 4px 22px 4px;
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.c-asym:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.08); }
.c-asym--lead {
  background: var(--surface-deep);
  border-radius: 22px 4px 22px 4px;
  color: var(--text-on-dark);
}
.c-asym--lead h3,
.c-asym--lead :where(p, li, span, a, small) {
  color: var(--text-on-dark);
}
.c-asym--lead .svc-num { color: var(--accent-on-dark); }
.c-asym--lead .svc-icon { background: rgba(184, 201, 179, .18); color: var(--accent-on-dark); }
.c-asym--lead a { color: var(--accent-on-dark); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(20, 24, 22, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lightbox .lb-image {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: background .2s ease;
}
.lightbox button:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* Mentions modal */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.ml-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  max-width: 540px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
}
.ml-box h2 { font-size: 1.5rem; margin: 0 0 16px; }
.ml-box h3 { font-size: 1rem; margin: 18px 0 6px; color: var(--accent); }
.ml-box p { font-size: .92rem; color: var(--text-2); margin: 0 0 8px; }
.ml-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ml-close:hover { background: var(--accent-soft); color: var(--accent); }

/* Form */
.contact-form {
  display: grid;
  gap: 14px;
  background: rgba(255,255,255,.06);
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-on-dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-dark-2);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%;
  min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-on-dark);
  transition: border-color .2s ease, background .2s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent-on-dark);
  background: rgba(255,255,255,.10);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(239,234,216,.4); }
.field select option { color: #2A2A26; background: var(--bg); }

/* Badge Google SVG */
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-mute);
}
.badge-google svg { width: 14px; height: 14px; }
