/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.15;
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast), color var(--t-fast);
  min-height: 48px;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--accent) 86%, #000);
  color: #fff !important;
}
.btn-wa {
  background: var(--wa-green);
  color: #fff !important;
}
.btn-wa:hover {
  background: color-mix(in srgb, var(--wa-green) 88%, #000);
  color: #fff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--text);
}
.btn-ghost:hover {
  background: var(--text);
  color: var(--bg) !important;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff !important; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============ CHIPS ============ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
  color: var(--accent);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: .85rem;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
}
.chip svg { width: 14px; height: 14px; }
.chip--dark {
  background: rgba(237, 231, 218, .12);
  color: var(--accent-on-dark);
  border-color: rgba(200, 217, 182, .26);
}

/* ============ CARDS - card = stripe (LAY-5) ============ */
.c-stripe {
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--text) 3%, var(--bg));
  border-radius: 0 14px 14px 0;
  padding: 24px 26px;
  transition: transform var(--t), box-shadow var(--t);
}
.c-stripe:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -22px color-mix(in srgb, var(--accent) 70%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .c-stripe { transition: none; }
  .c-stripe:hover { transform: none; box-shadow: none; }
}

/* ============ FORM ============ */
.contact-form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label {
  font-size: .82rem;
  color: rgba(237, 231, 218, .82);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  background: rgba(237, 231, 218, .08);
  border: 1px solid var(--border-on-dark);
  border-radius: 10px;
  padding: 13px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-on-dark);
  transition: border-color var(--t-fast), background var(--t-fast);
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-on-dark);
  background: rgba(237, 231, 218, .12);
}
.field option { color: #222; background: #fff; }

/* ============ MODAL MENTIONS ============ */
.ml-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ml-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 16, .68);
  backdrop-filter: blur(4px);
}
.ml-box {
  position: relative;
  background: var(--surface);
  color: var(--text);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 24px 48px -8px rgba(0,0,0,.32);
}
.ml-box h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  margin: 0 0 8px;
}
.ml-box h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  margin: 18px 0 6px;
  color: var(--accent);
}
.ml-box p { color: var(--text-2); font-size: .94rem; margin: 0 0 8px; }
.ml-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  color: var(--text);
  display: grid;
  place-items: center;
}
.ml-close:hover { background: color-mix(in srgb, var(--text) 14%, transparent); }
.ml-close svg { width: 18px; height: 18px; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(15, 14, 10, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lb-image {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  transition: background var(--t-fast);
}
.lightbox button:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { top: 50%; left: 14px; transform: translateY(-50%); }
.lb-next { top: 50%; right: 14px; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}
