/**
 * Atelier — Buttons/forms kit (C8). Extracted from _home.css (was misfiled as page-specific).
 */
.atl-btn {
  text-decoration: none;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  display: inline-block;
  cursor: pointer;
  border-radius: 0;
}
.atl-btn--primary {
  background: var(--atl-text);
  color: var(--atl-band-text);
  border: 1px solid var(--atl-text);
}
.atl-btn--primary:hover { background: var(--atl-accent-hover); border-color: var(--atl-accent-hover); }
.atl-btn--secondary {
  border: 1px solid var(--atl-border-strong);
  color: var(--atl-text);
  background: transparent;
}
.atl-btn--secondary:hover { border-color: var(--atl-text); }
.atl-btn:focus-visible { outline: 2px solid var(--atl-focus-ring); outline-offset: 2px; }

/* The input.atl-input[type] companion selector is REQUIRED, not decorative:
   Magento's base styles-m.css styles `input[type="text"], input[type="email"],
   ...` at specificity (0,1,1) with a hard `height: 32px; padding: 0 9px` —
   which beats a bare class (0,1,0) and squashed every themed text input
   (newsletter, contact, tracking, search) to the stubby Magento default while
   adjacent buttons kept their 46px height (reported 2026-07-17: subscribe row
   misaligned). (0,2,1) wins regardless of load order; height:auto releases
   Magento's fixed 32px so flex rows align. */
.atl-input,
input.atl-input[type],
textarea.atl-input {
  border: 1px solid var(--atl-border-strong);
  background: var(--atl-surface);
  color: var(--atl-text);
  padding: 14px 20px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  outline: none;
  height: auto;
}
.atl-input:focus-visible { outline: 2px solid var(--atl-focus-ring); outline-offset: 2px; }
.atl-input--block { width: 100%; box-sizing: border-box; }

/* select.atl-select companion + height:auto: Magento base styles-m.css gives
   bare `select` a fixed height:32px; the theme never set a height, so selects
   rendered squashed (32px) next to 46px inputs/buttons. */
.atl-select,
select.atl-select {
  border: 1px solid var(--atl-border-strong);
  background: var(--atl-surface);
  color: var(--atl-text);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  height: auto;
}
.atl-select:focus-visible { outline: 2px solid var(--atl-focus-ring); outline-offset: 2px; }

.atl-textarea {
  border: 1px solid var(--atl-border-strong);
  background: var(--atl-surface);
  color: var(--atl-text);
  padding: 13px 16px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  outline: none;
  min-height: 120px;
  resize: vertical;
  box-sizing: border-box;
}
.atl-textarea:focus-visible { outline: 2px solid var(--atl-focus-ring); outline-offset: 2px; }
