/* Jatta Cars — site styles
   Light theme: white canvas, near-black display headings, orange accent.
   Everything visual is driven by the custom properties below. */

:root {
  --ink: #010103;
  --body: #706f7b;
  --muted: #9b9aa3;
  --line: #ececec;
  --surface: #ffffff;
  --canvas: #ffffff;
  --soft: #f8f8f8;
  --accent: #ff4d30;
  --accent-dark: #e63d22;
  --accent-tint: #ffefec;
  --good: #0f7b52;
  --good-tint: #e6f5ee;
  --warn: #9a6206;
  --warn-tint: #fdf3e0;
  --bad: #c0332a;
  --bad-tint: #fdecea;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 6px 24px rgba(1, 1, 3, .07);
  --shadow-lg: 0 12px 48px rgba(1, 1, 3, .12);
  --glow: 0 10px 28px rgba(255, 77, 48, .32);
  --wrap: 1200px;
  --font: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

/* An author rule such as .btn{display:inline-flex} otherwise beats the browser's
   own [hidden] rule, so hidden elements would still show. */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: 1.35rem; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1.1em; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 56px 0; }
.section--soft { background: var(--soft); }
.section--tint { background: var(--accent-tint); }
.center { text-align: center; }
.muted { color: var(--body); }
.small { font-size: .875rem; }
.stack > * + * { margin-top: 16px; }

/* Small bold label that sits above a heading. */
.eyebrow {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .35em;
  letter-spacing: -.01em;
}
.lede { font-size: 1.05rem; max-width: 60ch; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-bottom: 0; }

/* --- Header --------------------------------------------------------------- */

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease;
}
/* The bar may run wider than the text column: the menu needs the width, and a
   header that spans the screen still looks deliberate. */
.site-header .wrap { display: flex; align-items: center; gap: 16px; min-height: 92px; max-width: 1400px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 52px; flex: none; }
.brand__text { line-height: 1.05; }
.brand__name {
  display: block;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -.02em;
  text-transform: none;
}
.brand__sub { display: block; max-width: 26ch; margin-top: 5px; font-size: .875rem; line-height: 1.3; color: var(--ink); font-weight: 400; }

.nav { display: flex; gap: 2px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--ink);
  /* Eight destinations have to share one row with the logo: the padding is as
     generous as that allows while every label still reads in full. */
  padding: 9px 9px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .95rem;
  white-space: nowrap;
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav a.is-active { color: var(--accent); font-weight: 600; }
/* The main action sits in the bar itself, not in the menu, so a phone still
   offers it without the reader opening anything. Flex order places it after
   the menu on a wide screen and before the burger on a narrow one. */
.nav { order: 2; }
.header-cta { order: 3; margin-left: 10px; white-space: nowrap; }
.header-cta__brief { display: none; }
.nav-burger { order: 4; }
.brand { order: 1; }
.brand__name { white-space: nowrap; }

/* The tagline repeats in the footer, so on anything short of a wide desktop it
   gives its width to the menu rather than pushing it onto a second row. */
@media (max-width: 1400px) {
  .brand__sub { display: none; }
  body.is-editing .brand__sub { display: block; }
}

/* The burger only exists on narrow screens; the checkbox drives it, no JS. */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: none; margin-left: auto; padding: 8px; color: var(--ink); cursor: pointer; }
.nav-toggle:focus-visible + .nav-burger { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  transition: background .16s ease, box-shadow .16s ease, color .16s ease, transform .06s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: linear-gradient(96deg, var(--accent) 0%, #f4633a 55%, #ef4a25 100%);
  color: #fff;
  box-shadow: var(--glow);
}
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #232327; color: #fff; }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--danger { background: var(--bad-tint); color: var(--bad); border-color: #f2cdc9; }
.btn--danger:hover { background: #fbdcd9; color: var(--bad); }
.btn--sm { padding: 8px 15px; font-size: .85rem; box-shadow: none; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn svg { flex: none; }

/* --- Forms ---------------------------------------------------------------- */

label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
  margin-bottom: 8px;
}
.label-icon { display: inline-flex; align-items: center; gap: 8px; }
.label-icon svg { color: var(--accent); flex: none; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"],
input[type="number"], input[type="password"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 77, 48, .14);
}
textarea { resize: vertical; min-height: 140px; }
.field + .field { margin-top: 22px; }
.field-row { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.field-row + .field, .field + .field-row, .field-row + .field-row { margin-top: 22px; }
.checkbox { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.checkbox input { width: 18px; height: 18px; accent-color: var(--accent); }
.hint { font-size: .85rem; color: var(--muted); margin-top: 6px; }

/* --- Flash messages ------------------------------------------------------- */

.flashes { max-width: var(--wrap); margin: 20px auto 0; padding: 0 24px; }
.flash {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-size: .95rem;
  font-weight: 500;
  border: 1px solid transparent;
}
.flash--error { background: var(--bad-tint); color: var(--bad); border-color: #f2cdc9; }
.flash--success { background: var(--good-tint); color: var(--good); border-color: #c4e6d6; }

/* --- Hero ----------------------------------------------------------------- */

.hero { background: var(--soft); padding: 72px 0 88px; overflow: hidden; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { max-width: 12ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__art { position: relative; }
/* The reference lets the car run past the content column; a little negative
   margin on wide screens gives it that same presence without a horizontal
   scrollbar, since the section clips its own overflow. */
.hero__art img { width: 100%; }
@media (min-width: 1100px) {
  .hero__art { margin-right: -6%; }
}

/* --- Booking search panel ------------------------------------------------- */

.booking-band { background: var(--surface); position: relative; padding: 0 0 96px; }
.booking-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 220px;
  background: var(--soft);
}
/* Faint route lines, as in the reference. Inline SVG so nothing extra loads. */
.booking-band::after {
  content: "";
  position: absolute;
  inset: 120px 0 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='320' viewBox='0 0 420 320'%3E%3Cg fill='none' stroke='%23010103' stroke-opacity='0.045' stroke-width='2'%3E%3Cpath d='M-20 250 C 90 250 90 90 200 90 S 310 250 420 250'/%3E%3Cpath d='M-20 150 C 60 150 60 20 150 20 S 250 170 340 170 400 120 440 120'/%3E%3Cpath d='M40 320 L40 210 C40 170 80 150 130 150 L300 150'/%3E%3Ccircle cx='200' cy='90' r='26'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.booking-band .wrap { position: relative; z-index: 1; }
.booking-panel {
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 46px;
}
.booking-panel__ribbon {
  position: absolute;
  top: -21px;
  right: 0;
  background: #706f7b;
  color: #fff;
  font-size: .95rem;
  padding: 8px 22px;
  border-radius: var(--radius-sm);
}
.booking-panel__ribbon strong { color: #fff; }
.booking-panel h2 { margin-bottom: 32px; }
.booking-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.booking-grid--full { grid-template-columns: 1fr; }

/* --- Cards / grid --------------------------------------------------------- */

.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card__media {
  aspect-ratio: 16 / 10;
  background: var(--soft);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card__title { margin: 0 0 2px; font-size: 1.2rem; }
.card__year { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.card__specs {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin: 0 0 20px; padding: 0; list-style: none;
}
.card__specs li {
  font-size: .8rem;
  color: var(--body);
  background: var(--soft);
  padding: 4px 11px;
  border-radius: 999px;
}
.card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price { color: var(--ink); font-weight: 800; font-size: 1.5rem; line-height: 1.1; letter-spacing: -.02em; }
.price span { font-size: .82rem; font-weight: 400; color: var(--body); letter-spacing: 0; }

/* --- Why choose us -------------------------------------------------------- */

.split { display: grid; gap: 64px; grid-template-columns: 1fr 1.1fr; align-items: start; }
.reasons { display: grid; gap: 40px; }
.reason { display: grid; grid-template-columns: 92px 1fr; gap: 24px; align-items: start; }
.reason__icon {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--accent-tint);
  display: grid; place-items: center;
  color: var(--accent);
}
.reason h3 { margin-bottom: .25em; }
.reason p { margin: 0; }

/* --- Stats ---------------------------------------------------------------- */

.stat-row { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat-block svg { color: var(--accent); margin-bottom: 14px; }
.stat-block__value { font-size: 2.9rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.stat-block__label { color: var(--body); font-weight: 500; }

/* --- Steps ---------------------------------------------------------------- */

.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step);
  display: grid; place-items: center;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.steps h3 { margin-bottom: .3em; }
.steps p { margin: 0; }

/* --- Testimonials --------------------------------------------------------- */

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  display: flex;
  flex-direction: column;
}
.quote-card blockquote {
  margin: 0 0 28px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: -.01em;
}
.quote-card__foot { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.quote-card__foot > span:nth-child(2) { min-width: 0; }
.avatar {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.quote-card__name { font-weight: 700; color: var(--ink); line-height: 1.3; }
.quote-card__place { font-size: .9rem; color: var(--body); line-height: 1.3; }
.quote-mark { margin-left: auto; color: var(--accent); flex: none; opacity: .9; }

/* --- Fleet layout --------------------------------------------------------- */

.page-head { background: var(--soft); padding: 56px 0; }
.page-head h1 { margin-bottom: .2em; }
.page-head p { margin: 0; }

.fleet-layout { display: grid; gap: 32px; grid-template-columns: 280px 1fr; align-items: start; }
.filters {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: sticky;
  top: 112px;
}
.filters h3 { font-size: 1.1rem; margin-bottom: 20px; }
.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-bottom: 26px;
}

/* --- Vehicle detail ------------------------------------------------------- */

.car-tabs { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-bottom: 8px; }
.car-tab {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-size: .98rem;
}
.car-tab:hover { text-decoration: none; border-color: var(--ink); }
.car-tab.is-active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: var(--glow); }

.detail-layout { display: grid; gap: 48px; grid-template-columns: 1.25fr 1fr; align-items: start; }
.detail-media {
  position: relative;
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  padding: 24px;
}
/* The tint sits behind the car as a soft shape, as in the reference. */
.detail-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-tint);
  border-radius: 42% 58% 54% 46% / 58% 44% 56% 42%;
}
.detail-media img { position: relative; }
.detail-media img { width: 100%; height: 100%; object-fit: contain; }

.price-lead { font-size: 3.1rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.03em; }
.price-lead + p { color: var(--body); margin-bottom: 24px; }

.spec-list { list-style: none; padding: 0; margin: 0 0 28px; }
.spec-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list svg { color: var(--ink); flex: none; }
.spec-list strong { color: var(--ink); font-weight: 600; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; }
.feature-list svg { color: var(--accent); flex: none; margin-top: 6px; }

.booking-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}
.quote-line { display: flex; justify-content: space-between; gap: 14px; font-size: .95rem; padding: 7px 0; }
.quote-total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  border-top: 1px solid var(--line); margin-top: 12px; padding-top: 16px;
}
.quote-total strong { font-size: 1.65rem; color: var(--ink); font-weight: 800; letter-spacing: -.02em; }

/* --- Panels / tables ------------------------------------------------------ */

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.panel + .panel { margin-top: 26px; }
.panel__head { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }
.panel__head h2, .panel__head h3 { margin: 0; }

.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
th, td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; white-space: nowrap; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--soft); }
td.nowrap, th.nowrap { white-space: nowrap; }

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  text-transform: capitalize;
}
.tag--pending { background: var(--warn-tint); color: var(--warn); }
.tag--confirmed { background: var(--good-tint); color: var(--good); }
.tag--completed { background: var(--soft); color: var(--body); }
.tag--cancelled { background: var(--bad-tint); color: var(--bad); }
.tag--on { background: var(--good-tint); color: var(--good); }
.tag--off { background: var(--soft); color: var(--muted); }

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.stat__label { font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.stat__value { font-size: 2.1rem; font-weight: 800; color: var(--ink); line-height: 1.15; margin-top: 4px; letter-spacing: -.02em; }
.stat-cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.empty { text-align: center; padding: 72px 24px; }
.empty h3 { color: var(--ink); }

.reference {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
}

/* --- Admin shell ---------------------------------------------------------- */

.admin-bar { background: var(--ink); color: #fff; }
.admin-bar .wrap { display: flex; align-items: center; gap: 4px; min-height: 58px; flex-wrap: wrap; }
.admin-bar a { color: #b8b8c0; font-size: .93rem; padding: 8px 14px; border-radius: var(--radius-sm); font-weight: 500; }
.admin-bar a:hover { color: #fff; background: rgba(255, 255, 255, .1); text-decoration: none; }
.admin-bar a.is-active { color: #fff; background: var(--accent); }
.admin-bar .spacer { margin-left: auto; }
.pill-count {
  background: var(--accent); color: #fff;
  border-radius: 999px; font-size: .72rem; font-weight: 700;
  padding: 1px 8px; margin-left: 6px;
}
.admin-bar a.is-active .pill-count { background: rgba(0, 0, 0, .25); }
.auth-card { max-width: 430px; margin: 88px auto; }

.inline-form { display: inline; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* --- Footer --------------------------------------------------------------- */

.site-footer { background: var(--ink); color: #a3a3ad; margin-top: auto; padding: 72px 0 32px; }
.site-footer h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 18px; font-weight: 700; }
.site-footer a { color: #d2d2d8; }
.site-footer a:hover { color: var(--accent); }
.site-footer .brand__name, .site-footer .brand__sub { color: #fff; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.7fr 1fr 1fr 1fr; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li + li { margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 48px; padding-top: 24px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .88rem;
}

/* --- Responsive ----------------------------------------------------------- */

/* Eight links and a button need more width than a tablet has. Left in a row
   they wrapped onto three lines, and the header is sticky, so those lines
   followed the reader down the page. Below this they fold into the burger. */
@media (max-width: 1240px) {
  .site-header .wrap { flex-wrap: wrap; gap: 12px; padding-top: 14px; padding-bottom: 14px; min-height: 0; }
  .nav-burger { display: block; }
  .nav {
    display: none;
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding-bottom: 8px;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .header-cta { order: 2; margin-left: auto; }
  .nav-burger { order: 3; margin-left: 4px; }
  .nav { order: 4; }
}

/* Page layout, unchanged: these stack at their own width, not the menu's. */
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 560px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .fleet-layout, .detail-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
}
/* A label/value table has nothing to gain from staying a grid on a phone, and
   sideways scrolling hides exactly the details a customer came to read. */
@media (max-width: 620px) {
  .table--stacked,
  .table--stacked tbody,
  .table--stacked tr,
  .table--stacked th,
  .table--stacked td { display: block; width: 100%; }
  .table--stacked tr {
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
  }
  .table--stacked tr:last-child { border-bottom: none; }
  .table--stacked tr:hover { background: none; }
  .table--stacked th { border: none; padding: 0 0 4px; white-space: normal; }
  .table--stacked td { border: none; padding: 0; }
}

@media (max-width: 640px) {
  /* The logo tagline wrapped onto two lines here and made the sticky header a
     fifth of the screen. The page's own heading says what the site offers, so
     the tagline stands down until there is room for it. */
  .site-header .wrap { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
  .brand__mark { width: 40px; }
  .brand__name { font-size: 1.2rem; }
  .header-cta { padding: 10px 14px; font-size: .92rem; margin-left: 8px; }

  .header-cta__full { display: none; }
  .header-cta__brief { display: inline; }
  .brand__sub { display: none; }
  /* Staff editing the site still need to see and change it. */
  body.is-editing .brand__sub { display: block; }

  .section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }
  .booking-panel { padding: 28px 22px; }
  .booking-panel__ribbon { position: static; display: inline-block; margin-bottom: 18px; }
  .reason { grid-template-columns: 68px 1fr; gap: 18px; }
  .reason__icon { width: 68px; height: 68px; }
  .reason__icon svg { width: 32px; height: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 28px; }
}

/* --- Inline editor (staff only) ------------------------------------------- */

.editbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--ink);
  color: #fff;
  font-size: .9rem;
}
.editbar__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.editbar__brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.editbar__actions { display: flex; gap: 8px; margin-left: auto; flex-wrap: wrap; }
.editbar .btn--ghost { background: transparent; color: #d2d2d8; border-color: rgba(255, 255, 255, .28); }
.editbar .btn--ghost:hover { color: #fff; border-color: #fff; }
.editbar__status { color: #b8b8c0; font-size: .85rem; }
.editbar__status[data-state="dirty"] { color: #ffb199; }
.editbar__status[data-state="saved"] { color: #7fd6ae; }
.editbar__status[data-state="error"] { color: #ff9c8f; }

/* The header is sticky too, so it has to sit below the bar rather than over it. */
body.is-editing .site-header { position: static; }

body.is-editing [data-edit],
body.is-editing [data-edit-list],
body.is-editing [data-edit-image],
body.is-editing [data-edit-icon] {
  outline: 1px dashed rgba(255, 77, 48, .5);
  outline-offset: 4px;
  border-radius: 3px;
  transition: outline-color .15s ease, background-color .15s ease;
}
body.is-editing [data-edit]:hover,
body.is-editing [data-edit-list]:hover,
body.is-editing [data-edit-image]:hover,
body.is-editing [data-edit-icon]:hover {
  outline-color: var(--accent);
  background-color: rgba(255, 77, 48, .05);
}
body.is-editing [data-edit]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  background-color: rgba(255, 77, 48, .06);
}
body.is-editing [data-edit-image] { cursor: pointer; }
body.is-editing [data-edit-icon] { cursor: pointer; }
body.is-editing a[data-edit] { pointer-events: auto; }
body.is-editing .is-changed { outline-color: var(--good) !important; }

/* Placeholder for an empty editable region, so it can still be clicked. */
body.is-editing [data-edit]:empty::before,
body.is-editing [data-edit].is-empty::before {
  content: attr(data-edit-placeholder);
  color: var(--muted);
  font-style: italic;
}

.edit-item-tools { display: inline-flex; gap: 4px; margin-left: 8px; vertical-align: middle; }
.edit-chip {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--body);
  border-radius: 999px;
  width: 22px; height: 22px;
  line-height: 1;
  font-size: .8rem;
  cursor: pointer;
  padding: 0;
}
.edit-chip:hover { border-color: var(--accent); color: var(--accent); }
.edit-add {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px dashed var(--line);
  background: #fff;
  color: var(--body);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font: inherit;
  font-size: .85rem;
  cursor: pointer;
  margin-top: 10px;
}
.edit-add:hover { border-color: var(--accent); color: var(--accent); }

.edit-popover {
  position: absolute;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 44px);
  gap: 6px;
}
.edit-popover button {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--accent);
  cursor: pointer;
}
.edit-popover button:hover { border-color: var(--accent); }
.edit-popover button[aria-pressed="true"] { background: var(--accent-tint); border-color: var(--accent); }

/* On a phone the bar is sticky, so every wrapped row is screen the page does
   not get. Drop to the controls that matter while editing; Dashboard and Sign
   out are a tap away in the staff area. */
@media (max-width: 640px) {
  .editbar__inner { padding: 8px 16px; gap: 10px; }
  .editbar__who { display: none; }
  .editbar__secondary { display: none; }
  .editbar__status { font-size: .8rem; }
  .editbar .btn--sm { padding: 7px 12px; font-size: .8rem; }
}

@media print { .editbar { display: none; } }

/* --- Inline fleet editing ------------------------------------------------- */

.approx { margin-top: 2px; }

.card__badge--muted { background: var(--body); }

/* A one-of-a-set field reads as normal text until edit mode marks it. */
body.is-editing [data-edit-choice] {
  outline: 1px dashed rgba(255, 77, 48, .5);
  outline-offset: 3px;
  border-radius: 3px;
  cursor: pointer;
}
body.is-editing [data-edit-choice]:hover { outline-color: var(--accent); }
body.is-editing [data-edit-choice].is-changed { outline-color: var(--good); }

.edit-popover--list {
  display: block;
  grid-template-columns: none;
  min-width: 180px;
  max-height: 260px;
  overflow-y: auto;
}
.edit-popover--list button {
  width: 100%;
  height: auto;
  display: block;
  text-align: left;
  padding: 9px 12px;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: .92rem;
}
.edit-popover--list button:hover { background: var(--soft); }
.edit-popover--list button[aria-pressed="true"] {
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-weight: 600;
}

.edit-tools {
  margin-top: 22px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.edit-tools p { margin: 0 0 12px; }
.edit-tools .hint { margin: 12px 0 0; }

.editbar__draft {
  background: var(--warn-tint);
  color: var(--warn);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
}
.editbar__draft:hover { text-decoration: none; background: #fbe9c8; }

/* --- Journey map and route summary ---------------------------------------- */

.journey-map {
  height: 280px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  z-index: 0;                 /* keep Leaflet panes under the sticky header */
}

.place-list {
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
}
.place-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 13px;
  border: none;
  background: none;
  font: inherit;
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
}
.place-option:hover { background: var(--soft); }
.place-option + .place-option { border-top: 1px solid var(--line); }

.route-summary {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-tint);
  color: var(--ink);
  font-size: .95rem;
}
.route-summary__source { color: var(--body); font-size: .85rem; }

/* --- Driver sign-in: large, plain, thumb-sized ----------------------------- */

.driver-card { max-width: 480px; margin: 40px auto; }
.driver-card h1 { font-size: clamp(1.7rem, 5vw, 2.2rem); margin-bottom: 10px; }
.driver-card p { font-size: 1.05rem; }
.driver-card .lede { font-size: 1.15rem; }
.btn--xl {
  width: 100%;
  min-height: 60px;
  padding: 16px 22px;
  font-size: 1.2rem;
  margin-top: 18px;
}
.phone-input { display: grid; grid-template-columns: minmax(4.6rem, 5.4rem) minmax(0, 1fr); gap: 10px; }
.phone-input input { font-size: 1.35rem; padding: 14px 12px; letter-spacing: .02em; }
.code-input {
  font-size: 2.1rem !important;
  letter-spacing: .35em;
  text-align: center;
  padding: 14px 10px !important;
  font-variant-numeric: tabular-nums;
}
.big-label { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.notice {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--soft);
  color: var(--ink);
  margin: 14px 0;
}
.notice--error { background: var(--bad-tint); color: var(--bad); }
.notice--good { background: var(--good-tint); color: var(--good); }
.notice--warn { background: var(--warn-tint); color: var(--warn); }
.link-button { background: none; border: none; padding: 0; font: inherit; color: var(--accent); cursor: pointer; text-decoration: underline; }
.link-button:disabled { color: var(--muted); cursor: default; text-decoration: none; }
.status-steps { list-style: none; padding: 0; margin: 18px 0; display: grid; gap: 10px; }
.status-steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.05rem; }
.status-steps .dot { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: .85rem; font-weight: 700; background: var(--soft); color: var(--muted); }
.status-steps .dot--done { background: var(--good-tint); color: var(--good); }
.status-steps .dot--now { background: var(--accent); color: #fff; }

/* --- Ride statuses ------------------------------------------------------------ */
.tag--accepted, .tag--arriving, .tag--in_progress { background: var(--good-tint); color: var(--good); }
.tag--declined, .tag--expired { background: var(--warn-tint); color: var(--warn); }

/* --- Choosing a driver ------------------------------------------------------ */
.choice-card { border: 2px solid var(--line); border-radius: var(--radius); padding: 18px; margin: 12px 0; background: #fff; }
.choice-card.is-selected { border-color: var(--accent); }
.choice-card.is-preferred { border-color: var(--good); }
.choice-card h3 { margin: 0 0 4px; font-size: 1.2rem; }
.choice-card .price { font-size: 1.4rem; font-weight: 700; color: var(--ink); margin: 8px 0; }
.choice-card .meta { color: var(--body); font-size: .95rem; margin: 2px 0; }
.choice-card .links a { margin-right: 16px; font-size: .95rem; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .8rem; font-weight: 600; background: var(--soft); color: var(--ink); margin: 0 6px 6px 0; }
.badge--good { background: var(--good-tint); color: var(--good); }
.badge--demo { background: var(--warn-tint); color: var(--warn); }

/* --- Reviews -------------------------------------------------------------------- */
.review-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.review-item { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; background: #fff; }
.review-item .stars { color: var(--accent); letter-spacing: .08em; font-size: 1.05rem; }
.review-item p { margin: 8px 0 0; white-space: pre-line; }
.review-item .small { margin-top: 8px; }
.rating-choice { display: flex; gap: 8px; flex-wrap: wrap; }
.rating-choice label { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-size: 1.05rem; margin: 0; }
.rating-choice input { width: auto; }

/* --- Driving mode ---------------------------------------------------------------- */
.drive-status { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 600; margin: 8px 0 16px; }
.drive-status .light { width: 14px; height: 14px; border-radius: 50%; background: var(--muted); }
.drive-status.is-online .light { background: var(--good); }
.drive-status.is-busy .light { background: var(--accent); }
.drive-job { border: 2px solid var(--accent); border-radius: var(--radius); padding: 18px; margin: 18px 0; background: #fff; }
.drive-job h2 { font-size: 1.35rem; margin: 0 0 8px; }
.drive-job dl { display: grid; grid-template-columns: max-content 1fr; gap: 6px 14px; margin: 12px 0; }
.drive-job dt { color: var(--body); }
.drive-job dd { margin: 0; color: var(--ink); font-weight: 600; }
.drive-actions { display: grid; gap: 10px; margin-top: 14px; }
.drive-map { height: 260px; border-radius: var(--radius-sm); border: 1px solid var(--line); margin-top: 12px; z-index: 0; }
.track-map { height: 340px; border-radius: var(--radius); border: 1px solid var(--line); margin: 16px 0; z-index: 0; }

.search-row { max-width: 640px; margin: 0 0 30px; }
.search-row__controls { display: flex; gap: 10px; }
.search-row__controls input { flex: 1; min-width: 0; }
.search-row__controls .btn { flex: none; }

/* --- Choosing points on the ride map --- */
.location-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 8px; }
.field-status { min-height: 1.2em; margin: 6px 0 0; font-size: .9rem; color: var(--body); }
.field-status--good { color: var(--good); }
.field-status--warn { color: var(--warn); }
.ride-map { cursor: crosshair; }
.pin { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50% 50% 50% 0;
       transform: rotate(-45deg); color: #fff; font-weight: 700; border: 2px solid #fff;
       box-shadow: 0 2px 6px rgba(0,0,0,.35); }
.pin--pickup { background: var(--good); }
.pin--dropoff { background: var(--accent); }
.leaflet-marker-icon.pin { line-height: 26px; text-align: center; }
.pin span { transform: rotate(45deg); }

/* --- Liquid buttons ----------------------------------------------------------
   Soft, layered controls for the ride form and driver sign-in, in the style of
   iOS: rounded corners, a light top highlight, stacked translucent shadows, a
   gentle press. The coral is deepened where white text sits on it, so the label
   keeps at least 4.5:1 contrast; the brighter brand coral stays in the gloss
   and the glow. */
:root {
  --liquid-coral-top: #e24026;
  --liquid-coral-bottom: #c8321a;
  --liquid-coral-text: #c8321a;      /* 5.35:1 on white */
  --liquid-coral-ink: #b52d17;       /* pressed / focus, 6.26:1 on white */
  --liquid-radius: 16px;
  --liquid-ease: cubic-bezier(.2, .8, .2, 1);
}

.btn-liquid {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;                  /* comfortable touch target */
  padding: 12px 20px;
  border-radius: var(--liquid-radius);
  border: 1px solid rgba(1, 1, 3, .08);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(250, 250, 252, .86) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  color: var(--liquid-coral-text);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 1px 2px rgba(1, 1, 3, .06),
    0 8px 18px -8px rgba(1, 1, 3, .18);
  transition:
    transform .18s var(--liquid-ease),
    box-shadow .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease;
}
.btn-liquid svg { flex: none; width: 18px; height: 18px; }
.btn-liquid:hover {
  text-decoration: none;
  border-color: rgba(200, 50, 26, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 2px 4px rgba(1, 1, 3, .06),
    0 12px 24px -10px rgba(1, 1, 3, .22);
}
.btn-liquid:active {
  transform: scale(.97);
  box-shadow:
    inset 0 1px 3px rgba(1, 1, 3, .12),
    0 1px 1px rgba(1, 1, 3, .05);
}
.btn-liquid:focus { outline: none; }
.btn-liquid:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px var(--liquid-coral-ink),
    0 8px 18px -8px rgba(1, 1, 3, .18);
}
.btn-liquid[aria-pressed="true"] {
  background: linear-gradient(180deg, #fff5f2 0%, #ffe7e1 100%);
  border-color: rgba(200, 50, 26, .45);
  color: var(--liquid-coral-ink);
  box-shadow:
    inset 0 1px 3px rgba(200, 50, 26, .16),
    0 1px 2px rgba(1, 1, 3, .05);
}
.btn-liquid[aria-pressed="true"]:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--liquid-coral-ink), inset 0 1px 3px rgba(200, 50, 26, .16);
}
.btn-liquid:disabled,
.btn-liquid[aria-disabled="true"] {
  cursor: not-allowed;
  color: #605f69;
  background: #f1f1f3;
  border-color: rgba(1, 1, 3, .06);
  box-shadow: none;
  transform: none;
  text-shadow: none;
}

.btn-liquid--primary {
  color: #fff;
  border-color: rgba(120, 25, 10, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .20) 0%, rgba(255, 255, 255, 0) 46%),
    linear-gradient(180deg, var(--liquid-coral-top) 0%, var(--liquid-coral-bottom) 100%);
  text-shadow: 0 1px 0 rgba(90, 20, 8, .22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .38),
    inset 0 -1px 0 rgba(90, 20, 8, .18),
    0 2px 4px rgba(200, 50, 26, .18),
    0 14px 28px -12px rgba(255, 77, 48, .55);
}
.btn-liquid--primary:hover {
  color: #fff;
  border-color: rgba(120, 25, 10, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .26) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, #e8452a 0%, #cc341b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    inset 0 -1px 0 rgba(90, 20, 8, .18),
    0 3px 6px rgba(200, 50, 26, .2),
    0 18px 32px -12px rgba(255, 77, 48, .6);
}
.btn-liquid--primary:active {
  transform: scale(.975);
  box-shadow:
    inset 0 2px 6px rgba(90, 20, 8, .3),
    0 1px 2px rgba(200, 50, 26, .2);
}
.btn-liquid--primary:focus-visible {
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px #1c1c1e,
    0 14px 28px -12px rgba(255, 77, 48, .55);
}
.btn-liquid--primary:disabled,
.btn-liquid--primary[aria-disabled="true"] {
  color: #7a3322;
  background: #f5d6ce;
  border-color: rgba(120, 25, 10, .1);
}

.btn-liquid--lg {
  min-height: 56px;
  padding: 15px 26px;
  font-size: 1.08rem;
  border-radius: 18px;
}
.btn-liquid--block { width: 100%; }

/* The ride form's location actions sit side by side, and stack on a phone. */
.location-actions { gap: 10px; margin-top: 10px; }
.location-actions .btn-liquid { flex: 0 1 auto; }

/* Passenger stepper: − [ 2 ] + */
.stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 20px;
  background: rgba(1, 1, 3, .035);
  box-shadow: inset 0 1px 2px rgba(1, 1, 3, .06);
}
.stepper .btn-liquid {
  width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 14px;
  font-size: 1.5rem;
  line-height: 1;
}
.stepper input[type="number"] {
  width: 4.2rem;
  min-height: 48px;
  padding: 8px 4px;
  border-radius: 12px;
  border: 1px solid rgba(1, 1, 3, .08);
  background: #fff;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}
.stepper input[type="number"]::-webkit-outer-spin-button,
.stepper input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper input[type="number"]:focus-visible {
  outline: none;
  border-color: var(--liquid-coral-ink);
  box-shadow: 0 0 0 3px rgba(181, 45, 23, .25);
}

@media (max-width: 560px) {
  .location-actions .btn-liquid { flex: 1 1 100%; }
  .btn-liquid--lg { min-height: 54px; font-size: 1.08rem; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-liquid { transition: none; }
  .btn-liquid:active, .btn-liquid--primary:active { transform: none; }
}

@media (forced-colors: active) {
  .btn-liquid { border: 1px solid ButtonText; }
  .btn-liquid:focus-visible { outline: 2px solid Highlight; outline-offset: 2px; }
  .btn-liquid[aria-pressed="true"] { border-width: 2px; }
}
/* Long numbers (a German mobile is 11 digits nationally) must stay readable on
   a small phone: the number box takes all remaining width and the type steps
   down a little rather than cutting digits off. */
.phone-input input { min-width: 0; width: 100%; }
@media (max-width: 400px) {
  .site-header .wrap { padding-left: 16px; padding-right: 16px; gap: 8px; }
  .brand__name { font-size: 1.1rem; }
  .brand { gap: 8px; }
}

@media (max-width: 420px) {
  .phone-input input { font-size: 1.15rem; padding: 13px 10px; letter-spacing: 0; }
}
