/* BOUTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: .98rem;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-deep); border-color: var(--primary-deep); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(34,40,49,0.15); }

.btn-wa { background: var(--wa-green); color: #fff; border-color: var(--wa-green); }
.btn-wa:hover { background: var(--wa-green-deep); border-color: var(--wa-green-deep); transform: translateY(-1px); box-shadow: 0 10px 20px rgba(37,211,102,0.20); }

.btn-accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--text); background: color-mix(in srgb, var(--text) 5%, transparent); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: var(--ff-ui);
  font-weight: 500;
  font-size: .94rem;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding-bottom: 2px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.btn-link:hover { color: var(--accent-deep); border-bottom-color: var(--accent); }

/* CHIPS */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--text);
}
.chip svg { width: 14px; height: 14px; color: var(--accent); }
.chip--ghost { background: transparent; border-color: var(--border); color: var(--text-2); }

/* CARDS (LAY-1 = card line) */
.c-line {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  background: var(--surface);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.c-line:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, var(--border));
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(34,40,49,0.06);
}
@media (prefers-reduced-motion: reduce) {
  .c-line:hover { transform: none; box-shadow: none; }
}

/* BADGE Google note hero */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--ff-ui);
  font-size: .88rem;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.rating-badge:hover { transform: translateY(-1px); border-color: var(--border-strong); }
.rating-badge__stars { display: inline-flex; gap: 1px; color: #F4B400; }
.rating-badge__stars svg { width: 13px; height: 13px; }
.rating-badge strong { color: var(--text); font-weight: 600; margin-left: 4px; }
.rating-badge span { color: var(--text-2); }
.rating-badge .rb-google {
  width: 14px; height: 14px;
  margin-left: 4px;
  opacity: .85;
}

/* MODAL mentions */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 36, 0.55);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-lg);
  max-width: 520px;
  width: 100%;
  max-height: 86dvh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: var(--text-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal__close:hover { background: var(--bg-alt); color: var(--text); }
.modal h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  padding-right: 36px;
}
.modal h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin: 20px 0 6px;
  color: var(--text);
}
.modal p, .modal li {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.65;
}
.modal ul { padding-left: 18px; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(8, 12, 18, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 92vw;
  max-height: 86dvh;
  object-fit: contain;
  border-radius: 8px;
}
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: var(--ff-ui);
  transition: background var(--t-fast);
}
.lb-btn:hover { background: rgba(255,255,255,0.18); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 560px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* SECTION HEADERS */
.section-head {
  max-width: 720px;
  margin: 0 0 36px;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.section-head h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--text);
}
.section-head h2 em { font-style: italic; color: var(--accent); font-weight: 500; }
.section-head p {
  font-size: 1.02rem;
  color: var(--text-2);
  max-width: 56ch;
}
