/* ==========================================================================
   KRESTA TEXTILE — Components
   ========================================================================== */

/* ---------------------------------------------------------------- button - */

/* Pill, sentence case, light — the reference's "Check dates" button. No
   uppercase tracking: that belongs to eyebrows and spec keys here. */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--hairline-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0.75em 1.5em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: var(--t-small);
  font-weight: var(--w-body);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

.btn--primary {
  --btn-bg: var(--pill);
  --btn-fg: var(--text);
  --btn-bd: transparent;
}

.btn--primary:hover {
  --btn-bg: var(--pill-lit);
  --btn-bd: transparent;
}

.btn--ghost:hover {
  --btn-bd: var(--silver);
  --btn-bg: rgba(244, 251, 250, 0.07);
}

/* Outlined CTA that fills on hover. The arrow is the affordance — it says
   "this goes somewhere" without adding a word. */
.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--hairline-strong);
  padding: 0.85em 1.7em;
}

.btn--outline:hover {
  --btn-bg: rgba(244, 251, 250, 0.09);
  --btn-bd: var(--text-2);
}

.btn__arrow {
  display: inline-block;
  line-height: 1;
  transition: transform var(--dur-mid) var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translateX(5px);
}

/* --- glass actions ------------------------------------------------------
   Nav actions as frosted glass rather than flat fills.

   Four things together make glass read as glass. Any one alone looks like a
   tinted rectangle:

     1. backdrop-filter blur + saturate — refracts what is behind. Requires
        a translucent parent, which is why .header is now rgba (layout.css).
     2. A top-to-bottom gradient fill — light gathers at the top edge.
     3. An INSET top highlight (box-shadow inset 0 1px 0) — the specular
        line along the upper rim. This is the single strongest tell.
     4. An outer shadow — lifts the pane off its surface.

   On hover the pane becomes glossier and its corners round from 12px to a
   full pill, with a specular sheen travelling across. Radius carries the
   slowest duration so the corners are still rounding after the brightness
   has arrived — that lag is what reads as a shape changing rather than a
   state toggling.                                                        */

.btn--glass {
  --glass-top: 0.085;
  --glass-bot: 0.025;
  --glass-rim: 0.2;
  /* Dark base UNDER the light gradient.

     Without it the pane was net-lighter than the bar and dragged the label
     to 3.53:1 — a real AA failure, measured. It is also more physically
     honest: frosted glass over a dark scene reads as slightly darker plus a
     light rim, not uniformly brighter. Fixing the contrast made the glass
     better rather than costing anything. */
  --glass-base: 0.58;

  padding: 0.7em 1.35em;
  border: 1px solid rgba(244, 251, 250, 0.16);
  border-radius: 12px;
  overflow: hidden;
  color: var(--text-2);

  background: linear-gradient(
      170deg,
      rgba(244, 251, 250, var(--glass-top)) 0%,
      rgba(244, 251, 250, var(--glass-bot)) 100%
    ),
    rgba(14, 27, 24, var(--glass-base));
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(244, 251, 250, var(--glass-rim)),
    inset 0 -1px 0 rgba(12, 24, 22, 0.16), 0 6px 18px rgba(12, 24, 22, 0.22);

  transition: color var(--dur-mid) var(--ease-out),
    letter-spacing var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out),
    box-shadow var(--dur-mid) var(--ease-out),
    background var(--dur-mid) var(--ease-out),
    border-radius var(--dur-slow) var(--ease-out);
}

/* The travelling specular. Clipped by the pane's own overflow, so it
   follows the corner radius as that changes. */
.btn--glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(244, 251, 250, 0) 30%,
    rgba(244, 251, 250, 0.18) 50%,
    rgba(244, 251, 250, 0) 70%
  );
  transform: translateX(-135%);
  opacity: 0;
}

.btn--glass:hover,
.btn--glass:focus-visible {
  --glass-top: 0.145;
  --glass-bot: 0.05;
  --glass-rim: 0.34;
  --glass-base: 0.6;
  color: var(--text);
  letter-spacing: 0.045em;
  border-color: rgba(244, 251, 250, 0.3);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(244, 251, 250, var(--glass-rim)),
    inset 0 -1px 0 rgba(12, 24, 22, 0.2), 0 10px 26px rgba(12, 24, 22, 0.3);
}

.btn--glass:hover::before,
.btn--glass:focus-visible::before {
  transform: translateX(135%);
  opacity: 1;
  transition: transform 1000ms var(--ease-inout), opacity 180ms linear;
}

/* The senior action. Hierarchy comes from a brighter RIM and border rather
   than a brighter fill, so it reads as thicker glass without lifting the
   backdrop under its own label. */
.btn--glass.is-lead {
  --glass-top: 0.105;
  --glass-bot: 0.035;
  --glass-rim: 0.34;
  color: var(--text);
  border-color: rgba(244, 251, 250, 0.28);
}

.btn--glass.is-lead:hover,
.btn--glass.is-lead:focus-visible {
  --glass-top: 0.16;
  --glass-bot: 0.055;
  --glass-rim: 0.48;
  border-color: rgba(244, 251, 250, 0.44);
}

/* The rim already reads as a focus ring once it brightens; a second box
   outside the pane would fight it. Kept high-contrast for visibility. */
.btn--glass:focus-visible {
  outline: none;
  border-color: var(--text);
}

/* The drawer sits on --panel, which is lighter than the section cards, so the
   default base does not go far enough there — measured 4.34:1, an AA failure.
   Glass is relative to what is behind it, so the base has to be. */
.drawer .btn--glass {
  --glass-base: 0.7;
}

/* Drawer actions stretch the panel width, so the label belongs in the middle
   rather than hugging the left edge of a wide pane. */
.drawer__foot .btn {
  justify-content: center;
}

.drawer .btn--glass:hover,
.drawer .btn--glass:focus-visible {
  --glass-base: 0.74;
}

/* No blur support, or reduced transparency asked for: keep the pane, drop
   the refraction, and raise the fill so it stays legible on its own. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .btn--glass {
    --glass-top: 0.16;
    --glass-bot: 0.08;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .btn--glass {
    --glass-top: 0.16;
    --glass-bot: 0.08;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--glass::before {
    display: none;
  }
}

/* Text-only action with a drawn rule, echoing the brand underline */
.btn--quiet {
  padding: var(--s-2) 0;
  border: 0;
  border-radius: 0;
  color: var(--silver);
}

.btn--quiet::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--hairline-strong);
  transition: background var(--dur-fast) var(--ease-out);
}

.btn--quiet:hover {
  color: var(--ivory);
}

.btn--quiet:hover::after {
  background: var(--text-2);
}

/* A counter, not a badge. Outlined and airy so it reads as information
   rather than as another button sitting inside the first. */
.btn__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.65em;
  height: 1.65em;
  padding-inline: 0.3em;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--text-2);
  font-size: 0.8em;
  font-weight: var(--w-body);
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}

/* Only earns emphasis once there is something in it. */
.btn__count[data-empty="false"] {
  border-color: var(--text-2);
  color: var(--text);
}

.btn:hover .btn__count {
  border-color: var(--text-2);
}

.btn__count.is-bumped {
  transform: scale(1.35);
}

/* ------------------------------------------------------------- value row - */

.value {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: var(--s-4);
  align-items: baseline;
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--hairline);
}

.value__name {
  font-family: var(--font-ui);
  font-size: var(--t-small);
  font-weight: var(--w-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
}

.value__note {
  font-size: var(--t-small);
  color: var(--silver);
}

/* --------------------------------------------------------------- figure - */

/* Serif is right here — these run 28–44px, above the hairline floor, and
   large figures are exactly what a display face is for. */
.figure__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory);
}

.figure__label {
  display: block;
  margin-top: var(--s-3);
}

/* ---------------------------------------------------------------- card --- */

/* Cards are their own rounded panels inside the range card, echoing the
   page-level structure one level down. */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(
    170deg,
    rgba(244, 251, 250, 0.07) 0%,
    rgba(244, 251, 250, 0.02) 100%
  );
  transition: background var(--dur-mid) var(--ease-out);
}

.card:hover {
  background: linear-gradient(
    170deg,
    rgba(244, 251, 250, 0.11) 0%,
    rgba(244, 251, 250, 0.04) 100%
  );
}

/* Weave swatch: a real interlacing diagram drawn by js/weave.js */
.card__swatch {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink-sunken);
  border-bottom: 1px solid var(--hairline);
}

.card__swatch svg {
  width: 100%;
  height: 100%;
}

/* Slow sheen sweep — how satin behaves under a moving light */
.card__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(244, 251, 250, 0) 38%,
    rgba(244, 251, 250, 0.09) 50%,
    rgba(244, 251, 250, 0) 62%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.card:hover .card__sheen {
  transform: translateX(120%);
  transition: transform 1100ms var(--ease-inout);
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--s-4);
  padding: var(--s-6);
}

.card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
}

.card__name {
  font-family: var(--font-ui);
  font-size: var(--t-h3);
  font-weight: var(--w-medium);
  color: var(--ivory);
}

.card__summary {
  font-size: var(--t-small);
  color: var(--ivory-dim);
  line-height: 1.6;
}

/* Spec table: tracked sans caps on the left, sentence-case value on the
   right, hairline between rows — the reference's pattern exactly. */
.card__specs {
  border-top: 1px solid var(--hairline);
  margin-top: auto;
}

.spec {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-3);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-ui);
  font-size: var(--t-micro);
}

.spec__key {
  color: var(--text-4);
  text-transform: uppercase;
  letter-spacing: var(--track-eyebrow);
  font-weight: var(--w-medium);
}

.spec__val {
  color: var(--text-2);
  text-align: right;
  font-size: var(--t-small);
  letter-spacing: 0.01em;
}

.card__uses {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-6) var(--s-6);
}

/* Add / added toggle */
.add {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: var(--t-small);
  color: var(--text-2);
  transition: color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.add:hover {
  color: var(--ivory);
  border-color: var(--silver);
}

.add__mark {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
}

.add__mark::before,
.add__mark::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform var(--dur-mid) var(--ease-out);
}

.add__mark::before {
  inset: 4px 0;
  height: 1px;
}

.add__mark::after {
  inset: 0 4px;
  width: 1px;
}

.add[aria-pressed="true"] {
  color: var(--ivory);
  border-color: var(--text-2);
  background: rgba(244, 251, 250, 0.12);
}

/* Plus rotates to an x-free horizontal bar when added */
.add[aria-pressed="true"] .add__mark::after {
  transform: scaleY(0);
}

/* --------------------------------------------------------------- drawer -- */

.scrim {
  position: fixed;
  inset: 0;
  z-index: var(--z-scrim);
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-mid) var(--ease-out),
    visibility var(--dur-mid) var(--ease-out);
}

.scrim.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-drawer);
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  background: var(--ink-raised);
  border-left: 1px solid var(--hairline);
  transform: translateX(101%);
  visibility: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
    visibility var(--dur-mid) var(--ease-out);
}

.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-5) var(--s-4);
  border-bottom: 1px solid var(--hairline);
}

.drawer__close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  color: var(--silver);
  transition: color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.drawer__close:hover {
  color: var(--ivory);
  border-color: var(--silver);
}

.drawer__list {
  flex: 1;
  overflow-y: auto;
  padding: var(--s-4) var(--s-5);
}

.drawer__empty {
  padding-block: var(--s-6);
  font-size: var(--t-small);
  color: var(--silver-dim);
}

.drawer__foot {
  padding: var(--s-5);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.basket-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--hairline);
}

.basket-item__name {
  font-family: var(--font-ui);
  font-size: var(--t-small);
  font-weight: var(--w-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
}

.basket-item__meta {
  display: block;
  margin-top: var(--s-2);
}

.basket-item__remove {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-dim);
  padding: var(--s-1) var(--s-2);
  transition: color var(--dur-fast) var(--ease-out);
}

.basket-item__remove:hover {
  color: var(--ivory);
}

/* ----------------------------------------------------------------- form -- */

.form {
  display: grid;
  gap: var(--s-6);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--s-5);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.field__label {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--silver-dim);
}

.field__label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.field__voice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-inline-size: 2.5rem;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: var(--t-micro);
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.field__voice:hover,
.field__voice:focus-visible {
  border-color: var(--text-2);
  outline: none;
}

.field__voice.is-listening {
  border-color: var(--green);
  color: var(--green);
}

.field__voice svg {
  display: block;
  width: 1rem;
  height: 1rem;
}

/* Underline-only inputs: the brand's own device applied to UI */
.field__input {
  width: 100%;
  padding: var(--s-3) 0;
  background: transparent;
  border-bottom: 1px solid var(--hairline-strong);
  color: var(--ivory);
  font-size: var(--t-body);
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease-out);
}

.field__input::placeholder {
  color: var(--silver-dim);
}

.field__input:hover {
  border-bottom-color: var(--silver-dim);
}

.field__input:focus {
  outline: none;
  border-bottom-color: var(--text-2);
}

.field__input:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 4px;
}

select.field__input {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--silver) 50%),
    linear-gradient(135deg, var(--silver) 50%, transparent 50%);
  background-position: calc(100% - 9px) calc(50% + 1px),
    calc(100% - 4px) calc(50% + 1px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: var(--s-6);
}

select.field__input option {
  background: var(--ink-raised);
  color: var(--ivory);
}

textarea.field__input {
  resize: vertical;
  min-height: 7rem;
  line-height: 1.6;
}

.field__input[aria-invalid="true"] {
  border-bottom-color: #e5736b;
}

.field__error {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: 0.04em;
  color: #e5736b;
  min-height: 1em;
}

/* Intent selector */
.intent {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

.intent__opt {
  position: relative;
}

.intent__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.intent__face {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: var(--t-small);
  color: var(--silver);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.intent__face:hover {
  color: var(--ivory);
  border-color: var(--silver);
}

.intent__radio:checked + .intent__face {
  color: var(--ivory);
  border-color: var(--text-2);
  background: rgba(244, 251, 250, 0.12);
}

.intent__radio:focus-visible + .intent__face {
  outline: 2px solid var(--ivory);
  outline-offset: 3px;
}

/* Basket summary above the form, so people see what they are sending */
.form__basket {
  padding: var(--s-5);
  border: 1px solid var(--hairline);
  background: var(--ink-raised);
}

.form__basket-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  margin-top: var(--s-4);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
}

.chip__x {
  color: var(--silver-dim);
  line-height: 1;
  padding: 0 2px;
  transition: color var(--dur-fast) var(--ease-out);
}

.chip__x:hover {
  color: var(--ivory);
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4) var(--s-6);
}

.form__status {
  font-family: var(--font-mono);
  font-size: var(--t-small);
  letter-spacing: 0.03em;
}

.form__status[data-state="error"] {
  color: #e5736b;
}

.form__status[data-state="ok"] {
  color: var(--text-2);
}

.form__status[data-state="sending"] {
  color: var(--silver);
}

/* ===================================================================
   Marquee glow border buttons — premium CTA effect
   ===================================================================

   The .btn--glow-rotate class adds a travelling gradient light + soft
   blurred bloom around a button's outline, running continuously — on by
   default, not gated to hover/focus. The actual gradient, mask and motion
   live in motion.css (kept with the rest of the site's animation rules);
   this file only adds the hover lift.

   Usage requires a decorative child span — the ring/bloom are rendered on
   it, not on the button's own ::before/::after, because .btn--glass
   already uses ::before for its specular sheen:

     <a class="btn btn--glass is-lead btn--glow-rotate" href="#">
       <span class="btn__glow" aria-hidden="true"></span>
       Request a quote
     </a>

   Works with any .btn variant. Colors are set via --glow-c1..4 on
   .btn--glow-rotate in motion.css — currently the gold already used by the
   thread reel cursor, easy to swap once a final palette is chosen.

   Accessibility: Respects prefers-reduced-motion; stops the rotation and
   settles on a dimmer static glow instead of spinning.               */

.btn--glow-rotate {
  transition: transform var(--dur-mid) var(--ease-out);
}

.btn--glow-rotate:hover,
.btn--glow-rotate:focus-visible {
  transform: scale(1.03);
}

/* Enhanced variant: glow + fill for maximum impact on hero CTAs. Only
   affects plain .btn (--btn-bg etc.) — .btn--glass ignores these in favour
   of its own --glass-* variables, so this combination currently has no
   effect on any button actually used on the site (all of them are
   .btn--glass). Left in place for a future filled CTA. */
.btn--glow-enhance {
  --btn-bg: var(--pill);
  --btn-fg: var(--text);
  --btn-bd: var(--pill);
}

.btn--glow-enhance.btn--glow-rotate:hover,
.btn--glow-enhance.btn--glow-rotate:focus-visible {
  --btn-bg: var(--pill-lit);
  --btn-bd: #FFDE6B;
  box-shadow: 0 0 20px rgba(255, 213, 74, 0.25);
}

/* Honeypot — must stay visually hidden but not display:none */
.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
