.balt {
  /* Editorial palette — matches balt-editorial.css on the redesigned pages */
  --ink:    #0B2416;
  --pine:   #123B26;
  --green:  #1F7A43;
  --mint:   #8FE6AD;
  --gold:   #C9A24B;
  --gold-d: #A87F2C;
  --gold-t: #8A6A1F;
  --ivory:  #F6F3EC;
  --paper:  #FCFBF8;
  --white:  #fff;
  --line:   #E4DFD3;
  --slate:  #41504A;

  /* legacy aliases so existing rules keep working */
  --g-500: var(--green);
  --g-400: var(--green);
  --g-300: var(--mint);
  --g-200: var(--mint);
  --g-700: var(--pine);
  --g-800: var(--ink);
  --g-900: var(--ink);
  --ink-900: var(--ink);
  --ink-800: var(--pine);
  --ink-700: var(--pine);
  --paper-2: var(--ivory);
  --tx-900: var(--ink);
  --tx-700: var(--slate);
  --tx-500: #6E7D75;

  --r-sm: 9px;
  --r-md: 14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  max-width: 980px;
  margin-inline: auto;
}

.balt *, .balt *::before, .balt *::after { box-sizing: border-box; }

/* Our component classes set display, which outranks the browser's built-in
   [hidden] rule -- without this the Back and Submit buttons stayed visible on
   step one even though JS had hidden them. */
.balt [hidden] { display: none !important; }
.balt .balt-i { width: 1em; height: 1em; flex: none; }

/* --------------------------------------------------------------- form shell */
.balt .balt-form {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  box-shadow: 0 24px 60px rgba(5, 20, 12, .09);
}

.balt .balt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------------------------------------------------------- progress rail */
.balt .balt-rail {
  position: relative;
  display: flex; justify-content: space-between; gap: .5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.balt .balt-rail__bar {
  position: absolute; left: 0; right: 0; top: 21px; height: 2px;
  background: rgba(11, 19, 16, .1); border-radius: 2px; z-index: 0;
}
.balt .balt-rail__fill {
  display: block; height: 100%; width: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--g-800), var(--g-300));
  box-shadow: 0 0 12px rgba(97, 206, 112, .55);
  transition: width .6s var(--ease);
}
.balt .balt-rail__item {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  text-align: center;
}
.balt .balt-rail__dot {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper); color: var(--tx-500);
  border: 2px solid rgba(11, 19, 16, .12);
  font-size: 17px;
  transition: all .5s var(--ease);
}
.balt .balt-rail__tick {
  position: absolute; inset: 0; display: grid; place-items: center;
  opacity: 0; transform: scale(.5); transition: all .4s var(--ease);
  color: #fff; font-size: 17px;
}
.balt .balt-rail__item.is-active .balt-rail__dot {
  color: #fff; border-color: transparent;
  background: linear-gradient(140deg, var(--g-500), var(--g-800));
  box-shadow: 0 0 0 5px rgba(35, 164, 85, .14), 0 10px 22px rgba(31, 122, 67, .32);
  transform: scale(1.06);
}
.balt .balt-rail__item.is-done .balt-rail__dot {
  color: #fff; border-color: transparent;
  background: linear-gradient(140deg, var(--g-300), var(--g-700));
}
.balt .balt-rail__item.is-done .balt-rail__dot > .balt-i { opacity: 0; }
.balt .balt-rail__item.is-done .balt-rail__tick { opacity: 1; transform: scale(1); }
.balt .balt-rail__label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--tx-500);
  transition: color .4s var(--ease);
}
.balt .balt-rail__item.is-active .balt-rail__label { color: var(--g-800); }
.balt .balt-rail__item[hidden] { display: none; }

/* ---------------------------------------------------------------- the steps */
.balt .balt-step { display: none; }
.balt .balt-step.is-current { display: block; animation: baltIn .5s var(--ease) both; }
@keyframes baltIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.balt .balt-step__head {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.35rem;
  padding-bottom: .9rem; border-bottom: 1px solid var(--line);
}
.balt .balt-step__n {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em;
  color: var(--g-800); background: rgba(35, 164, 85, .1);
  padding: .35rem .6rem; border-radius: 7px;
}
.balt .balt-step__title {
  margin: 0; font-size: 1.28rem; font-weight: 750; letter-spacing: -.015em; color: var(--tx-900);
}

/* -------------------------------------------------------------------- grid */
.balt .balt-grid {
  display: grid; gap: 1.05rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.balt .balt-field { min-width: 0; animation: baltIn .45s var(--ease) both; }
.balt .balt-field[hidden] { display: none; }
.balt .balt-field--textarea,
.balt .balt-field--radio,
.balt .balt-field--checkbox,
.balt .balt-field--toggle { grid-column: 1 / -1; }

.balt .balt-label {
  display: flex; align-items: center; gap: .45rem; margin-bottom: .45rem;
  font-size: .82rem; font-weight: 650; color: var(--tx-700);
}
.balt .balt-label__i { color: var(--g-500); font-size: 15px; }
.balt .balt-req { color: var(--g-700); font-style: normal; }

/* ------------------------------------------------------------------ inputs */
.balt input[type="text"],
.balt input[type="email"],
.balt input[type="tel"],
.balt input[type="date"],
.balt input[type="time"],
.balt input[type="number"],
.balt textarea,
.balt select {
  width: 100%; font: inherit; font-size: .93rem; color: var(--tx-900);
  padding: .82rem .95rem; border-radius: var(--r-sm);
  background: var(--paper-2);
  border: 1.5px solid transparent;
  outline: none;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.balt textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.balt input:focus, .balt textarea:focus, .balt select:focus {
  background: var(--paper);
  border-color: var(--g-500);
  box-shadow: 0 0 0 4px rgba(35, 164, 85, .13);
}
.balt input::placeholder, .balt textarea::placeholder { color: var(--tx-500); opacity: .8; }

.balt .balt-field.has-error input,
.balt .balt-field.has-error textarea,
.balt .balt-field.has-error select {
  border-color: #d64545; background: #fff6f6;
}
.balt .balt-error {
  margin: .4rem 0 0; font-size: .78rem; font-weight: 600; color: #c23434;
  animation: baltIn .3s var(--ease) both;
}

/* select with its own chevron */
.balt .balt-select { position: relative; }
.balt .balt-select select { padding-right: 2.6rem; cursor: pointer; }
.balt .balt-select__chev {
  position: absolute; right: 1rem; top: 50%; translate: 0 -50%;
  width: 15px; height: 15px; color: var(--g-700);
  rotate: 90deg; pointer-events: none;
  transition: rotate .3s var(--ease);
}
.balt .balt-select:focus-within .balt-select__chev { rotate: -90deg; }

/* number stepper */
.balt .balt-stepper {
  display: flex; align-items: stretch; gap: .35rem;
  background: var(--paper-2); border-radius: var(--r-sm);
  border: 1.5px solid transparent; padding: .2rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.balt .balt-stepper:focus-within { background: var(--paper); border-color: var(--g-500); }
.balt .balt-stepper input {
  background: transparent; border: 0; text-align: center; padding: .62rem .2rem;
  -moz-appearance: textfield;
}
.balt .balt-stepper input::-webkit-outer-spin-button,
.balt .balt-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.balt .balt-stepper input:focus { box-shadow: none; }
.balt .balt-stepper__btn {
  flex: none; width: 38px; border: 0; cursor: pointer; border-radius: 8px;
  font: inherit; font-size: 1.1rem; font-weight: 700; line-height: 1;
  color: var(--g-800); background: rgba(35, 164, 85, .1);
  transition: background .25s var(--ease), transform .2s var(--ease), color .25s var(--ease);
}
.balt .balt-stepper__btn:hover { background: var(--g-500); color: #fff; }
.balt .balt-stepper__btn:active { transform: scale(.92); }

/* radios & checkboxes as cards */
.balt .balt-radios { display: flex; flex-wrap: wrap; gap: .55rem; }
.balt .balt-radio {
  position: relative; display: inline-flex; align-items: center; gap: .55rem;
  padding: .68rem 1.05rem .68rem .8rem; border-radius: 100px; cursor: pointer;
  background: var(--paper-2); border: 1.5px solid transparent;
  font-size: .87rem; font-weight: 600; color: var(--tx-700);
  transition: all .3s var(--ease);
}
.balt .balt-radios--check .balt-radio { border-radius: var(--r-sm); }
.balt .balt-radio input { position: absolute; opacity: 0; pointer-events: none; }
.balt .balt-radio__box {
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 12px;
  background: #fff; border: 1.5px solid rgba(11, 19, 16, .2);
  transition: all .3s var(--ease);
}
.balt .balt-radio__box--sq { border-radius: 6px; }
.balt .balt-radio__box .balt-i { opacity: 0; transform: scale(.4); transition: all .3s var(--ease); }
.balt .balt-radio:hover { border-color: rgba(35, 164, 85, .35); }
.balt .balt-radio:has(input:checked) {
  background: rgba(35, 164, 85, .09); border-color: var(--g-500); color: var(--g-800);
}
.balt .balt-radio:has(input:checked) .balt-radio__box {
  background: linear-gradient(140deg, var(--g-500), var(--g-800)); border-color: transparent;
}
.balt .balt-radio:has(input:checked) .balt-radio__box .balt-i { opacity: 1; transform: scale(1); }
.balt .balt-radio:has(input:focus-visible) { box-shadow: 0 0 0 4px rgba(35, 164, 85, .16); }

/* optional extra-address toggles */
.balt .balt-toggle {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
  font-size: .85rem; font-weight: 650; color: var(--g-800);
}
.balt .balt-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.balt .balt-toggle__mark {
  width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center;
  background: rgba(35, 164, 85, .1); color: var(--g-800); font-size: 13px;
  transition: all .35s var(--ease);
}
.balt .balt-toggle:has(input:checked) .balt-toggle__mark {
  background: var(--g-500); color: #fff; rotate: 45deg;
}
.balt .balt-toggle__panel { margin-top: .7rem; animation: baltIn .4s var(--ease) both; }

.balt .balt-note {
  display: flex; align-items: flex-start; gap: .5rem;
  margin: .55rem 0 0; padding: .6rem .75rem; border-radius: 8px;
  background: rgba(35, 164, 85, .07);
  font-size: .78rem; line-height: 1.5; color: var(--g-800);
}
.balt .balt-note .balt-i { margin-top: .12rem; font-size: 14px; }

/* ----------------------------------------------------------------- actions */
.balt .balt-actions {
  display: flex; gap: .7rem; flex-wrap: wrap; align-items: center;
  margin-top: 1.75rem; padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.balt .balt-btn {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 1.9rem; border: 0; border-radius: 100px; cursor: pointer;
  font: inherit; font-size: .9rem; font-weight: 700;
  color: #fff; background: linear-gradient(120deg, var(--g-500), var(--g-700));
  box-shadow: 0 10px 24px rgba(31, 122, 67, .3);
  overflow: hidden; isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.balt .balt-btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.4) 50%, transparent 80%);
  transform: translateX(-130%); transition: transform .8s var(--ease);
}
.balt .balt-btn:hover { box-shadow: 0 16px 34px rgba(31, 122, 67, .42); }
.balt .balt-btn:hover::after { transform: translateX(130%); }
.balt .balt-btn:active { transform: scale(.975); }
.balt .balt-btn .balt-i { font-size: 16px; transition: transform .35s var(--ease); }
.balt .balt-btn:hover .balt-i { transform: translateX(3px); }

.balt .balt-btn--ghost {
  background: transparent; color: var(--g-800);
  box-shadow: inset 0 0 0 1.5px rgba(35, 164, 85, .32);
}
.balt .balt-btn--ghost:hover { background: rgba(35, 164, 85, .07); box-shadow: inset 0 0 0 1.5px var(--g-500); }
.balt .balt-btn--ghost .balt-i { transform: none; }
.balt .balt-btn--ghost:hover .balt-i { transform: translateX(-3px); }
.balt .balt-btn--submit { margin-left: auto; }
.balt .balt-btn__spin { display: none; animation: baltSpin .8s linear infinite; }
@keyframes baltSpin { to { rotate: 360deg; } }
.balt .balt-btn.is-busy { pointer-events: none; opacity: .85; }
.balt .balt-btn.is-busy .balt-btn__arrow { display: none; }
.balt .balt-btn.is-busy .balt-btn__spin { display: block; }

.balt .balt-formerror {
  margin: 1rem 0 0; padding: .85rem 1rem; border-radius: var(--r-sm);
  background: #fff1f1; border: 1px solid #f3c9c9; color: #b03030;
  font-size: .85rem; font-weight: 600;
}

/* -------------------------------------------------------------- success */
.balt .balt-done {
  text-align: center; padding: clamp(2rem, 6vw, 3.5rem) 1.5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: 0 24px 60px rgba(5, 20, 12, .09);
  animation: baltIn .55s var(--ease) both;
}
.balt .balt-done__mark {
  width: 72px; height: 72px; margin: 0 auto 1.25rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 32px;
  background: linear-gradient(140deg, var(--g-500), var(--g-800));
  box-shadow: 0 0 0 8px rgba(35, 164, 85, .12);
  animation: baltPop .6s var(--ease) .15s both;
}
@keyframes baltPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.balt .balt-done__title { margin: 0 0 .6rem; font-size: 1.5rem; font-weight: 800; color: var(--tx-900); }
.balt .balt-done__msg { margin: 0 auto; max-width: 520px; font-size: .95rem; line-height: 1.7; color: var(--tx-700); }
.balt .balt-done__ref {
  display: inline-block; margin-top: 1.4rem; padding: .7rem 1.25rem;
  border-radius: 100px; background: rgba(35, 164, 85, .09);
  font-size: .88rem; color: var(--g-800);
}
.balt .balt-done__ref strong { letter-spacing: .06em; }

/* ------------------------------------------------------------- responsive */
@media (max-width: 860px) {
  /* iOS Safari zooms the whole page when a focused input is under 16px.
     On a form this long that is genuinely disorienting, so bump every control
     to exactly 16px at touch sizes. */
  .balt input[type="text"],
  .balt input[type="email"],
  .balt input[type="tel"],
  .balt input[type="date"],
  .balt input[type="time"],
  .balt input[type="number"],
  .balt textarea,
  .balt select { font-size: 16px; }
}

@media (max-width: 720px) {
  .balt .balt-rail__label { display: none; }
  .balt .balt-rail__dot { width: 38px; height: 38px; font-size: 15px; }
  .balt .balt-rail__bar { top: 18px; }
  .balt .balt-grid { grid-template-columns: 1fr; }
  .balt .balt-actions { flex-direction: column-reverse; align-items: stretch; }
  .balt .balt-btn { width: 100%; justify-content: center; }
  .balt .balt-btn--submit { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .balt *, .balt *::before, .balt *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* ==========================================================================
   Editorial skin — serif headings, gold accents, ivory grounds
   ========================================================================== */
.balt .balt-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: 0 24px 60px rgba(11,36,22,.12);
}
.balt .balt-step__title { font-family: Fraunces, Georgia, serif; font-weight: 600; letter-spacing: -.01em; }
.balt .balt-step__n {
  font-family: Fraunces, Georgia, serif; color: var(--gold-t);
  background: rgba(201,162,75,.14); font-weight: 600;
}
.balt .balt-step__head { border-bottom: 1px solid var(--line); }
.balt .balt-label { color: var(--slate); font-weight: 600; }
.balt .balt-label__i { color: var(--gold-d); }
.balt .balt-req { color: var(--gold-d); }

.balt input[type="text"], .balt input[type="email"], .balt input[type="tel"],
.balt input[type="date"], .balt input[type="time"], .balt input[type="number"],
.balt textarea, .balt select {
  background: var(--ivory); border: 1.5px solid transparent; color: var(--ink);
}
.balt input:focus, .balt textarea:focus, .balt select:focus {
  background: var(--white); border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31,122,67,.13);
}

/* progress rail */
.balt .balt-rail__fill { background: linear-gradient(90deg, var(--gold-d), var(--gold)); box-shadow: 0 0 12px rgba(201,162,75,.5); }
.balt .balt-rail__dot { background: var(--white); border-color: var(--line); color: var(--slate); }
.balt .balt-rail__item.is-active .balt-rail__dot {
  background: linear-gradient(140deg, var(--green), var(--ink)); border-color: transparent;
  box-shadow: 0 0 0 5px rgba(31,122,67,.13), 0 10px 22px rgba(11,36,22,.28);
}
.balt .balt-rail__item.is-done .balt-rail__dot { background: linear-gradient(140deg, var(--gold), var(--gold-d)); }
.balt .balt-rail__item.is-active .balt-rail__label { color: var(--green); }

/* choices */
.balt .balt-radio { background: var(--ivory); }
.balt .balt-radio:has(input:checked) { background: rgba(31,122,67,.09); border-color: var(--green); color: var(--ink); }
.balt .balt-radio:has(input:checked) .balt-radio__box { background: linear-gradient(140deg, var(--green), var(--ink)); }
.balt .balt-stepper { background: var(--ivory); }
.balt .balt-stepper__btn { background: rgba(201,162,75,.16); color: var(--gold-d); }
.balt .balt-stepper__btn:hover { background: var(--gold); color: var(--ink); }
.balt .balt-toggle { color: var(--green); }
.balt .balt-toggle__mark { background: rgba(201,162,75,.16); color: var(--gold-d); }
.balt .balt-toggle:has(input:checked) .balt-toggle__mark { background: var(--gold); color: var(--ink); }
.balt .balt-note { background: rgba(201,162,75,.1); color: var(--gold-t); }

/* buttons */
.balt .balt-btn {
  background: linear-gradient(135deg, #D9B45E, var(--gold)); color: var(--ink);
  box-shadow: 0 10px 26px rgba(201,162,75,.4); font-weight: 700;
}
.balt .balt-btn:hover { box-shadow: 0 16px 34px rgba(201,162,75,.5); }
.balt .balt-btn--ghost {
  background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line);
}
.balt .balt-btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--green); color: var(--green); background: transparent; }

/* success */
.balt .balt-done { background: var(--white); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(11,36,22,.12); }
.balt .balt-done__mark { background: linear-gradient(140deg, var(--green), var(--ink)); box-shadow: 0 0 0 8px rgba(31,122,67,.12); }
.balt .balt-done__title { font-family: Fraunces, Georgia, serif; font-weight: 600; color: var(--ink); }
.balt .balt-done__ref { background: rgba(201,162,75,.14); color: var(--gold-t); }

/* ---------------------------------------------------------- address autocomplete */
.balt .balt-ac { position: relative; }
.balt .balt-ac__list {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 40;
  margin: 0; padding: 6px; list-style: none; max-height: 260px; overflow-y: auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: 0 18px 44px rgba(11,36,22,.16);
}
.balt .balt-ac__item {
  display: flex; align-items: flex-start; gap: 9px; cursor: pointer;
  padding: 10px 11px; border-radius: 8px;
  font: 500 13.5px/1.45 Inter, system-ui, sans-serif; color: var(--ink);
  transition: background .15s ease;
}
.balt .balt-ac__item svg { width: 15px; height: 15px; flex: none; margin-top: 1px; fill: var(--gold-d); }
.balt .balt-ac__item:hover, .balt .balt-ac__item.on { background: rgba(201,162,75,.14); }

/* ==========================================================================
   Compact hero quote form  [balt_quote_form]
   ========================================================================== */
.balt.baltq { max-width: none; }
.baltq .baltq-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 18px; padding: 20px; box-shadow: 0 24px 60px rgba(11,36,22,.22);
}
.baltq .baltq-head {
  display: flex; align-items: center; gap: 10px; margin: -20px -20px 16px;
  padding: 15px 20px; border-radius: 18px 18px 0 0;
  background: linear-gradient(135deg, var(--green), var(--ink)); color: #fff;
}
.baltq .baltq-head svg { width: 19px; height: 19px; fill: var(--gold); flex: none; }
.baltq .baltq-head b { display: block; font: 700 14.5px Inter; }
.baltq .baltq-head small { display: block; font: 500 11.5px Inter; color: #BFD9C7; margin-top: 1px; }

.baltq .baltq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.baltq .baltq-f { display: block; min-width: 0; }
.baltq .baltq-f--full { grid-column: 1 / -1; }
.baltq .baltq-f span {
  display: block; margin-bottom: 4px;
  font: 700 10px Inter; letter-spacing: .1em; text-transform: uppercase; color: var(--slate);
}
.baltq .baltq-f input, .baltq .baltq-f select {
  width: 100%; box-sizing: border-box !important; max-width: 100% !important;
  font: 500 13.5px Inter; color: var(--ink);
  padding: 11px 12px; border-radius: 9px;
  border: 1.5px solid var(--line); background: var(--ivory); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.baltq .baltq-f input:focus, .baltq .baltq-f select:focus {
  background: var(--white); border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,122,67,.13);
}
.baltq .baltq-f.has-error input, .baltq .baltq-f.has-error select {
  border-color: #C2542A; background: #FFF6F2;
}

.baltq .baltq-btn {
  width: 100%; margin-top: 14px; cursor: pointer; border: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 20px; border-radius: 999px;
  font: 700 14.5px Inter; color: #fff; background: var(--green);
  transition: background .2s, transform .2s;
}
.baltq .baltq-btn:hover { background: #196536; transform: translateY(-1px); }
.baltq .baltq-btn svg { width: 16px; height: 16px; fill: currentColor; }
.baltq .baltq-btn__spin { display: none; animation: baltSpin .8s linear infinite; }
.baltq .baltq-btn.is-busy { opacity: .8; pointer-events: none; }
.baltq .baltq-btn.is-busy .baltq-btn__arrow { display: none; }
.baltq .baltq-btn.is-busy .baltq-btn__spin { display: block; }

.baltq .baltq-note { margin-top: 9px; text-align: center; font: 500 11px Inter; color: var(--slate); }
.baltq .baltq-error {
  margin-top: 10px; padding: 10px 12px; border-radius: 9px;
  background: #FFF1EC; border: 1px solid #F0CDBF; color: #A8501F;
  font: 600 12.5px Inter;
}
.baltq .baltq-done {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 34px 24px; text-align: center; box-shadow: 0 24px 60px rgba(11,36,22,.22);
}
.baltq .baltq-done__mark {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--green), var(--ink));
}
.baltq .baltq-done__mark svg { width: 26px; height: 26px; }
.baltq .baltq-done h4 { font: 600 20px Fraunces, Georgia, serif; color: var(--ink); margin-bottom: 6px; }
.baltq .baltq-done p { font: 400 13.5px/1.6 Inter; color: var(--slate); }

@media (max-width: 520px) { .baltq .baltq-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Wide two-column layout + vehicle picker
   ========================================================================== */
.balt { max-width: 1080px; }
.balt .balt-form { padding: clamp(1.5rem, 3vw, 2.75rem); }

/* Two real columns instead of one narrow stack with dead space to the right. */
.balt .balt-grid {
  display: grid; gap: 1.15rem 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.balt .balt-field--full,
.balt .balt-field--textarea,
.balt .balt-field--radio,
.balt .balt-field--checkbox,
.balt .balt-field--toggle,
.balt .balt-field--picker { grid-column: 1 / -1; }

/* ------------------------------------------------------------ vehicle picker */
.balt .balt-pick__tabs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.balt .balt-pick__tab {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  padding: 9px 15px; border-radius: 999px; font: 700 12.5px Inter;
  color: var(--slate); background: var(--ivory); border: 1.5px solid transparent;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.balt .balt-pick__tab span {
  font: 700 10.5px Inter; padding: 2px 7px; border-radius: 999px;
  background: rgba(11,36,22,.09); color: var(--slate);
}
.balt .balt-pick__tab:hover { border-color: rgba(31,122,67,.4); color: var(--green); }
.balt .balt-pick__tab.on {
  background: linear-gradient(135deg, var(--green), var(--ink)); color: #fff; border-color: transparent;
  box-shadow: 0 6px 16px rgba(11,36,22,.26);
}
.balt .balt-pick__tab.on span { background: rgba(255,255,255,.22); color: #fff; }

.balt .balt-pick__rail { position: relative; }
.balt .balt-pick__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 2 * 12px) / 3);
  gap: 12px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory;
  padding: 4px 2px 10px; scrollbar-width: thin;
}
.balt .balt-pick__row::-webkit-scrollbar { height: 6px; }
.balt .balt-pick__row::-webkit-scrollbar-thumb { background: rgba(11,36,22,.2); border-radius: 99px; }
.balt .balt-pick__card {
  position: relative; scroll-snap-align: start; cursor: pointer; text-align: left;
  display: flex; flex-direction: column; padding: 0; overflow: hidden;
  background: #fff; border: 2px solid var(--line); border-radius: 14px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s;
}
.balt .balt-pick__card[hidden] { display: none; }
.balt .balt-pick__card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11,36,22,.16); border-color: rgba(31,122,67,.45); }
.balt .balt-pick__pic { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.balt .balt-pick__pic img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.balt .balt-pick__card:hover .balt-pick__pic img { transform: scale(1.07); }
.balt .balt-pick__body { display: block; padding: 11px 13px 13px; }
.balt .balt-pick__name { display: block; font: 700 13.5px Inter; color: var(--ink); margin-bottom: 5px; }
.balt .balt-pick__meta { display: flex; align-items: center; gap: 5px; font: 600 11.5px Inter; color: var(--slate); }
.balt .balt-pick__meta svg { width: 13px; height: 13px; fill: var(--gold-d); }
.balt .balt-pick__meta svg:nth-of-type(2) { margin-left: 8px; }

/* Sedans seat three and take three bags, but not three full-size checked cases
   plus carry-ons. The note sits under the count rather than replacing it. */
.balt .balt-pick__note { display: block; margin-top: 3px; font: 500 10.5px/1.3 Inter; color: var(--slate); opacity: .8; }
.balt .balt-pick__tick {
  position: absolute; top: 9px; right: 9px; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: var(--green); opacity: 0; transform: scale(.5);
  transition: opacity .25s, transform .25s cubic-bezier(.16,1,.3,1);
}
.balt .balt-pick__tick svg { width: 14px; height: 14px; }
.balt .balt-pick__card.on { border-color: var(--green); box-shadow: 0 12px 28px rgba(31,122,67,.24); }
.balt .balt-pick__card.on .balt-pick__tick { opacity: 1; transform: scale(1); }

.balt .balt-pick__nav {
  position: absolute; top: calc(50% - 22px); transform: translateY(-50%); z-index: 4;
  width: 36px; height: 36px; border: 0; border-radius: 50%; cursor: pointer;
  background: #fff; color: var(--ink); font: 400 21px/1 Inter;
  box-shadow: 0 4px 14px rgba(11,36,22,.26); transition: background .2s, color .2s;
}
.balt .balt-pick__nav:hover { background: var(--green); color: #fff; }
.balt .balt-pick__nav--prev { left: -6px; }
.balt .balt-pick__nav--next { right: -6px; }
.balt .balt-pick__nav[disabled] { opacity: 0; pointer-events: none; }

.balt .balt-pick__chosen {
  display: flex; align-items: center; gap: 12px; margin-top: 12px;
  padding: 11px 13px; border-radius: 12px;
  background: rgba(31,122,67,.08); border: 1.5px solid rgba(31,122,67,.28);
  animation: baltIn .35s cubic-bezier(.16,1,.3,1) both;
}
.balt .balt-pick__chosen img { width: 74px; height: 48px; object-fit: cover; border-radius: 8px; flex: none; }
.balt .balt-pick__chosen b { display: block; font: 700 13.5px Inter; color: var(--ink); }
.balt .balt-pick__chosen small { display: block; font: 600 11.5px Inter; color: var(--slate); margin-top: 2px; }
.balt .balt-pick__change {
  margin-left: auto; cursor: pointer; border: 0; background: none;
  font: 700 12px Inter; color: var(--green); text-decoration: underline;
}

@media (max-width: 860px) {
  .balt .balt-grid { grid-template-columns: 1fr; }
  .balt .balt-pick__row { grid-auto-columns: calc((100% - 12px) / 2); }
}
@media (max-width: 560px) {
  .balt .balt-pick__row { grid-auto-columns: 82%; }
  .balt .balt-pick__nav { display: none; }
}

/* ==========================================================================
   Manage booking  [balt_edit_booking]
   ========================================================================== */
.balte { max-width: 720px; }
.balte .balte-step { display: none; }
.balte .balte-step.is-on {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.25rem);
  box-shadow: 0 24px 60px rgba(11,36,22,.14);
  animation: baltIn .4s cubic-bezier(.16,1,.3,1) both;
}
.balte .balte-h { font: 600 22px Fraunces, Georgia, serif; color: var(--ink); margin-bottom: 6px; }
.balte .balte-h b { color: var(--green); font-weight: 600; }
.balte .balte-sub { font: 400 13.5px/1.6 Inter; color: var(--slate); margin-bottom: 18px; }

.balte .balte-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.balte .balte-f span {
  display: block; margin-bottom: 5px;
  font: 700 10px Inter; letter-spacing: .1em; text-transform: uppercase; color: var(--slate);
}
.balte .balte-f input {
  width: 100%; box-sizing: border-box !important;
  padding: 12px 13px; border-radius: 10px; font: 500 14px Inter; color: var(--ink);
  border: 1.5px solid var(--line); background: var(--ivory); outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.balte .balte-f input:focus {
  background: #fff; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,122,67,.13);
}

.balte .balte-otp { display: flex; gap: 9px; justify-content: center; margin-bottom: 18px; }
.balte .balte-otp input {
  width: 50px; height: 58px; text-align: center; box-sizing: border-box !important;
  font: 700 22px Inter; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--ivory); outline: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.balte .balte-otp input:focus {
  background: #fff; border-color: var(--green); transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(31,122,67,.15);
}

.balte .balte-btn {
  width: 100%; margin-top: 16px; cursor: pointer; border: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 20px; border-radius: 999px;
  font: 700 14.5px Inter; color: #fff; background: var(--green);
  transition: background .2s, transform .2s;
}
.balte .balte-btn:hover { background: #196536; transform: translateY(-1px); }
.balte .balte-btn svg { width: 16px; height: 16px; fill: currentColor; }
.balte .balte-spin { display: none; animation: baltSpin .8s linear infinite; }
.balte .balte-btn.is-busy { opacity: .8; pointer-events: none; }
.balte .balte-btn.is-busy .balte-arrow { display: none; }
.balte .balte-btn.is-busy .balte-spin { display: block; }
.balte .balte-link {
  display: block; margin: 11px auto 0; border: 0; background: none; cursor: pointer;
  font: 600 12.5px Inter; color: var(--green); text-decoration: underline;
}

.balte .balte-msg {
  margin-top: 13px; padding: 11px 13px; border-radius: 10px; font: 600 12.5px/1.5 Inter;
}
.balte .balte-msg.is-ok  { background: rgba(31,122,67,.1); color: #14532B; border: 1px solid rgba(31,122,67,.28); }
.balte .balte-msg.is-bad { background: #FFF1EC; color: #A8501F; border: 1px solid #F0CDBF; }

.balte .balte-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.balte .balte-badge {
  flex: none; padding: 6px 12px; border-radius: 999px;
  font: 700 10.5px Inter; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(31,122,67,.12); color: var(--green);
}

.balte .balte-fields { display: grid; gap: 8px; }
.balte .balte-item {
  display: grid; grid-template-columns: minmax(0,150px) minmax(0,1fr) auto;
  align-items: center; gap: 10px;
  padding: 11px 13px; border-radius: 11px;
  background: var(--ivory); border: 1.5px solid transparent; transition: border-color .2s, background .2s;
}
.balte .balte-item.is-editing { background: #fff; border-color: rgba(31,122,67,.4); }
.balte .balte-item__label { font: 700 11px Inter; letter-spacing: .05em; text-transform: uppercase; color: var(--slate); }
.balte .balte-item__value { font: 600 13.5px Inter; color: var(--ink); word-break: break-word; }
.balte .balte-item.is-editing .balte-item__value { display: none; }
.balte .balte-input {
  grid-column: 2 / 3; width: 100%; box-sizing: border-box !important;
  padding: 9px 11px; border-radius: 8px; font: 500 13.5px Inter; color: var(--ink);
  border: 1.5px solid var(--green); background: #fff; outline: none;
}
.balte .balte-edit {
  border: 0; background: none; cursor: pointer;
  font: 700 12px Inter; color: var(--green); text-decoration: underline;
}

@media (max-width: 620px) {
  .balte .balte-row { grid-template-columns: 1fr; }
  .balte .balte-otp input { width: 42px; height: 50px; font-size: 19px; }
  .balte .balte-item { grid-template-columns: 1fr auto; }
  .balte .balte-item__label { grid-column: 1 / -1; }
  .balte .balte-input { grid-column: 1 / -1; }
}

/* ==========================================================================
   Field restyle — the controls read as raw HTML at default weight.
   Everything below is a deliberate override of the earlier, flatter rules.
   ========================================================================== */

/* ---- labels: icon in a tinted chip, clearer hierarchy ---- */
.balt .balt-label {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
  font: 700 11.5px Inter; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink);
}
.balt .balt-label__i {
  width: 26px; height: 26px; flex: none; border-radius: 8px;
  display: grid; place-items: center; font-size: 14px;
  color: var(--gold-d); background: rgba(201,162,75,.15);
  transition: background .25s, color .25s, transform .25s;
}
.balt .balt-field:focus-within .balt-label__i {
  background: var(--green); color: #fff; transform: scale(1.06);
}
.balt .balt-req { color: #C2542A; font-weight: 800; }

/* ---- text-ish controls: white ground, real border, gold focus ring ---- */
.balt input[type="text"], .balt input[type="email"], .balt input[type="tel"],
.balt input[type="date"], .balt input[type="time"], .balt input[type="number"],
.balt textarea, .balt select {
  background: #fff;
  border: 1.5px solid #E1E7E3;
  border-radius: 12px;
  padding: 14px 16px;
  font: 500 14.5px Inter; color: var(--ink);
  box-shadow: 0 1px 2px rgba(11,36,22,.05);
  transition: border-color .22s, box-shadow .22s, background .22s, transform .22s;
}
.balt input::placeholder, .balt textarea::placeholder { color: #9AA8A1; font-weight: 400; }
.balt input:hover, .balt textarea:hover, .balt select:hover { border-color: #C6D3CC; }
.balt input:focus, .balt textarea:focus, .balt select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31,122,67,.14), 0 4px 14px rgba(11,36,22,.08);
  transform: translateY(-1px);
}
.balt .balt-field.has-error input,
.balt .balt-field.has-error textarea,
.balt .balt-field.has-error select {
  border-color: #C2542A; background: #FFF8F5;
  box-shadow: 0 0 0 4px rgba(194,84,42,.12);
}

/* ---- select: proper chevron, no native arrow ---- */
.balt .balt-select select {
  padding-right: 46px; cursor: pointer;
  background-image: none; -webkit-appearance: none; appearance: none;
}
.balt .balt-select__chev {
  right: 16px; width: 12px; height: 12px; rotate: 90deg;
  color: var(--gold-d); opacity: .9;
  transition: rotate .25s cubic-bezier(.16,1,.3,1), color .25s;
}
.balt .balt-select:focus-within .balt-select__chev { rotate: -90deg; color: var(--green); }

/* ---- radios: real cards, not bare circles ---- */
.balt .balt-radios { gap: 10px; }
.balt .balt-radio {
  padding: 13px 18px 13px 14px; border-radius: 12px;
  background: #fff; border: 1.5px solid #E1E7E3;
  font: 600 13.5px Inter; color: var(--slate);
  box-shadow: 0 1px 2px rgba(11,36,22,.05);
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.balt .balt-radio:hover { border-color: rgba(31,122,67,.45); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(11,36,22,.09); }
.balt .balt-radio__box { width: 21px; height: 21px; border: 2px solid #CBD6D0; background: #fff; }
.balt .balt-radio:has(input:checked) {
  background: rgba(31,122,67,.07); border-color: var(--green); color: var(--ink);
  box-shadow: 0 6px 18px rgba(31,122,67,.18);
}
.balt .balt-radio:has(input:checked) .balt-radio__box {
  background: linear-gradient(140deg, var(--green), var(--ink)); border-color: transparent;
}

/* ---- stepper: compact, value visible and centred ---- */
.balt .balt-stepper {
  display: inline-flex; width: auto; max-width: 190px; gap: 0;
  background: #fff; border: 1.5px solid #E1E7E3; border-radius: 12px;
  padding: 5px; box-shadow: 0 1px 2px rgba(11,36,22,.05);
}
.balt .balt-stepper:focus-within {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(31,122,67,.14);
}
.balt .balt-stepper input {
  width: 66px; min-width: 0; text-align: center;
  border: 0; background: transparent; box-shadow: none;
  font: 700 16px Inter; color: var(--ink); padding: 8px 0;
}
.balt .balt-stepper input:focus { transform: none; box-shadow: none; }
.balt .balt-stepper__btn {
  width: 38px; height: 38px; border-radius: 9px; flex: none;
  font: 600 19px/1 Inter; color: var(--gold-d);
  background: rgba(201,162,75,.14);
  transition: background .2s, color .2s, transform .15s;
}
.balt .balt-stepper__btn:hover { background: var(--green); color: #fff; }
.balt .balt-stepper__btn:active { transform: scale(.9); }

/* ---- optional-address toggle ---- */
.balt .balt-toggle {
  padding: 11px 15px; border-radius: 11px; border: 1.5px dashed #D6E0DA;
  background: #fff; font: 700 12.5px Inter; transition: all .25s;
}
.balt .balt-toggle:hover { border-color: var(--green); background: rgba(31,122,67,.04); }
.balt .balt-toggle:has(input:checked) { border-style: solid; border-color: var(--green); background: rgba(31,122,67,.07); }

/* ---- step header: numbered chip reads as a badge ---- */
.balt .balt-step__head { padding-bottom: 14px; margin-bottom: 22px; }
.balt .balt-step__n {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font: 700 13px Inter; letter-spacing: 0; padding: 0;
  color: #fff; background: linear-gradient(140deg, var(--green), var(--ink));
  box-shadow: 0 4px 12px rgba(11,36,22,.24);
}
.balt .balt-step__title { font-size: 1.45rem; }

/* ---- inline note + error ---- */
.balt .balt-note { border-radius: 10px; padding: 10px 13px; font-size: .8rem; }
.balt .balt-error { font-size: .8rem; display: flex; align-items: center; gap: 5px; }
.balt .balt-error::before { content: "!"; width: 15px; height: 15px; border-radius: 50%;
  background: #C2542A; color: #fff; font: 700 10px/15px Inter; text-align: center; flex: none; }

@media (max-width: 560px) {
  .balt .balt-stepper { max-width: 100%; width: 100%; justify-content: space-between; }
  .balt .balt-stepper input { width: 100%; }
}
