:root {
  --ink: #10100e;
  --paper: #f7f5f0;
  --cream: #ece7dc;
  --gold: #b99353;
  --gold-light: #d6b86a;
  --gold-dark: #8d6a35;
  --muted: #706b64;
  --line: rgba(16, 16, 14, 0.12);
  --dark-line: rgba(255, 255, 255, 0.1);
  --shadow: 0 22px 70px rgba(16, 16, 14, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(440px, auto) minmax(240px, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 116px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 850;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  justify-self: center;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: translateX(clamp(18px, 2vw, 34px));
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-action,
.button,
.panel-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 500;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.header-action {
  justify-self: end;
  flex: 0 0 auto;
  padding: 0 20px;
  color: var(--ink);
  background: linear-gradient(160deg, #c8a060 0%, #b99353 52%, #a67c3e 100%);
  border-color: rgba(185, 147, 83, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 4px rgba(185, 147, 83, 0.14);
  font-size: 0.88rem;
  white-space: nowrap;
}

.button {
  padding: 0 22px;
}

.button:hover,
.header-action:hover,
.panel-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(185, 147, 83, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button.primary,
.panel-button {
  color: var(--ink);
  background: linear-gradient(160deg, #e0c472 0%, #d6b86a 52%, #c4a04e 100%);
  border-color: rgba(185, 147, 83, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 1px 4px rgba(185, 147, 83, 0.14);
}

.button.primary:hover,
.panel-button:hover {
  background: linear-gradient(160deg, #e8cc78 0%, #dfc16f 52%, #cba84e 100%);
}

.header-action:hover {
  background: linear-gradient(160deg, #d4ac6c 0%, #c9a05c 52%, #b08840 100%);
}

.button.quiet {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.hero {
  display: grid;
  min-height: calc(100vh - 87px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px) clamp(20px, 5vw, 76px) clamp(64px, 8vw, 110px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(247, 245, 240, 0.72)),
    repeating-linear-gradient(90deg, rgba(185, 147, 83, 0.09) 0 1px, transparent 1px 130px);
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.panel-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.94;
}

.mini-rotator {
  position: relative;
  display: block;
  width: 4.7em;
  height: 1em;
  overflow: hidden;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 650;
  line-height: 1;
}

.mini-rotator span {
  position: absolute;
  inset: 0;
  display: block;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
  opacity: 0;
  transform: translateX(100%);
  animation: rotateMiniWord 9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.mini-rotator span:nth-child(2) {
  animation-delay: 3s;
}

.mini-rotator span:nth-child(3) {
  animation-delay: 6s;
}

@keyframes rotateMiniWord {
  0%,
  8% {
    opacity: 0;
    transform: translateX(100%);
  }

  14%,
  30% {
    opacity: 1;
    transform: translateX(0);
  }

  38%,
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.pain-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 9px 13px;
  border: 1px solid rgba(189, 58, 50, 0.18);
  border-radius: 999px;
  background: rgba(189, 58, 50, 0.07);
  color: #7d2b25;
  font-size: 0.9rem;
  font-weight: 700;
}

.pain-point span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: #c83d35;
  font-size: 1.18rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  min-height: 1em;
  font-size: 1.7rem;
  line-height: 1;
}

.proof-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-row .mini-rotator {
  width: 4.7em;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 650;
  line-height: 1;
}

.proof-row .mini-rotator span {
  display: block;
  margin-top: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: none;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pills span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 160ms ease;
}

.trust-pills span:hover {
  border-color: rgba(185, 147, 83, 0.4);
  color: var(--ink);
  background: rgba(185, 147, 83, 0.1);
  transform: translateY(-1px);
}

.trust-pills .green {
  border-color: rgba(33, 146, 83, 0.22);
  background: rgba(33, 146, 83, 0.1);
  color: #167344;
}

.trust-pills .green:hover {
  border-color: rgba(33, 146, 83, 0.4);
  background: rgba(33, 146, 83, 0.18);
}

.hero-panel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.03;
}

.hero-panel ol {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
}

.hero-panel li span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 900;
}

.hero-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.hero-panel strong {
  color: #fff;
}

.panel-button {
  width: 100%;
  background: linear-gradient(160deg, #c8a060 0%, #b99353 52%, #a67c3e 100%);
  border-color: rgba(185, 147, 83, 0.32);
  color: var(--ink);
}

.panel-button:hover {
  background: linear-gradient(160deg, #d4ac6c 0%, #c9a05c 52%, #b08840 100%);
}

.free-request {
  margin: 12px 0 0;
  color: #7de0a8;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.steps-section,
.form-section {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 76px);
}

.steps-section {
  color: var(--paper);
  background: var(--ink);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.form-intro h2 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--dark-line);
  border-radius: 18px;
  overflow: hidden;
}

.steps-grid article {
  min-height: 255px;
  padding: 30px;
  border-right: 1px solid var(--dark-line);
  background: #151512;
  transition: background 200ms ease;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid article:hover {
  background: #1e1e1a;
}

.steps-grid article:hover span {
  color: rgba(185, 147, 83, 0.4);
}

.steps-grid span {
  display: block;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.14);
  font-size: 3rem;
  font-weight: 900;
}

.steps-grid h3 {
  color: #fff;
}

.steps-grid p {
  color: rgba(255, 255, 255, 0.55);
}

.payment-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px solid rgba(33, 146, 83, 0.22);
  border-radius: 14px;
  background: rgba(33, 146, 83, 0.1);
}

.payment-note strong {
  color: #7de0a8;
  font-size: 1.08rem;
}

.payment-note p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(340px, 1.26fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background: #fff;
}

.form-intro {
  position: sticky;
  top: 120px;
}

.form-intro > p {
  color: var(--muted);
}

.purchase-form {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.progress span {
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.progress span.active {
  border-color: var(--gold);
  color: var(--gold-light);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

legend {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.step-help,
.form-note,
.photo-status {
  color: rgba(255, 255, 255, 0.48);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  font-weight: 600;
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

select option {
  color: var(--paper);
  background: var(--ink);
}

textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 147, 83, 0.15);
}

.wide-field,
.upload-box {
  margin-top: 16px;
}

.upload-box {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 26px;
  border: 2px dashed rgba(185, 147, 83, 0.42);
  border-radius: 14px;
  background: rgba(185, 147, 83, 0.07);
  text-align: center;
}

.upload-box span {
  display: grid;
  gap: 4px;
}

.upload-box strong {
  color: var(--gold-light);
  font-size: 1rem;
}

.upload-box small {
  color: rgba(255, 255, 255, 0.42);
}

.upload-box input {
  height: auto;
  margin-top: 16px;
  border: 0;
  background: transparent;
}

.photo-status {
  margin: 12px 0 0;
}

.form-error {
  min-height: 22px;
  margin: 18px 0 0;
  color: #ff8f84;
  font-weight: 800;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

#nextStep {
  border: 1px solid rgba(185, 147, 83, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 1px 6px rgba(185, 147, 83, 0.18);
}

.submit-button {
  display: none;
  margin-left: auto;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.84rem;
}

.result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--paper);
}

.result-card {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.result-card h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.result-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.result-logo {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 28px;
  mix-blend-mode: multiply;
}

.subpage-main {
  min-height: calc(100vh - 87px);
  padding: clamp(34px, 4.6vw, 58px) clamp(20px, 5vw, 76px) clamp(56px, 7vw, 96px);
}

.subpage-hero {
  max-width: 880px;
  margin-bottom: 32px;
}

.inventory-hero {
  display: block;
  max-width: none;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.inventory-hero h1 {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.inventory-hero-sub {
  margin: clamp(18px, 2.8vw, 28px) 0 0;
  line-height: 1.6;
  text-align: center;
}

.inv-sub-lead {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(1.08rem, 1.3vw, 1.22rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  margin-bottom: 0.28em;
}

.inv-sub-body {
  display: block;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.workshop-hero {
  max-width: 1180px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.workshop-hero .eyebrow {
  padding-left: 4px;
}

.workshop-hero h1 {
  max-width: 980px;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(3.7rem, 6vw, 5.6rem);
  font-weight: 430;
  line-height: 0.98;
}

.workshop-hero p:not(.eyebrow) {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 760;
  white-space: nowrap;
}

.subpage-hero h1 {
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.workshop-hero h1 {
  margin-right: 0;
  margin-left: 0;
}

.workshop-hero p:not(.eyebrow) {
  margin-right: 0;
  margin-left: 0;
}

.inventory-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.inventory-grid {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.inventory-empty {
  grid-column: 1 / -1;
  padding: clamp(52px, 8vw, 80px) 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 18px 48px rgba(16, 16, 14, 0.08);
}

.inventory-empty::before {
  content: "—";
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.6rem;
}

.vehicle-card,
.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(16, 16, 14, 0.07);
  transition: box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.vehicle-card {
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  border-color: rgba(185, 147, 83, 0.54);
  box-shadow: 0 18px 52px rgba(16, 16, 14, 0.14), 0 0 0 1px rgba(185, 147, 83, 0.12);
  transform: translateY(-5px);
}

.service-card:hover {
  border-color: rgba(185, 147, 83, 0.34);
  box-shadow: 0 24px 64px rgba(16, 16, 14, 0.13);
  transform: translateY(-3px);
}

.vehicle-image {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}

.vehicle-image span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.46;
}

.vehicle-image img,
.detail-main-photo img,
.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-image img {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.vehicle-image.has-photo img {
  position: absolute;
  inset: 0;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.04);
}

.new-arrival {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(214, 184, 106, 0.42);
  border-radius: 7px;
  padding: 0 16px;
  color: var(--gold-light);
  background: rgba(16, 16, 14, 0.66);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(16, 16, 14, 0.22), 0 0 18px rgba(214, 184, 106, 0.18);
  animation: newArrivalGlow 2.8s ease-in-out infinite;
}

@keyframes newArrivalGlow {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(16, 16, 14, 0.22), 0 0 12px rgba(214, 184, 106, 0.12);
  }

  50% {
    box-shadow: 0 8px 22px rgba(16, 16, 14, 0.24), 0 0 24px rgba(214, 184, 106, 0.36);
  }
}


.vehicle-card-content,
.service-card {
  padding: 20px;
}

.vehicle-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 28px;
}

.vehicle-card h2,
.service-card h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
}

.vehicle-card h2 {
  font-size: clamp(1.2rem, 1.9vw, 1.34rem);
  line-height: 1.38;
}

.service-card h2 {
  font-size: 1.22rem;
}

.vehicle-title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.vehicle-title-link:hover {
  color: var(--gold-dark);
  transform: translateY(-1px) translateX(3px);
}

.vehicle-meta-row {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.vehicle-price-block {
  margin-top: 30px;
}

.vehicle-price-label {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vehicle-price {
  display: block;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.1vw, 1.62rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}

.vehicle-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.vehicle-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.vehicle-card dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-card dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
}

.card-details-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.card-details-link:hover {
  color: var(--gold-dark);
}

.card-details-arrow {
  display: inline-block;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.card-details-link:hover .card-details-arrow {
  transform: translateX(4px);
}

.card-test-drive {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.62;
  transition: color 180ms ease, opacity 180ms ease;
}

.card-test-drive:hover {
  color: var(--ink);
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-card {
  display: grid;
  min-height: 220px;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}

.service-card p {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 760;
}

.service-card .button {
  position: relative;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  gap: 4px;
  padding-right: 48px;
  padding-left: 48px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.service-card .button::after {
  content: "→";
  position: static;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.service-card .button:hover {
  background: #181814;
  border-color: var(--gold);
}

.service-card .button:hover::after {
  opacity: 1;
  transform: translateX(2px);
}

.inquiry-main {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(247, 245, 240, 0.72)),
    repeating-linear-gradient(90deg, rgba(185, 147, 83, 0.09) 0 1px, transparent 1px 130px);
}

.inquiry-hero {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.inquiry-back-link {
  margin-bottom: 18px;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}

.inquiry-summary {
  position: sticky;
  top: 124px;
  padding: 28px;
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.inquiry-vehicle-photo {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  margin: -8px -8px 22px;
  border: 1px solid var(--dark-line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(185, 147, 83, 0.26), rgba(255, 255, 255, 0.08)),
    #181814;
  overflow: hidden;
}

.inquiry-vehicle-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: inquiryPhotoFade 16s ease-in-out infinite;
}

.inquiry-vehicle-photo img:nth-child(1) {
  animation-delay: 0s;
}

.inquiry-vehicle-photo img:nth-child(2) {
  animation-delay: 4s;
}

.inquiry-vehicle-photo img:nth-child(3) {
  animation-delay: 8s;
}

.inquiry-vehicle-photo img:nth-child(4) {
  animation-delay: 12s;
}

@keyframes inquiryPhotoFade {
  0%,
  18% {
    opacity: 1;
    transform: scale(1);
  }

  28%,
  100% {
    opacity: 0;
    transform: scale(1.045);
  }
}

.inquiry-vehicle-photo span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-summary span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-summary strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  max-width: 100%;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.inquiry-vehicle-meta {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.inquiry-vehicle-meta div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 10px;
}

.inquiry-vehicle-meta dt {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-vehicle-meta dd {
  margin: 0;
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: right;
}

.inquiry-summary p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.inquiry-form {
  padding: clamp(22px, 4vw, 38px);
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.inquiry-form .submit-button.visible {
  display: inline-flex;
  position: relative;
  margin-top: 20px;
  padding: 0 48px 0 32px;
  border: 1px solid rgba(185, 147, 83, 0.34);
  color: var(--ink);
  background: linear-gradient(160deg, #e0c472 0%, #d6b86a 52%, #c4a04e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 16px rgba(185, 147, 83, 0.16);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.inquiry-form .submit-button.visible::before {
  content: "";
  position: absolute;
  top: 0;
  left: -42%;
  z-index: -1;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.inquiry-form .submit-button.visible::after {
  content: "→";
  position: absolute;
  right: 24px;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.inquiry-form .submit-button.visible:hover {
  border-color: rgba(185, 147, 83, 0.48);
  color: var(--ink);
  background: linear-gradient(160deg, #e8cc78 0%, #dfc16f 52%, #cba84e 100%);
  box-shadow: 0 8px 26px rgba(185, 147, 83, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.inquiry-form .submit-button.visible:hover::before {
  left: 110%;
}

.inquiry-form .submit-button.visible:hover::after {
  transform: translateX(4px);
}

.inquiry-form .submit-button.visible:active {
  transform: translateY(0) scale(0.98);
}

.detail-main {
  background: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--ink);
}

.vehicle-detail-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-main-photo,
.detail-thumbs div {
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(185, 147, 83, 0.2), rgba(16, 16, 14, 0.08)),
    repeating-linear-gradient(90deg, rgba(16, 16, 14, 0.05) 0 1px, transparent 1px 72px),
    var(--cream);
}

.detail-main-photo {
  min-height: min(58vw, 520px);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-thumbs div {
  min-height: 120px;
}

.detail-main-photo span,
.detail-thumbs span {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-content {
  display: grid;
  gap: 30px;
  min-width: 0;
  align-content: start;
}

.detail-header h1 {
  margin-bottom: 0;
  max-width: 100%;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.detail-price {
  display: block;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.detail-facts {
  display: flex;
  flex-direction: column;
}

.detail-facts div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.detail-facts div:first-child {
  border-top: 1px solid var(--line);
}

.detail-equipment {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px 24px;
  background: var(--paper);
}

.detail-facts span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-facts strong {
  font-weight: 500;
  text-align: right;
}

.detail-equipment h2 {
  margin-bottom: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.detail-equipment ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-equipment li {
  border: 1px solid rgba(185, 147, 83, 0.28);
  border-radius: 8px;
  padding: 5px 11px;
  background: rgba(185, 147, 83, 0.04);
  color: rgba(16, 16, 14, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.detail-equipment li:hover {
  border-color: var(--gold-light);
  background: rgba(185, 147, 83, 0.09);
  color: var(--gold-dark);
}

.detail-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Detail-CTA: primärer Gold-Button */
#detailDriveLink {
  border-radius: 6px;
  letter-spacing: 0.025em;
  background: linear-gradient(155deg, #caa85e 0%, #a87e38 100%);
  border-color: rgba(168, 126, 56, 0.55);
  box-shadow:
    0 1px 3px rgba(16, 16, 14, 0.10),
    0 4px 14px rgba(168, 126, 56, 0.20);
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

#detailDriveLink:hover {
  background: linear-gradient(155deg, #d4b368 0%, #b98940 100%);
  border-color: rgba(168, 126, 56, 0.75);
  box-shadow:
    0 4px 20px rgba(168, 126, 56, 0.32),
    0 1px 4px rgba(16, 16, 14, 0.12);
  transform: translateY(-2px);
}

#detailInquiryLink {
  all: unset;
  display: block;
  padding: 2px 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(107, 100, 85, 0.4);
  cursor: pointer;
  transition: color 180ms ease;
}

#detailInquiryLink:hover {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(340px, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: 28px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.56);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer-subline {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-light);
  opacity: 0.72;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-hours {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.footer-hours-label {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
}

.footer-hours-row {
  display: flex;
  gap: clamp(20px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  font-weight: 700;
  white-space: nowrap;
}

.footer-hours-row span {
  position: relative;
}

.footer-hours-row span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(clamp(18px, 4vw, 46px) / -2);
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%);
}

.footer-hours-row strong {
  margin-right: 7px;
  color: #fff;
  font-weight: 950;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.site-footer address {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.75;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.floating-actions {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 45;
  display: grid;
  gap: 10px;
}

.floating-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(16, 16, 14, 0.18);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.floating-button:hover {
  transform: translateY(-2px);
}

.scroll-top-button {
  border-color: rgba(185, 147, 83, 0.32);
  background: rgba(16, 16, 14, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.contact-main {
  padding-bottom: clamp(56px, 7vw, 96px);
}

.contact-hero {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
  margin-bottom: clamp(40px, 6vw, 68px);
}

.contact-hero h1 {
  margin-right: 0;
  margin-left: 0;
  max-width: 680px;
  font-size: clamp(3.2rem, 5.6vw, 5rem);
  font-weight: 430;
  line-height: 0.97;
}

.contact-hero p:not(.eyebrow) {
  max-width: 480px;
  margin-right: 0;
  margin-left: 0;
}

.contact-brand-marker {
  display: block;
  width: 32px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 22px;
}

.contact-card {
  min-height: 250px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 16, 14, 0.08);
}

.contact-card.dark {
  color: var(--paper);
  background: var(--ink);
}

.contact-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.contact-card > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  color: var(--ink);
  font-weight: 850;
}

.contact-details a:hover {
  color: var(--gold-dark);
}

.contact-hours {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.contact-hours dt {
  color: #fff;
  font-weight: 950;
}

.contact-hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
  text-align: right;
}

.map-section {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 16, 14, 0.08);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: clamp(310px, 36vw, 430px);
  border: 0;
}

.reviews-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.reviews-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.reviews-head h2 {
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.reviews-head > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(247, 245, 240, 0.66);
}

.review-stars {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.review-card p {
  margin: 0 0 28px;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  font-style: italic;
  font-weight: 720;
  line-height: 1.42;
}

.review-author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.review-author > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: var(--gold);
  background: var(--ink);
  font-weight: 950;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  font-weight: 950;
}

.review-author small {
  color: var(--muted);
  font-weight: 760;
}

/* ── Contact Split Layout ────────────────────────── */

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(20px, 3vw, 36px);
  max-width: 1120px;
  margin: 0 auto clamp(32px, 5vw, 56px);
  align-items: start;
}

/* ── Info Column ─────────────────────────────────── */

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(14px, 1.8vw, 18px) clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-info-item:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(185, 147, 83, 0.1);
  }

  .contact-info-item:hover .contact-icon {
    transform: translateX(2px);
  }
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--ink);
  color: var(--gold);
  transition: transform 200ms ease;
}

.contact-info-text .eyebrow {
  margin-bottom: 6px;
}

.contact-info-text a {
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--ink);
  word-break: break-all;
  transition: color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-info-text a:hover {
    color: var(--gold-dark);
  }
}

.contact-info-text address {
  font-size: 0.94rem;
  font-weight: 800;
  font-style: normal;
  color: var(--ink);
  line-height: 1.5;
}

.contact-hours-inline {
  display: grid;
  gap: 5px;
  margin: 0;
}

.contact-hours-inline div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
}

.contact-hours-inline dt {
  font-weight: 900;
  color: var(--ink);
}

.contact-hours-inline dd {
  margin: 0;
  font-weight: 760;
  color: var(--muted);
  text-align: right;
}

/* ── External Link Cards ─────────────────────────── */

.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 28px rgba(185, 147, 83, 0.12);
    transform: translateY(-2px);
  }
}

.cta-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--ink);
  color: var(--gold);
  transition: box-shadow 200ms ease;
}

.cta-card--mobile .cta-card-icon {
  box-shadow: 0 0 14px rgba(0, 90, 200, 0.16);
}

@media (hover: hover) and (pointer: fine) {
  .cta-card--mobile:hover .cta-card-icon {
    box-shadow: 0 0 24px rgba(0, 90, 200, 0.32);
  }
}

.cta-card--ig .cta-card-icon {
  box-shadow: 0 0 14px rgba(193, 53, 132, 0.16);
}

@media (hover: hover) and (pointer: fine) {
  .cta-card--ig:hover .cta-card-icon {
    box-shadow: 0 0 24px rgba(193, 53, 132, 0.32);
  }
}

.cta-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-card-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}

.cta-card-sub {
  font-size: 0.79rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  flex: 1;
}

.cta-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-top: 6px;
}

.cta-card-cta svg {
  transition: transform 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .cta-card:hover .cta-card-cta svg {
    transform: translateX(3px);
  }
}

/* ── Form Panel ──────────────────────────────────── */

.contact-form-panel {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
}

.contact-form-eyebrow {
  color: rgba(185, 147, 83, 0.85);
}

.contact-form-heading {
  margin-bottom: clamp(22px, 3vw, 32px);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 430;
  line-height: 0.97;
  color: var(--paper);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form-field {
  display: grid;
  gap: 7px;
}

.contact-form-field label {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.6);
}

.contact-optional {
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(247, 245, 240, 0.36);
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(247, 245, 240, 0.07);
  color: var(--paper);
  font-size: 0.97rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(247, 245, 240, 0.28);
  font-weight: 600;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--gold);
  background: rgba(247, 245, 240, 0.11);
  box-shadow: 0 0 0 3px rgba(185, 147, 83, 0.18);
}

.contact-textarea {
  resize: vertical;
  min-height: 112px;
  line-height: 1.55;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 0 24px;
  border: 1px solid rgba(185, 147, 83, 0.28);
  border-radius: 14px;
  background: linear-gradient(160deg, #e0c472 0%, #d6b86a 52%, #c4a04e 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 1px 4px rgba(185, 147, 83, 0.14);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-submit:hover {
    background: linear-gradient(160deg, #e8cc78 0%, #dfc16f 52%, #cba84e 100%);
    box-shadow: 0 6px 22px rgba(185, 147, 83, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
  }
}

.contact-submit:active {
  transform: scale(0.97);
  background: linear-gradient(160deg, #d4b85e 0%, #c9a84e 52%, #b89040 100%);
  transition: transform 100ms cubic-bezier(0.23, 1, 0.32, 1), background 100ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .floating-button {
    transition: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .header-action {
    display: none;
  }

  .main-nav {
    display: flex;
    width: 100%;
    justify-self: stretch;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 0 8px;
    transform: none;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .hero,
  .form-section,
  .inquiry-layout,
  .vehicle-detail-shell,
  .contact-layout,
  .contact-split,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: clamp(24px, 5vw, 42px);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inventory-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid article:nth-child(2) {
    border-right: 0;
  }

  .form-intro {
    position: static;
  }

  .inquiry-summary {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer address {
    text-align: center;
  }

  .payment-note {
    display: block;
  }

  .payment-note p {
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand img {
    width: 86px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  .workshop-hero p:not(.eyebrow) {
    white-space: normal;
  }

  .steps-grid,
  .field-grid,
  .site-footer,
  .inventory-grid,
  .service-grid,
  .contact-layout,
  .contact-split,
  .contact-info-grid,
  .cta-cards,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(2, max-content);
  }

  .steps-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .site-footer {
    display: grid;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-hours {
    align-items: center;
  }

  .footer-hours-row {
    display: grid;
    gap: 8px;
    white-space: normal;
  }

  .footer-hours-row span + span::before {
    display: none;
  }

  .footer-links {
    align-items: center;
  }

  .site-footer address {
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════
   WERKSTATT PAGE
═══════════════════════════════════════════════════════ */

/* ── Base ─────────────────────────────────────────────── */

.ws-page {
  min-height: calc(100dvh - 87px);
}

/* ── Hero ─────────────────────────────────────────────── */

@keyframes ws-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ws-fade-right {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes ws-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(33, 146, 83, 0.45); }
  55%       { box-shadow: 0 0 0 5px rgba(33, 146, 83, 0); }
}

.ws-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92dvh;
  background-color: var(--ink);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(185, 147, 83, 0.032) 0px,
    rgba(185, 147, 83, 0.032) 1px,
    transparent 1px,
    transparent 52px
  );
  color: var(--paper);
  overflow: hidden;
}

.ws-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 76px);
  padding-right: clamp(32px, 3vw, 52px);
}

.ws-eyebrow {
  color: var(--gold-light) !important;
}

.ws-h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3.4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 14px 0 24px;
  max-width: 460px;
}

.ws-lead {
  color: rgba(247, 245, 240, 0.56);
  font-size: clamp(0.97rem, 1.3vw, 1.08rem);
  font-weight: 500;
  max-width: 400px;
  margin: 0 0 28px;
  line-height: 1.65;
}

.ws-hero-pills {
  margin-bottom: 30px;
}

.ws-hero-pills span {
  background: rgba(185, 147, 83, 0.09) !important;
  border-color: rgba(185, 147, 83, 0.28) !important;
  color: rgba(247, 245, 240, 0.80) !important;
  min-height: 38px;
  padding: 0 18px;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 180ms cubic-bezier(0.23, 1, 0.32, 1) !important;
}

@media (hover: hover) and (pointer: fine) {
  .ws-hero-pills span:hover {
    background: rgba(185, 147, 83, 0.17) !important;
    border-color: rgba(185, 147, 83, 0.50) !important;
    color: rgba(247, 245, 240, 0.96) !important;
    transform: translateY(-1px);
  }
}

.ws-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ws-btn-ghost {
  color: rgba(247, 245, 240, 0.82) !important;
  border-color: rgba(185, 147, 83, 0.44) !important;
  background: transparent !important;
  transition:
    transform 240ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .ws-btn-ghost:hover {
    background: rgba(185, 147, 83, 0.09) !important;
    color: var(--gold-light) !important;
    border-color: rgba(185, 147, 83, 0.70) !important;
    transform: translateY(-3px) !important;
  }
}

/* ── Hero CTA (Gold) ──────────────────────────────────── */

.ws-hero-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    158deg,
    #e0c472 0%,
    var(--gold-light) 48%,
    #c4a04e 100%
  ) !important;
  border-color: rgba(185, 147, 83, 0.28) !important;
  color: var(--ink) !important;
  font-weight: 500;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 2px 10px rgba(185, 147, 83, 0.18) !important;
  transition:
    transform 280ms cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 280ms cubic-bezier(0.23, 1, 0.32, 1),
    background 220ms ease !important;
}

.ws-hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 62%
  );
  transform: translateX(-110%);
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .ws-hero-cta:hover {
    background: linear-gradient(
      158deg,
      #e8cc7d 0%,
      #dfc16f 48%,
      #cead58 100%
    ) !important;
    border-color: transparent !important;
    transform: translateY(-3px) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.30),
      0 8px 28px rgba(185, 147, 83, 0.46),
      0 2px 8px rgba(185, 147, 83, 0.22) !important;
  }

  .ws-hero-cta:hover::before {
    transform: translateX(110%);
    transition: transform 540ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero-cta::before { display: none; }
}

/* Hero animation stagger */
.ws-hero-content .ws-eyebrow  { animation: ws-fade-up 580ms cubic-bezier(0.23, 1, 0.32, 1) 60ms both; }
.ws-h1                        { animation: ws-fade-up 620ms cubic-bezier(0.23, 1, 0.32, 1) 130ms both; }
.ws-lead                      { animation: ws-fade-up 600ms cubic-bezier(0.23, 1, 0.32, 1) 210ms both; }
.ws-hero-pills                { animation: ws-fade-up 580ms cubic-bezier(0.23, 1, 0.32, 1) 290ms both; }
.ws-hero-actions              { animation: ws-fade-up 560ms cubic-bezier(0.23, 1, 0.32, 1) 370ms both; }

@media (prefers-reduced-motion: reduce) {
  .ws-hero-content .ws-eyebrow,
  .ws-h1,
  .ws-lead,
  .ws-hero-pills,
  .ws-hero-actions,
  .ws-hero-panel { animation: none; }
}

/* ── Hero Panel ───────────────────────────────────────── */

.ws-hero-panel {
  position: relative;
  overflow: hidden;
  animation: ws-fade-right 800ms cubic-bezier(0.23, 1, 0.32, 1) 220ms both;
  background-image:
    linear-gradient(to right, var(--ink) 0%, rgba(16, 16, 14, 0.48) 24%, rgba(16, 16, 14, 0.06) 100%),
    linear-gradient(to bottom, rgba(16, 16, 14, 0.28) 0%, transparent 45%, rgba(16, 16, 14, 0.55) 100%),
    url('assets/werkstatt-oelwechsel.jpg');
  background-size: cover;
  background-position: center 22%;
}

.ws-hero-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(185, 147, 83, 0.36) 18%,
    rgba(185, 147, 83, 0.50) 50%,
    rgba(185, 147, 83, 0.36) 82%,
    transparent 100%
  );
  box-shadow: 0 0 10px 2px rgba(185, 147, 83, 0.09);
  z-index: 2;
  pointer-events: none;
}

.ws-panel-labels {
  position: absolute;
  bottom: clamp(30px, 4vw, 52px);
  left: clamp(28px, 4vw, 64px);
  display: flex;
  gap: 22px;
  z-index: 1;
}

.ws-panel-labels span {
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(185, 147, 83, 0.48);
  border-bottom: 1px solid rgba(185, 147, 83, 0.2);
  padding-bottom: 5px;
}

/* Dot pulse */
.ws-pill-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1a8a50;
  margin-right: 7px;
  flex-shrink: 0;
  animation: ws-dot-pulse 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .ws-pill-dot { animation: none; }
}

/* ── Services ─────────────────────────────────────────── */

.ws-services {
  padding: clamp(70px, 8vw, 110px) clamp(20px, 5vw, 76px);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Primary card */
.ws-primary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(16, 16, 14, 0.2);
  border-radius: 20px;
  background: var(--ink);
  overflow: hidden;
  min-height: 320px;
  transition: box-shadow 240ms ease;
}

.ws-primary-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(32px, 4vw, 52px);
}

.ws-primary-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ws-icon-wrap {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  color: var(--gold);
  background: rgba(185, 147, 83, 0.12);
  border: 1px solid rgba(185, 147, 83, 0.22);
  flex-shrink: 0;
  transition: background 220ms ease, transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.ws-icon-lg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.ws-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border: 1px solid rgba(185, 147, 83, 0.3);
  border-radius: 999px;
  background: rgba(185, 147, 83, 0.1);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ws-primary-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin: 0;
}

.ws-primary-desc {
  color: rgba(247, 245, 240, 0.52);
  font-size: 0.96rem;
  line-height: 1.68;
  max-width: 380px;
  margin: 0;
  font-weight: 400;
}

.ws-primary-btn {
  align-self: flex-start;
  background: linear-gradient(160deg, #e0c472 0%, #d6b86a 52%, #c4a04e 100%) !important;
  border-color: rgba(185, 147, 83, 0.28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 1px 4px rgba(185, 147, 83, 0.14) !important;
  color: var(--ink) !important;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .ws-primary-btn:hover {
    background: linear-gradient(160deg, #e8cc78 0%, #dfc16f 52%, #cba84e 100%) !important;
    box-shadow: 0 6px 22px rgba(185, 147, 83, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
  }
}

.ws-primary-raster {
  border-left: 1px solid rgba(185, 147, 83, 0.09);
  background-image:
    linear-gradient(to right, var(--ink) 0%, rgba(16, 16, 14, 0.38) 30%, rgba(16, 16, 14, 0.08) 100%),
    url('assets/werkstatt-inspektion-wartung.png');
  background-size: cover;
  background-position: center top;
}

@media (hover: hover) and (pointer: fine) {
  .ws-primary:hover {
    box-shadow: 0 36px 90px rgba(16, 16, 14, 0.32), 0 0 0 1px rgba(185, 147, 83, 0.2);
  }

  .ws-primary:hover .ws-icon-lg {
    background: rgba(185, 147, 83, 0.2);
    transform: scale(1.07);
  }
}

/* Secondary grid */
.ws-secondary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ws-sec-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  transition:
    border-top-color 220ms ease,
    box-shadow 220ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 220ms cubic-bezier(0.23, 1, 0.32, 1),
    background 220ms ease;
}

.ws-sec-card strong {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.ws-sec-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.56;
  margin: 0;
  font-weight: 400;
}

@media (hover: hover) and (pointer: fine) {
  .ws-sec-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 18px 48px rgba(16, 16, 14, 0.1);
    transform: translateY(-3px);
    background: var(--paper);
  }

  .ws-sec-card:hover .ws-icon-wrap {
    background: rgba(185, 147, 83, 0.2);
    transform: scale(1.06);
  }
}

/* Services stagger */
.ws-services.reveal-item .ws-primary,
.ws-services.reveal-item .ws-sec-card { opacity: 0; }

.ws-services.is-revealed .ws-primary {
  animation: card-enter 540ms cubic-bezier(0.23, 1, 0.32, 1) 50ms both;
}

.ws-services.is-revealed .ws-sec-card {
  animation: card-enter 460ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.ws-services.is-revealed .ws-sec-card:nth-child(1) { animation-delay: 160ms; }
.ws-services.is-revealed .ws-sec-card:nth-child(2) { animation-delay: 220ms; }
.ws-services.is-revealed .ws-sec-card:nth-child(3) { animation-delay: 280ms; }
.ws-services.is-revealed .ws-sec-card:nth-child(4) { animation-delay: 340ms; }
.ws-services.is-revealed .ws-sec-card:nth-child(5) { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .ws-services.reveal-item .ws-primary,
  .ws-services.reveal-item .ws-sec-card,
  .ws-services.is-revealed .ws-primary,
  .ws-services.is-revealed .ws-sec-card {
    opacity: 1;
    animation: none;
  }
}

/* ── Process / Ablauf ─────────────────────────────────── */

.ws-process {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 76px);
  background: var(--ink);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(185, 147, 83, 0.022) 0px,
    rgba(185, 147, 83, 0.022) 1px,
    transparent 1px,
    transparent 52px
  );
  color: var(--paper);
}

.ws-process-inner {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.ws-process-head {
  position: sticky;
  top: calc(87px + 40px);
}

.ws-process-head .eyebrow {
  color: var(--gold-light);
}

.ws-process-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 400;
  line-height: 1.06;
  color: #fff;
  margin: 8px 0 0;
}

/* Journey */
.ws-journey {
  position: relative;
  padding-left: 28px;
}

.ws-journey-line {
  position: absolute;
  top: 12px;
  left: 0;
  width: 1px;
  bottom: 48px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(185, 147, 83, 0.45) 8%,
    rgba(185, 147, 83, 0.35) 92%,
    transparent
  );
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.1s linear;
}

.ws-process.is-revealed .ws-journey-line {
  clip-path: inset(0 0 0 0);
  transition-delay: 0.45s;
}

@media (prefers-reduced-motion: reduce) {
  .ws-journey-line { clip-path: none; transition: none; }
}

.ws-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 16px;
  align-items: start;
  padding-bottom: clamp(36px, 5vw, 54px);
}

.ws-step:last-child {
  padding-bottom: 0;
}

.ws-step-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 3.8vw, 3.6rem);
  font-weight: 400;
  color: rgba(185, 147, 83, 0.2);
  line-height: 1;
  text-align: right;
  user-select: none;
  padding-top: 0;
}

.ws-step-body {
  padding-top: 6px;
}

.ws-step-body h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 750;
  margin: 0 0 8px;
  line-height: 1.3;
}

.ws-step-body p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

/* ── Trust ────────────────────────────────────────────── */

.ws-trust {
  padding: clamp(60px, 7vw, 96px) clamp(20px, 5vw, 76px);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.ws-trust-inner > .eyebrow {
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.ws-statements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.ws-statement {
  padding: clamp(26px, 3.2vw, 42px) clamp(22px, 2.5vw, 34px);
  border-right: 1px solid var(--line);
  transition: background 220ms ease;
}

.ws-statement:last-child {
  border-right: 0;
}

.ws-stat-num {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 400;
}

.ws-statement strong {
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.ws-statement p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.64;
  margin: 0;
  font-weight: 400;
}

@media (hover: hover) and (pointer: fine) {
  .ws-statement:hover {
    background: rgba(185, 147, 83, 0.04);
  }
}

/* ── CTA ──────────────────────────────────────────────── */

.ws-cta {
  padding: clamp(110px, 15vw, 190px) clamp(20px, 5vw, 76px);
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse 72% 55% at 50% 50%, rgba(185, 147, 83, 0.07) 0%, transparent 68%),
    repeating-linear-gradient(
      -45deg,
      rgba(185, 147, 83, 0.026) 0px,
      rgba(185, 147, 83, 0.026) 1px,
      transparent 1px,
      transparent 52px
    );
  color: var(--paper);
}

.ws-cta-center {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ws-cta-h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.8vw, 5.8rem);
  font-weight: 400;
  line-height: 1.0;
  color: #fff;
  margin: 10px 0 4px;
  letter-spacing: -0.03em;
}

.ws-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.71rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(185, 147, 83, 0.6);
  margin: 0 0 28px;
}

.ws-cta-label::before,
.ws-cta-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(185, 147, 83, 0.3);
}

.ws-cta-rotator-wrap {
  position: relative;
  width: 100%;
  height: 1.3em;
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.02em;
  margin: 16px 0 52px;
}

/* ── 21st.dev Animated-Hero: blur-fade-slide ── */
.ws-rotator-word {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(0.5em);
  transition:
    opacity   500ms cubic-bezier(0.23, 1, 0.32, 1),
    filter    500ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

.ws-rotator-word.is-active {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}

.ws-rotator-word.is-out {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-0.5em);
  transition:
    opacity   350ms cubic-bezier(0.55, 0, 1, 0.45),
    filter    350ms cubic-bezier(0.55, 0, 1, 0.45),
    transform 350ms cubic-bezier(0.55, 0, 1, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .ws-rotator-word { transition: none; filter: none; }
  .ws-rotator-word:not(.is-active) { opacity: 0; transform: none; }
  .ws-rotator-word.is-active { opacity: 1; transform: none; filter: none; }
}

.ws-cta-sub {
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(0.97rem, 1.4vw, 1.06rem);
  font-weight: 400;
  margin: 0 auto 44px;
  line-height: 1.65;
  max-width: 440px;
}

.ws-cta-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(185, 147, 83, 0.15);
}

.ws-cta-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 16, 14, 0.44) 0%, transparent 55%);
  pointer-events: none;
}

.ws-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.82) contrast(1.06);
}

.ws-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.ws-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 200ms cubic-bezier(0.23, 1, 0.32, 1),
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.ws-cta-btn strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.ws-cta-btn small {
  display: block;
  font-size: 0.77rem;
  font-weight: 500;
  opacity: 0.62;
  margin-top: 2px;
}

.ws-cta-btn svg { flex-shrink: 0; opacity: 0.88; }

.ws-btn-arrow {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 250ms cubic-bezier(0.23, 1, 0.32, 1), opacity 250ms ease;
}

.ws-phone {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.ws-whatsapp {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: rgba(34, 139, 74, 0.88);
  border-color: rgba(34, 139, 74, 0.6);
}

.ws-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 62%
  );
  transform: translateX(-110%);
  pointer-events: none;
}

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

.ws-form {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

@media (hover: hover) and (pointer: fine) {
  .ws-phone:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(185, 147, 83, 0.28);
  }

  .ws-whatsapp:hover {
    background: rgba(34, 139, 74, 1);
    border-color: rgba(34, 139, 74, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(34, 139, 74, 0.28);
  }

  .ws-whatsapp:hover::before {
    transform: translateX(110%);
    transition: transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .ws-form:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
  }

  .ws-form:hover .ws-btn-arrow {
    transform: translateX(5px);
    opacity: 1;
  }
}

.ws-cta-btn:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

/* ── Responsive: 1100px ───────────────────────────────── */

@media (max-width: 1100px) {
  .ws-secondary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Responsive: CTA stack ────────────────────────────── */

@media (max-width: 820px) {
  .ws-cta-inner {
    grid-template-columns: 1fr;
  }
  .ws-cta-image {
    display: none;
  }
}

/* ── Responsive: 940px ────────────────────────────────── */

@media (max-width: 940px) {
  .ws-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ws-hero-content {
    padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 76px);
  }

  .ws-hero-panel {
    display: none;
  }

  .ws-primary {
    grid-template-columns: 1fr;
  }

  .ws-primary-raster {
    display: none;
  }

  .ws-process-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ws-process-head {
    position: static;
  }

  .ws-statements {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-statement:nth-child(2) {
    border-right: 0;
  }

  .ws-statement:nth-child(1),
  .ws-statement:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

/* ── Responsive: 640px ────────────────────────────────── */

@media (max-width: 640px) {
  .ws-secondary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ws-journey {
    padding-left: 20px;
  }

  .ws-step {
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
  }

  .ws-step-num {
    font-size: 2.2rem;
  }

  .ws-statements {
    grid-template-columns: 1fr;
  }

  .ws-statement {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ws-statement:last-child {
    border-bottom: 0;
  }

  .ws-cta-actions {
    flex-direction: column;
  }

  .ws-cta-btn {
    width: 100%;
  }
}

/* ── Button :active feedback ──────────────────────────── */

.button:active,
.header-action:active,
.panel-button:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

/* ── Skeleton loading cards ───────────────────────────── */

@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.skeleton-card {
  pointer-events: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.skeleton-image {
  aspect-ratio: 4 / 3;
  min-height: 200px;
  background: var(--cream);
  animation: skeleton-pulse 1.8s ease-in-out infinite;
}

.skeleton-body {
  padding: 22px 24px 24px;
  display: grid;
  gap: 14px;
}

.skeleton-line {
  height: 13px;
  border-radius: 999px;
  background: var(--cream);
  animation: skeleton-pulse 1.8s ease-in-out infinite;
}

.skeleton-line:nth-child(2) { animation-delay: 0.1s; }
.skeleton-line:nth-child(3) { animation-delay: 0.2s; }

.sk-price {
  width: 42%;
  height: 22px;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.skeleton-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.skeleton-btn {
  height: 42px;
  border-radius: 4px;
  background: var(--cream);
  animation: skeleton-pulse 1.8s ease-in-out infinite;
}

.sk-full {
  grid-column: 1 / -1;
}

/* ── Vehicle card stagger entrance ───────────────────── */

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vehicle-card {
  animation: card-enter 440ms cubic-bezier(0.23, 1, 0.32, 1) both;
}

.vehicle-card:nth-child(1) { animation-delay: 0ms; }
.vehicle-card:nth-child(2) { animation-delay: 60ms; }
.vehicle-card:nth-child(3) { animation-delay: 120ms; }
.vehicle-card:nth-child(4) { animation-delay: 180ms; }
.vehicle-card:nth-child(5) { animation-delay: 240ms; }
.vehicle-card:nth-child(6) { animation-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .vehicle-card {
    animation: none;
  }

  .skeleton-image,
  .skeleton-line,
  .skeleton-btn {
    animation: none;
    opacity: 0.55;
  }
}

/* ── Hover effects only for pointer devices ──────────── */

@media (hover: hover) and (pointer: fine) {
  .vehicle-card:hover {
    border-color: rgba(185, 147, 83, 0.54);
    box-shadow: 0 18px 52px rgba(16, 16, 14, 0.14), 0 0 0 1px rgba(185, 147, 83, 0.12);
    transform: translateY(-5px);
  }

  .vehicle-card:hover .vehicle-image img {
    transform: scale(1.06);
  }
}

/* ── Detail page: facts hover ────────────────────────── */

.detail-facts div {
  transition: border-color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .detail-facts div:hover {
    border-color: rgba(185, 147, 83, 0.45);
  }
}

/* ── Detail header (pre-grid, volle Breite) ──────────── */

.detail-header {
  margin-bottom: clamp(22px, 4vw, 38px);
}

.detail-header .eyebrow {
  margin-bottom: 10px;
}

/* ── Detail price label ──────────────────────────────── */

.detail-price-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Detail phone & WhatsApp links ───────────────────── */

.detail-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 180ms ease, background 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .detail-phone-link:hover {
    border-color: rgba(185, 147, 83, 0.5);
    background: rgba(185, 147, 83, 0.04);
  }
}

.detail-whatsapp-link {
  display: block;
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease;
}

.detail-whatsapp-link:hover {
  color: var(--ink);
}

/* ── Detail price block ──────────────────────────────── */

.detail-price-block {
  padding-bottom: 8px;
}

/* ── Detail contact: full-width CTA ─────────────────── */

.detail-contact .button {
  width: 100%;
  min-height: 52px;
  padding: 0 28px;
  font-size: 0.94rem;
  text-align: center;
  box-sizing: border-box;
}

.price-page {
  min-height: 100vh;
  padding: 28px;
  background: #d9d9d6;
  color: #111;
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.price-sheet {
  width: min(960px, 100%);
  min-height: 1358px;
  margin: 0 auto;
  padding: 54px 58px 42px;
  background: #fff;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.16);
}

.price-head {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.price-head img {
  width: 135px;
  height: 72px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.price-head h1 {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1.05;
}

.price-head p {
  margin: 10px 0 0;
  color: #484848;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.1;
}

.price-top-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 48px;
  margin-bottom: 76px;
}

.price-top-grid.no-finance {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-bottom: 86px;
}

.price-block h2,
.equipment-block h2,
.price-bottom h2 {
  margin: 0 0 8px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.52rem;
  font-weight: 900;
  line-height: 1.08;
}

.price-block dl {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.16;
}

.price-block dl div {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 16px;
}

.price-block dt,
.price-block dd {
  margin: 0;
}

.price-block dd {
  font-weight: 500;
}

.bank-note {
  max-width: 410px;
  margin: 0 0 4px;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.08;
}

.finance-block dl div {
  grid-template-columns: 1.15fr 1fr;
}

.finance-block dd {
  text-align: right;
}

.price-info-box {
  align-self: stretch;
  padding: 24px 28px;
  border: 1.5px solid #d4d0c7;
  background: #f4f1eb;
}

.price-info-box h2 {
  margin: 0 0 12px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.52rem;
  font-weight: 900;
}

.price-info-box p {
  margin: 0 0 12px;
  color: #333;
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.28;
}

.equipment-block {
  margin-bottom: 26px;
}

.equipment-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.equipment-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.17rem;
  font-weight: 500;
  line-height: 1.18;
}

.equipment-columns li {
  margin: 0 0 5px;
}

.equipment-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 28px;
  font-size: 1.08rem;
  font-weight: 600;
}

.price-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: start;
  margin-top: 16px;
  padding: 18px 0 42px;
  border-top: 1.5px solid #9e9e9e;
  border-bottom: 1.5px solid #9e9e9e;
}

.price-bottom.single-price {
  grid-template-columns: 1fr;
}

.price-bottom p {
  margin: 4px 0 12px;
  color: #444;
  font-size: 0.92rem;
}

.price-bottom strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(3.4rem, 7vw, 4.25rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  color: #2b2b2b;
  font-size: 0.92rem;
}

.price-footer div,
.price-footer address {
  display: grid;
  gap: 3px;
  font-style: normal;
}

.price-footer address {
  text-align: right;
}

.generator-page {
  min-height: 100vh;
  background: #f0efec;
  color: var(--ink);
}

.generator-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(18px);
}

.generator-layout {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(760px, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px;
}

.generator-form {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 16, 14, 0.08);
}

.generator-title h1 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}

.generator-title p {
  color: var(--muted);
}

.generator-form fieldset {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.generator-form legend {
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.generator-form label {
  color: var(--muted);
}

.generator-form input,
.generator-form textarea {
  border-color: var(--line);
  background: #f8f7f3;
  color: var(--ink);
}

.generator-form textarea {
  min-height: 160px;
  text-transform: none;
}

.generator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.generator-preview {
  overflow: auto;
  padding-bottom: 28px;
}

.live-price-sheet {
  transform-origin: top left;
}

.intern-page {
  min-height: 100vh;
  background: #f0efec;
}

.intern-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.intern-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(280px, 0.72fr) minmax(420px, 1.25fr);
  gap: 22px;
  align-items: start;
  padding: 24px;
}

.intern-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 16, 14, 0.08);
}

.intern-editor {
  padding: 24px;
}

.intern-editor form {
  display: grid;
  gap: 16px;
}

.intern-editor label,
.vehicle-list-panel label {
  color: var(--muted);
}

.intern-editor input,
.intern-editor textarea {
  border-color: var(--line);
  background: #f8f7f3;
  color: var(--ink);
}

.intern-editor textarea {
  min-height: 132px;
  text-transform: none;
}

.intern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vehicle-list-panel,
.selected-panel {
  padding: 20px;
}

.panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-top h2,
.empty-selected h2,
.selected-vehicle h2 {
  margin: 0 0 5px;
  font-size: 1.25rem;
}

.panel-top p,
.empty-selected p,
.selected-vehicle p {
  margin: 0;
  color: var(--muted);
}

.danger-button {
  min-height: 38px;
  padding: 0 14px;
  color: #8a2d28;
}

.vehicle-list {
  display: grid;
  gap: 10px;
}

.vehicle-row {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f7f3;
  color: var(--ink);
  text-align: left;
}

.vehicle-row:hover,
.vehicle-row.active {
  border-color: var(--gold);
  background: #f4efe4;
}

.vehicle-row strong {
  font-size: 0.98rem;
}

.vehicle-row span,
.empty-list {
  color: var(--muted);
  font-size: 0.84rem;
}

.selected-vehicle {
  display: grid;
  gap: 18px;
}

.selected-vehicle .button {
  width: 100%;
}

.intern-preview {
  margin-top: 22px;
  overflow: auto;
}

.preview-toolbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.intern-preview .price-sheet {
  width: 760px;
  min-height: 1075px;
  padding: 42px 46px 34px;
  box-shadow: 0 12px 36px rgba(16, 16, 14, 0.12);
}

@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  .price-page {
    padding: 0;
    background: #fff;
  }

  .price-sheet {
    width: 210mm;
    min-height: 297mm;
    padding: 12mm 13mm 10mm;
    box-shadow: none;
  }

  .generator-page {
    padding: 0;
    background: #fff;
  }

  .generator-header,
  .generator-form,
  .intern-header,
  .intern-editor,
  .vehicle-list-panel,
  .empty-selected,
  .selected-vehicle,
  .preview-toolbar {
    display: none;
  }

  .generator-layout,
  .generator-preview,
  .intern-layout,
  .selected-panel,
  .intern-preview {
    display: block;
    padding: 0;
    border: 0;
    overflow: visible;
    box-shadow: none;
  }

  .live-price-sheet {
    width: 210mm;
    min-height: 297mm;
    transform: none;
  }
}

@media (max-width: 760px) {
  .price-page {
    padding: 12px;
  }

  .price-sheet {
    min-height: auto;
    padding: 28px 22px;
  }

  .price-head,
  .price-top-grid,
  .equipment-columns,
  .equipment-foot,
  .price-bottom {
    grid-template-columns: 1fr;
  }

  .price-footer {
    display: grid;
  }

  .price-head {
    text-align: left;
  }

  .finance-block dd,
  .price-footer address {
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .generator-layout,
  .intern-layout {
    grid-template-columns: 1fr;
  }

  .generator-form {
    position: static;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .generator-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .generator-layout {
    padding: 14px;
  }

  .generator-grid,
  .intern-layout {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════
   TERMINBUCHUNG  –  tr-* namespace
   ═══════════════════════════════════════════════════════════ */

/* ── Page shell ─────────────────────────────────────────── */

.tr-page {
  min-height: calc(100dvh - 87px);
}

/* ── Hero ───────────────────────────────────────────────── */

.tr-hero {
  background-color: var(--ink);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(185, 147, 83, 0.032) 0px,
    rgba(185, 147, 83, 0.032) 1px,
    transparent 1px,
    transparent 52px
  );
  color: var(--paper);
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 76px) clamp(48px, 6vw, 80px);
}

.tr-hero-inner {
  max-width: 820px;
}

.tr-eyebrow {
  color: var(--gold-light) !important;
}

.tr-h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 14px 0 20px;
  max-width: 580px;
}

.tr-lead {
  color: rgba(247, 245, 240, 0.58);
  font-size: clamp(0.95rem, 1.4vw, 1.06rem);
  font-weight: 500;
  max-width: 460px;
  margin: 0;
  line-height: 1.65;
}

/* ── Booking section ────────────────────────────────────── */

.tr-booking {
  background: var(--paper);
  padding: clamp(52px, 8vw, 100px) clamp(20px, 5vw, 76px);
}

.tr-booking-inner,
.tr-success {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
  color: var(--paper);
}

/* ── Progress bar ───────────────────────────────────────── */

.tr-progress-wrap {
  margin-bottom: 36px;
}

.tr-progress-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.tr-progress-label {
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(247, 245, 240, 0.22);
  text-align: center;
  transition: color 300ms ease;
}

.tr-step-active {
  color: var(--gold-light) !important;
}

.tr-step-done {
  color: rgba(185, 147, 83, 0.55) !important;
}

.tr-progress-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 2px;
  overflow: hidden;
}

.tr-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 2px;
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .tr-progress-fill {
    transition: none;
  }
}

/* ── Steps ──────────────────────────────────────────────── */

.tr-step {
  display: none;
  opacity: 0;
}

.tr-step.active {
  display: block;
  animation: trStepIn 300ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes trStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .tr-step.active {
    animation: none;
    opacity: 1;
  }
}

.tr-step legend {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  color: var(--paper);
  padding: 0;
  margin-bottom: 4px;
  font-weight: 400;
}

.tr-step-sub {
  color: rgba(247, 245, 240, 0.46);
  font-size: 0.88rem;
  margin: 0 0 22px;
  line-height: 1.5;
}

/* ── Service cards ──────────────────────────────────────── */

.tr-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tr-service-card {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: rgba(247, 245, 240, 0.75) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: border-color 180ms ease, background 180ms ease, transform 150ms ease, color 180ms ease;
}

.tr-service-card:hover {
  border-color: rgba(185, 147, 83, 0.5);
  background: rgba(185, 147, 83, 0.07);
  transform: translateY(-2px);
  color: var(--paper) !important;
}

.tr-service-card:has(input:checked),
.tr-service-card.is-selected {
  border-color: var(--gold);
  background: rgba(185, 147, 83, 0.1);
  color: var(--gold-light) !important;
}

.tr-service-card input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.tr-svc-icon {
  color: var(--gold);
  line-height: 0;
  opacity: 0.85;
  transition: transform 180ms ease, opacity 180ms ease;
}

.tr-service-card:hover .tr-svc-icon {
  opacity: 1;
  transform: translateY(-1px);
}

.tr-service-card:has(input:checked) .tr-svc-icon,
.tr-service-card.is-selected .tr-svc-icon {
  color: var(--gold-light);
  opacity: 1;
}

.tr-svc-name {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ── Field grid ─────────────────────────────────────────── */

.tr-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tr-field-full {
  grid-column: 1 / -1;
}

.tr-req {
  color: var(--gold);
  font-weight: 900;
}

.tr-opt {
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 0.75em;
  opacity: 0.6;
}

/* ── Time cards ─────────────────────────────────────────── */

.tr-time-heading {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 20px 0 10px;
}

.tr-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tr-time-card {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--paper) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: border-color 180ms ease, background 180ms ease, transform 150ms ease;
}

.tr-time-card:hover {
  border-color: rgba(185, 147, 83, 0.5);
  background: rgba(185, 147, 83, 0.07);
  transform: translateY(-1px);
}

.tr-time-card:has(input:checked),
.tr-time-card.is-selected {
  border-color: var(--gold);
  background: rgba(185, 147, 83, 0.1);
}

.tr-time-card input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.tr-time-icon {
  color: var(--gold);
  line-height: 0;
  margin-bottom: 6px;
}

.tr-time-card:has(input:checked) .tr-time-icon,
.tr-time-card.is-selected .tr-time-icon {
  color: var(--gold-light);
}

.tr-time-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--paper);
}

.tr-time-sub {
  font-size: 0.75rem;
  color: rgba(247, 245, 240, 0.42);
  font-weight: 400;
}

/* ── Privacy checkbox ───────────────────────────────────── */

.tr-privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
}

.tr-privacy-check {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  padding: 0 !important;
  margin-top: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  cursor: pointer;
  position: relative;
  transition: border-color 180ms ease, background 180ms ease;
  box-shadow: none !important;
}

.tr-privacy-check:checked {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.tr-privacy-check:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--ink);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.tr-privacy-label {
  display: block !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: rgba(247, 245, 240, 0.52) !important;
  line-height: 1.55;
  cursor: pointer;
  gap: 0 !important;
}

.tr-privacy-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(214, 184, 106, 0.38);
  transition: text-decoration-color 180ms ease;
}

.tr-privacy-link:hover {
  text-decoration-color: var(--gold-light);
}

/* ── Inline error ───────────────────────────────────────── */

.tr-form-error {
  background: rgba(200, 50, 50, 0.14);
  border: 1px solid rgba(200, 50, 50, 0.28);
  border-radius: 8px;
  color: #ff9a9a;
  font-size: 0.85rem;
  padding: 12px 16px;
  margin-top: 16px;
  line-height: 1.45;
}

/* ── Navigation buttons ─────────────────────────────────── */

.tr-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tr-btn-back {
  height: 48px;
  padding: 0 22px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: rgba(247, 245, 240, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, transform 180ms ease;
}

.tr-btn-back:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--paper);
  transform: translateY(-1px);
}

.tr-btn-next {
  height: 48px;
  padding: 0 36px;
  background: linear-gradient(160deg, #c8a060 0%, #b99353 52%, #a67c3e 100%);
  border: 1px solid rgba(185, 147, 83, 0.32);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 4px rgba(185, 147, 83, 0.14);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-left: auto;
  transition: background 200ms ease, transform 180ms ease, box-shadow 200ms ease;
}

.tr-btn-next:hover:not(:disabled) {
  background: linear-gradient(160deg, #d4ac6c 0%, #c9a05c 52%, #b08840 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(185, 147, 83, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.tr-btn-next:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ── Success state ──────────────────────────────────────── */

.tr-success {
  text-align: center;
}

.tr-success-ring {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold);
  animation: trRingIn 450ms cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

@keyframes trRingIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .tr-success-ring { animation: none; }
}

.tr-success h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--paper);
  margin-bottom: 14px;
}

.tr-success > p {
  color: rgba(247, 245, 240, 0.55);
  max-width: 380px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ── Custom date picker ─────────────────────────────────── */

.tr-cal-outer {
  position: relative;
}

.tr-cal-fieldlabel {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.tr-cal-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 245, 240, 0.38);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.tr-cal-trigger:hover {
  border-color: rgba(185, 147, 83, 0.45);
  color: rgba(247, 245, 240, 0.65);
}

.tr-cal-trigger.has-value {
  color: var(--paper);
}

.tr-cal-trigger.is-open {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 147, 83, 0.15);
}

.tr-cal-icon {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.tr-cal-trigger:hover .tr-cal-icon,
.tr-cal-trigger.is-open .tr-cal-icon {
  opacity: 1;
}

.tr-cal-trigger-text {
  flex: 1;
}

.tr-cal-chevron {
  flex-shrink: 0;
  color: rgba(247, 245, 240, 0.28);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms ease;
}

.tr-cal-trigger:hover .tr-cal-chevron {
  color: rgba(247, 245, 240, 0.5);
}

.tr-cal-trigger.is-open .tr-cal-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.tr-cal-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 300px;
  max-width: 100%;
  z-index: 200;
  background: #181815;
  border: 1px solid rgba(185, 147, 83, 0.28);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.3);
  animation: trCalIn 190ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tr-cal-popup[hidden] {
  display: none;
}

@keyframes trCalIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tr-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tr-cal-title {
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.tr-cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 245, 240, 0.55);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 130ms ease;
}

.tr-cal-nav:hover {
  border-color: rgba(185, 147, 83, 0.45);
  background: rgba(185, 147, 83, 0.1);
  color: var(--gold-light);
  transform: scale(1.05);
}

.tr-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.tr-cal-weekdays span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(247, 245, 240, 0.28);
  padding: 1px 0 4px;
}

.tr-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  row-gap: 1px;
}

.tr-cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: rgba(247, 245, 240, 0.72);
  font-size: 0.76rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 130ms ease;
  padding: 0;
  line-height: 1;
}

.tr-cal-day:hover:not(:disabled) {
  background: rgba(185, 147, 83, 0.16);
  border-color: rgba(185, 147, 83, 0.35);
  color: var(--paper);
  transform: scale(1.1);
}

.tr-cal-day.is-today {
  border-color: rgba(185, 147, 83, 0.55);
  color: var(--gold-light);
}

.tr-cal-day.is-selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 0 14px rgba(185, 147, 83, 0.42);
}

.tr-cal-day.is-selected:hover:not(:disabled) {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: scale(1.05);
}

.tr-cal-day:disabled {
  color: rgba(247, 245, 240, 0.16);
  cursor: not-allowed;
  transform: none !important;
}

.tr-cal-empty {
  aspect-ratio: 1;
}

@media (prefers-reduced-motion: reduce) {
  .tr-cal-popup { animation: none; }
  .tr-cal-day,
  .tr-cal-nav,
  .tr-cal-trigger,
  .tr-cal-chevron { transition: none; }
}

/* ── Mobile ─────────────────────────────────────────────── */

@media (max-width: 700px) {
  .tr-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tr-time-grid {
    grid-template-columns: 1fr;
  }

  .tr-field-grid {
    grid-template-columns: 1fr;
  }

  .tr-field-full {
    grid-column: 1;
  }

  .tr-progress-label {
    font-size: 0.58rem;
    letter-spacing: 0.02em;
  }

  .tr-nav {
    flex-wrap: wrap;
  }

  .tr-btn-next {
    flex: 1;
  }
}

/* ═══════════════════════════════════════════════════════
   STANDORT-ABSCHNITTE (Foto-Integration)
═══════════════════════════════════════════════════════ */

/* ── Location Section (index.html — Foto 2, Panorama) ─ */

.location-section {
  display: grid;
  grid-template-columns: 1.72fr 1fr;
  min-height: clamp(380px, 46vw, 560px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--ink);
  overflow: hidden;
}

.location-image-wrap {
  overflow: hidden;
}

.location-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 6s ease-out;
}

.location-section:hover .location-image {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .location-section:hover .location-image {
    transform: none;
  }
}

.location-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 88px) clamp(32px, 5vw, 64px);
  color: var(--paper);
}

.location-gold-bar {
  width: 32px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
}

.location-eyebrow {
  color: var(--gold-light) !important;
  opacity: 0.88;
}

.location-text h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.04;
  color: #fff;
}

.location-address {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.75;
}

.location-hours {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.location-hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
}

.location-hours div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.location-hours dt {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.location-hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 180ms ease, gap 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-map-link:hover {
  color: #fff;
  gap: 12px;
}

/* ── Location Strip (kontakt.html — Foto 1, Nahaufnahme) */

.location-strip {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  max-width: 1120px;
  margin: 0 auto clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 16, 14, 0.08);
}

.location-strip-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.location-strip-text h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  line-height: 1.04;
}

.location-strip-address {
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.75;
}

.location-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color 180ms ease, gap 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.location-strip-link:hover {
  color: var(--ink);
  gap: 11px;
}

.location-strip-image-wrap {
  overflow: hidden;
  height: clamp(280px, 34vw, 400px);
}

.location-strip-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  transition: transform 5s ease-out;
}

.location-strip:hover .location-strip-image {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .location-strip:hover .location-strip-image {
    transform: none;
  }
}

/* ── Responsive ──────────────────────────────────────── */

@media (max-width: 940px) {
  .location-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .location-image-wrap {
    height: clamp(260px, 48vw, 380px);
  }

  .location-strip {
    grid-template-columns: 1fr;
  }

  .location-strip-image-wrap {
    height: clamp(220px, 44vw, 320px);
    order: -1;
  }
}

@media (max-width: 640px) {
  .location-text {
    padding: clamp(32px, 6vw, 48px) clamp(20px, 5vw, 32px);
  }

  .location-strip-text {
    padding: clamp(24px, 5vw, 36px);
  }
}

/* ═══════════════════════════════════════════════════════
   DETAIL PAGE – CONTACT CTA SECTION
═══════════════════════════════════════════════════════ */

.detail-cta-section {
  padding: clamp(88px, 10vw, 130px) clamp(20px, 5vw, 76px);
  background: var(--ink);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(185, 147, 83, 0.022) 0px,
    rgba(185, 147, 83, 0.022) 1px,
    transparent 1px,
    transparent 52px
  );
  color: var(--paper);
}

.detail-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.detail-cta-headline {
  margin: 0 0 22px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.96;
}

.detail-cta-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.detail-cta-sub {
  max-width: 460px;
  margin: 0 0 36px;
  color: rgba(247, 245, 240, 0.56);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
}

.detail-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(185, 147, 83, 0.48);
  border-radius: 6px;
  background: linear-gradient(155deg, #caa85e 0%, #a87e38 100%);
  box-shadow: 0 1px 3px rgba(16, 16, 14, 0.12), 0 4px 14px rgba(168, 126, 56, 0.22);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), background 200ms ease, box-shadow 200ms ease;
}

.detail-cta-btn-primary:hover {
  background: linear-gradient(155deg, #d4b368 0%, #b98940 100%);
  box-shadow: 0 4px 20px rgba(168, 126, 56, 0.36), 0 1px 4px rgba(16, 16, 14, 0.14);
  transform: translateY(-2px);
}

.detail-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid rgba(185, 147, 83, 0.32);
  border-radius: 6px;
  background: transparent;
  color: rgba(247, 245, 240, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.detail-cta-btn-ghost:hover {
  border-color: rgba(185, 147, 83, 0.62);
  color: var(--gold-light);
  background: rgba(185, 147, 83, 0.08);
  transform: translateY(-2px);
}

.detail-cta-divider {
  width: 1px;
  height: 280px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(185, 147, 83, 0.24) 18%,
    rgba(185, 147, 83, 0.44) 50%,
    rgba(185, 147, 83, 0.24) 82%,
    transparent 100%
  );
}

.detail-cta-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-cta-info-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-cta-label {
  display: block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(185, 147, 83, 0.16);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-cta-info-block address {
  color: rgba(247, 245, 240, 0.64);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
}

.detail-cta-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

.detail-cta-hours div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.detail-cta-hours dt {
  color: rgba(247, 245, 240, 0.64);
  font-size: 0.88rem;
  font-weight: 700;
}

.detail-cta-hours dd {
  margin: 0;
  color: rgba(247, 245, 240, 0.44);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: right;
}

.detail-cta-info-block a {
  color: rgba(247, 245, 240, 0.64);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.detail-cta-info-block a:hover {
  color: var(--gold-light);
}

@media (max-width: 940px) {
  .detail-cta-inner {
    grid-template-columns: 1fr;
    gap: clamp(40px, 7vw, 60px);
  }

  .detail-cta-divider {
    width: 56px;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(185, 147, 83, 0.44) 50%,
      transparent 100%
    );
  }

  .detail-cta-headline {
    font-size: clamp(2.4rem, 6vw, 3.8rem);
  }
}

@media (max-width: 640px) {
  .detail-cta-section {
    padding: clamp(64px, 10vw, 88px) clamp(20px, 5vw, 32px);
  }

  .detail-cta-actions {
    flex-direction: column;
  }

  .detail-cta-btn-primary,
  .detail-cta-btn-ghost {
    justify-content: center;
    width: 100%;
  }
}
