:root {
  --black: #0a0a0a;
  --ink: #111111;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --paper: #ffffff;
  --bg: #f4f4f4;
  --orange: #f15a22;
  --orange-deep: #d94a16;
  --ok: #1f6b4a;
  --err: #c62828;
  --radius: 6px;
  --max: 1080px;
  --font: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.topbar, .admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: var(--black);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.logo img {
  height: 30px;
  width: auto;
}
.admin-bar .logo span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 700;
}
.topnav, .admin-bar nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topnav a, .admin-bar nav a {
  text-decoration: none;
  opacity: 0.9;
}
.topnav .phone { color: var(--orange); }

.hero {
  position: relative;
  overflow: hidden;
}
.hero--studio {
  background: #fff;
  color: var(--ink);
}
.hero-studio {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  background: #ececec;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 42%;
}
.hero-studio::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.18) 34%, transparent 58%),
    linear-gradient(0deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.12) 16%, transparent 30%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-overlay > * {
  pointer-events: auto;
}
.hero-copy {
  position: relative;
  max-width: 76%;
  padding: 26px 24px 0;
}
.hero-copy h1 {
  margin: 0 0 10px;
  text-shadow: none;
}
.hero-accent {
  display: block;
  width: 36px;
  height: 4px;
  margin: 0 0 14px;
  background: var(--orange);
  border-radius: 2px;
}
.hero-line {
  display: block;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.048em;
  color: var(--ink);
}
.hero-dot {
  color: var(--orange);
}
.hero-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: #666;
  letter-spacing: -0.02em;
}
.hero-sub--lead {
  margin: 3px 0 16px;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
}
.hero-badge {
  display: inline-block;
  margin: 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero-steps {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 14px 14px 15px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.hero-steps-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.hero-steps-head h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-steps-note {
  margin: 0;
  padding: 4px 10px;
  border: 0;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  background: var(--orange);
}
.steps--dark {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps--dark li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  min-width: 0;
}
.steps--dark li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 15px);
  right: calc(-50% + 15px);
  top: 13px;
  height: 2px;
  background: rgba(241, 90, 34, 0.45);
}
.steps--dark .step-num {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(241, 90, 34, 0.35);
}
.steps--dark li:last-child .step-num {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.18);
}
.steps--dark strong {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: #fff;
}
.car-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 20px 32px;
  background: var(--black);
  color: #fff;
}
.car-hero.has-photos {
  padding: 0;
  min-height: 0;
  aspect-ratio: auto;
}
.car-hero-photos {
  position: absolute;
  inset: 0;
  background: #111;
  z-index: 0;
}
.car-hero-photos img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(0.72) saturate(0.92);
  transition: opacity 0.7s ease;
}
.car-hero-photos img.on { opacity: 1; }
.car-hero.has-photos .car-hero-photos::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.22) 38%, rgba(10,10,10,0.88) 100%);
  pointer-events: none;
}
.car-hero .hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  justify-content: initial;
  width: 100%;
}
.car-hero.has-photos .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: none;
  margin: 0;
  padding: 48px 20px 16px;
  box-sizing: border-box;
  min-height: max(195px, 50vw);
}
.car-hero .back {
  display: inline-block;
  color: var(--orange);
  margin: 0 0 10px;
}
.car-hero.has-photos .back {
  position: absolute;
  top: 14px;
  left: 20px;
  margin: 0;
  z-index: 3;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  text-shadow: none;
  text-decoration: none;
}
.car-hero .eyebrow { margin: 0 0 10px; }
.car-hero.has-photos .eyebrow {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}
.car-hero.has-photos .eyebrow::before {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.car-hero h1,
.car-hero .car-name {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.car-hero .car-name span {
  display: inline-block;
  padding: 0 1px 3px;
  background-image: linear-gradient(var(--orange), var(--orange));
  background-repeat: no-repeat;
  background-size: 100% 9px;
  background-position: left bottom;
}
.car-hero.has-photos .car-name {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.car-hero .lede {
  margin: 0 0 12px;
  max-width: none;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.45;
}
.car-hero.has-photos .lede {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.car-hero .hero-price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin: 0;
  padding: 7px 14px 7px 7px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  text-shadow: none;
}
.car-hero .hero-price-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}
.car-hero .hero-price-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
}
.car-hero .hero-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}
.car-hero .hero-price strong {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.car-hero .alt-price {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
}
.car-hero.has-photos .alt-price {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--orange);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--orange);
}
h1 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -0.05em;
  font-weight: 800;
}
.lede {
  margin: 0 0 18px;
  max-width: 36em;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}
.hero-price {
  font-size: 18px;
  margin: 0 0 18px;
}
.hero .hero-price { margin: 0; }
.hero-price strong, .price strong {
  font-size: 1.45em;
  letter-spacing: -0.04em;
  color: var(--orange);
}
.alt-price { margin: -16px 0 22px; color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  border: 1px solid #d0d0d0;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.btn.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.btn.primary:hover { background: var(--orange-deep); border-color: var(--orange-deep); }
.btn.full { width: 100%; }
.btn.small { min-height: 36px; padding: 0 12px; font-size: 13px; }
button.btn { font-family: inherit; }

.band {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title note"
    "steps steps";
  align-items: center;
  column-gap: 10px;
  row-gap: 16px;
  width: auto;
  margin: 0;
  padding: 18px 16px 20px;
  background: rgba(241, 90, 34, 0.94);
  color: #fff;
}
.band h2 {
  grid-area: title;
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.band-note {
  grid-area: note;
  margin: 0;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.steps {
  grid-area: steps;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  top: 14px;
  height: 1px;
  background: rgba(255,255,255,0.4);
}
.step-num {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--orange);
}
.steps li:last-child .step-num {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}
.steps strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.cars, .howto, .conditions, .siblings, .narrow {
  padding: 40px 22px 48px;
  max-width: var(--max);
  margin: 0 auto;
  scroll-margin-top: 72px;
}
.section-head {
  margin-bottom: 8px;
}
.section-head h2, .howto h2, .conditions h2, .siblings h2, .apply h1 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.section-head p { margin: 0; color: var(--muted); font-size: 14px; }
.section-meta {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #888;
  letter-spacing: -0.02em;
}
.section-meta em {
  font-style: normal;
  font-weight: 800;
  color: var(--orange);
}

.filters {
  display: grid;
  gap: 16px;
  margin: 20px 0 26px;
}
.filter-row {
  display: grid;
  gap: 8px;
}
.filter-label {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #999;
}
.filter-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.price-slider-value {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
}
.price-slider {
  display: grid;
  gap: 8px;
}
.price-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
.price-range:focus {
  outline: none;
}
.price-range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--orange) var(--fill, 100%),
    #e8e8e8 var(--fill, 100%),
    #e8e8e8 100%
  );
}
.price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.price-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: #e8e8e8;
}
.price-range::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}
.price-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.price-slider-ends {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: -0.02em;
}
.seg {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 4px;
  padding: 4px;
  background: var(--bg);
  border-radius: 10px;
  box-sizing: border-box;
}
.seg .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  min-width: 0;
  padding: 0 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.seg .chip.on {
  background: var(--black);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.brand-chips .chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  background: #f3f3f3;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.brand-chips .chip.on {
  background: var(--black);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.brand-chips .chip:first-child {
  grid-column: 1 / -1;
}
.brand-model-pick {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.brand-model-select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #888 50%),
    linear-gradient(135deg, #888 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.offer-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-decoration: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.offer-card:hover {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.offer-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.tag {
  background: var(--black);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}
.offer-card h3 { margin: 0 0 4px; font-size: 22px; letter-spacing: -0.04em; }
.detail { margin: 0 0 10px; color: var(--muted); font-size: 14px; }
.price { margin: 0 0 10px; }
.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}
.more { font-size: 13px; font-weight: 800; color: var(--orange); }

.howto { display: none; }
.empty { color: var(--muted); }

.back {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.cond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
}
.cond-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.03);
}
.cond-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(241, 90, 34, 0.1);
  color: var(--orange);
}
.cond-body {
  min-width: 0;
  flex: 1;
}
.cond-grid dt {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.cond-grid dd {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  word-break: keep-all;
}
.cond-card--monthly {
  border-color: rgba(241, 90, 34, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
}
.cond-card--monthly .cond-icon {
  background: var(--orange);
  color: #fff;
}
.cond-card--monthly dd {
  color: var(--orange);
}
.note, .fine { color: var(--muted); font-size: 13px; }
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 8;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--line);
}
.page-car { padding-bottom: 8px; }

.picked {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  margin: 16px 0 24px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}
.picked-head {
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--line);
}
.picked-tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.picked-name {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ink);
}
.picked-detail {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  word-break: keep-all;
}
.picked-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  background: var(--line);
}
.picked-specs > div {
  padding: 14px 16px;
  background: #fff;
}
.picked-specs-wide {
  grid-column: 1 / -1;
}
.picked-specs dt {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.picked-specs dd {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--ink);
  word-break: keep-all;
}
.picked-monthly {
  color: var(--orange) !important;
  font-size: 17px !important;
}
.picked-note {
  margin: 0;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}
.page-apply .apply h1 {
  margin: 0 0 4px;
  font-size: 30px;
}
.page-apply .form .btn.primary {
  border-radius: 999px;
  min-height: 52px;
  font-weight: 800;
}
.form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 14px;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="password"],
.form input[type="number"],
.form select,
.form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  background: #fff;
}
.form textarea { min-height: 88px; }
.form .opt { font-weight: 400; color: var(--muted); }
.check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 400;
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
}
.check input { margin-top: 4px; flex-shrink: 0; }
.consent-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.consent-detail {
  flex-shrink: 0;
  margin-top: 2px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}

.notice {
  padding: 12px 14px;
  border-radius: 4px;
  margin: 0 0 16px;
}
.notice.ok { background: #e5f4ec; color: var(--ok); }
.notice.err { background: #f8e4e4; color: var(--err); }
.notice.err li { margin-left: 16px; }

.thanks h1 { font-size: 34px; letter-spacing: -0.04em; }
.page-thanks, .page-apply, .page-legal { background: var(--paper); }
.page-thanks .narrow, .page-apply .narrow, .page-legal .narrow { color: var(--ink); }
.page-thanks .lede { margin: 8px 0 22px; }
.thanks-receipt { margin: 0 0 18px; }
.thanks-who { margin: 0 0 20px; }
.admin-account { margin: 0 0 16px; color: var(--muted); font-size: 13px; }
.admin-password-form { max-width: 420px; }
.page-thanks .lede, .page-apply .lede { color: var(--muted); max-width: none; }
.legal h2 { font-size: 16px; margin: 24px 0 8px; }
.legal ul { padding-left: 18px; }

.cta-band {
  padding: 64px 22px;
  background: var(--black) url("brand/hero-photo.jpg?v=1") 60% 45% / cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.86);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 {
  margin: 0 0 24px;
  font-size: 32px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.page-apply .cta-band,
.page-thanks .cta-band,
.page-car .cta-band,
.page-legal .cta-band { display: none; }

.page-home .cta-band {
  background: #f4f4f4;
  color: var(--ink);
  text-align: center;
}
.page-home .cta-band::before { display: none; }
.page-home .cta-band .eyebrow {
  justify-content: center;
  color: var(--orange);
}
.page-home .cta-band .eyebrow::before {
  display: block;
  background: var(--orange);
}
.page-home .cta-band h2 {
  color: var(--ink);
  font-size: 28px;
}
.page-home .cta-band .btn.primary {
  background: var(--black);
  border-color: var(--black);
  border-radius: 999px;
  min-height: 52px;
  padding: 0 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.page-home .cta-band .btn.primary:hover {
  background: #222;
  border-color: #222;
}

.site-footer {
  padding: 32px 22px 48px;
  color: #9a9a9a;
  font-size: 12px;
  background: var(--black);
}
.footer-logo { height: 24px; width: auto; margin-bottom: 14px; }
.site-footer a { color: #fff; }

.admin-body { background: #f3f3f3; color: var(--ink); }
.admin-wrap { padding: 20px; max-width: 1100px; margin: 0 auto; }
.admin-wrap h1 { font-size: 24px; color: var(--ink); }
.table-wrap { overflow-x: auto; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table.data th, table.data td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th { background: #fafafa; font-size: 12px; }
.status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  background: #eee;
  font-size: 12px;
}
.status.new { background: var(--orange); color: #fff; }
.status.dropped { background: #e8d3d3; }
.toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}
.photo-field {
  margin: 8px 0 20px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.photo-field legend {
  font-weight: 800;
  padding: 0 6px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0;
}
.photo-thumb {
  display: block;
  margin: 0;
  font-weight: 400;
  font-size: 12px;
}
.photo-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 4px;
  background: #111;
  display: block;
  margin-bottom: 6px;
}
.photo-thumb span {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 760px) {
  h1 { font-size: 48px; }
  .hero-studio {
    max-width: var(--max);
    aspect-ratio: 4 / 5;
    min-height: 620px;
    border-radius: 0 0 22px 22px;
  }
  .hero-bg { object-position: 52% 40%; }
  .hero-copy {
    max-width: 46%;
    padding: 40px 48px 0;
  }
  .hero-line { font-size: 40px; }
  .hero-sub { font-size: 17px; }
  .hero-sub--lead { font-size: 20px; margin-bottom: 20px; }
  .hero-steps {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 16px 22px 18px;
  }
  .hero-steps-head h2 { font-size: 15px; }
  .hero-steps-note { font-size: 11px; padding: 5px 12px; }
  .steps--dark .step-num { width: 32px; height: 32px; font-size: 11px; }
  .steps--dark li:not(:last-child)::after {
    top: 15px;
    left: calc(50% + 18px);
    right: calc(-50% + 18px);
  }
  .steps--dark strong { font-size: 12px; }
  .brand-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .offer-list { grid-template-columns: 1fr 1fr; }
  .logo img { height: 36px; }
}
