/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1;
  min-height: 50px;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), box-shadow var(--t-base);
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: var(--on-dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
}
.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover {
  background: #1ebd5b;
  border-color: #1ebd5b;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--on-dark);
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--on-dark);
  color: var(--text);
  border-color: var(--on-dark);
}
.btn-light:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* CHIPS / PILLS */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}
.chip svg { width: 14px; height: 14px; }

/* CARD radius-asym (LAY-6) */
.c-asym {
  background: var(--surface);
  border-radius: 22px 4px 22px 4px;
  padding: 26px 24px;
  border: 1px solid var(--border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.c-asym:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(42, 42, 38, 0.08);
}
.c-asym--lead {
  background: var(--accent);
  color: var(--on-dark);
  border-color: var(--accent);
  border-radius: 22px 4px 22px 4px;
}
.c-asym--lead, .c-asym--lead :where(h1, h2, h3, h4, p, li, span, a, small, strong, em) {
  color: var(--on-dark);
}
.c-asym--lead .c-num { color: var(--accent-soft); }
.c-asym--alt {
  background: var(--bg-alt);
  border-color: var(--border);
  border-radius: 4px 22px 4px 22px;
}

@media (prefers-reduced-motion: reduce) {
  .c-asym:hover { transform: none; box-shadow: none; }
}

/* DIVIDER */
.divider {
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 0;
  border: 0;
}

/* RATING STARS */
.stars {
  display: inline-flex;
  gap: 2px;
}
.stars svg {
  width: 16px;
  height: 16px;
  color: #d4a635;
}

/* BADGE GOOGLE */
.badge-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 500;
}
.badge-google svg { width: 14px; height: 14px; }

/* MODAL MENTIONS */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 18, 0.62);
  backdrop-filter: blur(4px);
}
.ml-box {
  position: relative;
  background: var(--surface);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  border-radius: var(--r-lg);
  padding: 32px 26px 26px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}
.ml-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}
.ml-close:hover { background: var(--bg-alt); }
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text);
}
.ml-box h3 {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 18px 0 6px;
  font-weight: 600;
}
.ml-box p, .ml-box li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(15, 17, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lb-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(243, 239, 231, 0.12);
  color: var(--on-dark);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: background var(--t-base);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(243, 239, 231, 0.24); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* FORM */
.form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .field--full { grid-column: 1 / -1; }
}
.field { min-width: 0; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--text);
}
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--t-base), background var(--t-base);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: var(--bg);
}
