/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .95rem;
  border-radius: var(--r-md);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  cursor: pointer;
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.btn-primary:hover { background: #6F4727; border-color: #6F4727; transform: translateY(-1px); }
.btn-wa {
  background: var(--wa-green);
  color: #FFFFFF;
  border-color: var(--wa-green);
}
.btn-wa:hover { background: #1faf55; border-color: #1faf55; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.btn-light {
  background: var(--bg);
  color: var(--text);
  border-color: var(--bg);
}
.btn-light:hover { background: #fff; border-color: #fff; }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Cards stripe (LAY-5 card=stripe) */
.c-stripe {
  border-left: 4px solid var(--accent);
  background: color-mix(in srgb, var(--text) 3.5%, var(--bg));
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 26px 26px 24px 22px;
  position: relative;
  transition: transform var(--t-fast), background var(--t-fast);
}
.c-stripe:hover { transform: translateY(-3px); background: color-mix(in srgb, var(--text) 5%, var(--bg)); }
.c-stripe__num {
  font-family: var(--ff-display);
  color: var(--accent);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 10px;
  display: block;
}
.c-stripe__title {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.c-stripe__body {
  font-size: .92rem;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}
.c-stripe__icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: color-mix(in srgb, var(--text) 5%, var(--bg));
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}
.chip--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Form */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.form-field label {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--ff-body);
  font-size: 16px;
  padding: 13px 14px;
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  width: 100%;
  min-width: 0;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  min-height: 48px;
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
}

/* 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(42, 32, 24, 0.55);
  backdrop-filter: blur(2px);
}
.ml-box {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-xl);
  max-width: 520px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 32px 28px 26px;
  box-shadow: 0 24px 64px -16px rgba(42, 32, 24, 0.35);
}
.ml-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 1.1rem;
}
.ml-box h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.ml-box h3 {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 18px 0 6px;
  color: var(--accent);
  font-family: var(--ff-ui);
}
.ml-box p, .ml-box li { font-size: .9rem; color: var(--text-2); line-height: 1.6; }

/* FAB Appeler mobile */
.fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--accent);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(138, 90, 51, 0.6);
  transform: scale(0);
  transition: transform .3s cubic-bezier(.2,.7,.2,1.2);
  border: 0;
  text-decoration: none;
}
.fab svg { width: 24px; height: 24px; }
.fab.is-visible { transform: scale(1); }
@media (min-width: 1024px) { .fab { display: none; } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.94);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(244, 236, 222, 0.16);
  border: 0;
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(244, 236, 222, 0.28); }
@media (max-width: 560px) {
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}
