:root {
  --bg: #080909;
  --black: #080909;
  --surface: #111515;
  --surface-2: #191f1f;
  --text: #f7f3ec;
  --muted: #b9c0bb;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #ffe642;
  --accent-soft: rgba(255, 230, 66, 0.13);
  --teal: #2fc4b2;
  --red: #e65b4f;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 230, 66, 0.08), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(47, 196, 178, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(255, 255, 255, 0.03));
  opacity: 0.76;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.app-shell {
  position: relative;
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 78px;
  padding: 8px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 9, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: clamp(250px, 24vw, 340px);
  max-height: 46px;
  height: auto;
  object-fit: contain;
}

.mini-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-nav a {
  position: relative;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  animation: nav-pulse 4.4s ease-in-out infinite;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.mini-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.mini-nav a:hover,
.mini-nav a:focus-visible {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-2px);
}

.mini-nav a:hover::after,
.mini-nav a:focus-visible::after {
  transform: scaleX(1);
}

.mini-nav a:nth-child(2) {
  animation-delay: 0.18s;
}

.mini-nav a:nth-child(3) {
  animation-delay: 0.36s;
}

.mini-nav a:nth-child(4) {
  animation-delay: 0.54s;
}

.site-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 230, 66, 0.5);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 180ms ease;
}

.site-link:hover,
.site-link:focus-visible {
  color: #17130a;
  transform: translateY(-2px);
}

.site-link:hover::before,
.site-link:focus-visible::before {
  transform: translateY(0);
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(4, minmax(36px, 1fr));
  border: 1px solid var(--line);
}

.language-button {
  min-width: 38px;
  min-height: 36px;
  border: 0;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.language-button:last-child {
  border-right: 0;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  background: var(--accent);
  color: #17130a;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(14px, 2.6vw, 28px) clamp(18px, 4vw, 56px) clamp(14px, 2vw, 24px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.intro-copy {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(15px, 1.18vw, 17px);
}

.intro-heading {
  display: grid;
  gap: 18px;
  align-content: start;
}

.headline-copy {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

.intro-copy p {
  margin-bottom: 14px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.configurator {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px) clamp(42px, 6vw, 90px);
}

.visual-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.visual-stage {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
  box-shadow: var(--shadow);
}

.visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.78));
  pointer-events: none;
}

.visual-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: contain;
  padding: clamp(14px, 2vw, 26px);
  background: #050505;
  transition: opacity 220ms ease, transform 420ms ease;
}

.visual-stage img.is-logo-preview {
  object-fit: contain;
  padding: clamp(44px, 8vw, 86px);
  background: #000;
}

.visual-overlay {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.visual-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.visual-overlay h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 300;
  line-height: 1;
}

.compact-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
}

.compact-total span,
.summary-total span,
.mobile-total-bar span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.compact-total strong,
.summary-total strong,
.mobile-total-bar strong {
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.05;
}

.compact-link {
  border: 1px solid rgba(255, 230, 66, 0.5);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--accent);
  font-size: 13px;
  white-space: nowrap;
}

.selected-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 40px;
}

.selected-pill {
  max-width: 100%;
  border: 1px solid rgba(255, 230, 66, 0.42);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 230, 66, 0.08);
  color: var(--text);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.options-flow {
  display: grid;
  gap: 54px;
}

.config-section {
  scroll-margin-top: 104px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.section-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 700;
}

.section-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 1;
}

.section-heading p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.choice-mode {
  display: inline-flex;
  border: 1px solid rgba(255, 230, 66, 0.52);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 230, 66, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.video-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid rgba(255, 230, 66, 0.78);
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--accent);
  color: #17130a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  animation: video-pulse 1.55s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.video-button:hover,
.video-button:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 5px rgba(255, 230, 66, 0.12), 0 14px 30px rgba(255, 230, 66, 0.18);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.option-card {
  position: relative;
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.option-card:hover,
.option-card:focus-visible {
  border-color: rgba(255, 230, 66, 0.72);
  transform: translateY(-2px);
}

.option-card.is-selected {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 230, 66, 0.11), var(--surface) 44%);
}

.option-card.is-selected::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--accent);
  border-radius: 8px;
  pointer-events: none;
}

.option-image {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #d0d0d0;
}

.option-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: filter 220ms ease;
}

.option-card:hover .option-image img,
.option-card:focus-visible .option-image img {
  filter: brightness(1.06) contrast(1.03);
}

.option-check {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: transparent;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.option-card.is-selected .option-check {
  border-color: var(--accent);
  background: var(--accent);
  color: #17130a;
}

.option-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.option-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  max-width: 70%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.price {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.option-card h3 {
  margin-bottom: 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.1;
}

.option-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.details-label {
  display: block;
  color: var(--accent);
  font-size: 13px;
}

.details ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.summary-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 86px) clamp(18px, 4vw, 56px) clamp(92px, 10vw, 132px);
  border-top: 1px solid var(--line);
}

.included-block,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 21, 21, 0.82);
}

.included-block {
  padding: clamp(22px, 3vw, 34px);
}

.included-block h2,
.summary-card h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
}

.included-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.included-block li {
  position: relative;
  padding-left: 26px;
}

.included-block li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.summary-card {
  position: static;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.summary-lines {
  display: grid;
  gap: 10px;
  min-height: 54px;
}

.summary-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 0 0 10px;
}

.summary-line:last-child {
  border-bottom: 0;
}

.summary-line small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.summary-line strong {
  font-weight: 500;
}

.empty-summary {
  color: var(--muted);
}

.summary-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.summary-note {
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.action-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 14px 16px;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  animation: action-float 3.4s ease-in-out infinite, action-glow 2.8s ease-in-out infinite;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.action-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.12) 65%, transparent 100%);
  animation: action-sheen 4.2s ease-in-out infinite;
  transform: translateX(-140%);
}

.action-button:hover,
.action-button:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 230, 66, 0.3), 0 12px 34px rgba(255, 230, 66, 0.16);
  transform: translateY(-3px) scale(1.01);
}

.action-button:hover::before,
.action-button:focus-visible::before {
  animation: sheen 920ms ease;
}

.action-button:nth-child(2) {
  animation-delay: 0.15s;
}

.action-button:nth-child(3) {
  animation-delay: 0.3s;
}

.action-button:nth-child(4) {
  animation-delay: 0.45s;
}

.action-yellow {
  background: var(--accent);
  color: #17130a;
}

.action-black {
  border-color: rgba(255, 255, 255, 0.22);
  background: #030303;
  color: var(--text);
}

.action-black:hover,
.action-black:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes sheen {
  to {
    transform: translateX(140%);
  }
}

@keyframes action-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes action-glow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 230, 66, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 230, 66, 0.16);
  }
}

@keyframes action-sheen {
  0%,
  42% {
    transform: translateX(-140%);
  }
  62% {
    transform: translateX(140%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes nav-pulse {
  0%,
  100% {
    color: var(--muted);
  }
  50% {
    color: var(--text);
  }
}

@keyframes video-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 230, 66, 0.38);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 230, 66, 0);
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.is-open {
  display: flex;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.booking-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: #0b0d0d;
  box-shadow: var(--shadow);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #030303;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}

.booking-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
}

.booking-lead,
.booking-note,
.booking-mail-note {
  max-width: 760px;
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px 16px;
  margin-top: 24px;
}

.booking-form label {
  display: grid;
  gap: 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
  text-transform: uppercase;
}

.booking-form label > span {
  display: flex;
  align-items: flex-end;
  min-height: 32px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 52px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  outline: none;
}

.booking-form select {
  appearance: auto;
}

.booking-form textarea {
  min-height: 124px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 230, 66, 0.12);
}

.booking-form option {
  background: #101313;
  color: var(--text);
}

.booking-form-wide,
.booking-error,
.booking-submit,
.booking-note,
.booking-mail-note {
  grid-column: 1 / -1;
}

.booking-error {
  min-height: 20px;
  margin: 0;
  color: #ff847b;
  font-size: 13px;
}

.booking-submit {
  justify-self: start;
  min-width: min(260px, 100%);
  min-height: 54px;
}

.booking-note {
  margin: 0;
  color: var(--text);
}

.booking-mail-note {
  margin: -6px 0 0;
  font-size: 13px;
}

.mobile-total-bar {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 230, 66, 0.44);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(8, 9, 9, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-total-bar strong {
  font-size: 24px;
}

.mobile-total-bar a {
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--accent);
  color: #17130a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

#proposalPdf {
  position: fixed;
  top: 0;
  left: -10000px;
  z-index: -1;
  width: 816px;
  min-height: 1056px;
  background: #fff;
  color: #111;
  font-family: var(--font);
}

.pdf-page {
  position: relative;
  min-height: 1056px;
  padding: 20px 46px 132px;
  overflow: hidden;
  background: #fff;
}

.pdf-header {
  position: absolute;
  top: 18px;
  right: 46px;
  left: 46px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
}

.pdf-mark {
  width: 76px;
  height: auto;
  margin-top: 14px;
}

.pdf-wordmark {
  width: 278px;
  height: auto;
  transform: translateX(29px);
}

.pdf-event-fields {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin: 0 0 58px;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pdf-event-fields div {
  min-width: 0;
}

.pdf-event-fields span {
  display: block;
  margin: 0;
  white-space: nowrap;
}

.pdf-event-fields i {
  display: block;
  height: 40px;
  border-bottom: 1px solid #111;
}

.pdf-title {
  margin: 116px 0 28px;
  color: #111;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.pdf-section-title {
  margin: 0 0 8px;
  color: #111;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pdf-meta {
  margin: 0 0 18px;
  color: #555;
  font-size: 13px;
}

.pdf-list {
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pdf-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 9px;
  color: #111;
  font-size: 15px;
}

.pdf-list small {
  color: #555;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pdf-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  border-top: 2px solid #e6c700;
  padding-top: 18px;
  font-size: 26px;
  font-weight: 700;
}

.pdf-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 92px;
  padding: 0 46px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 24px;
  color: #111;
  font-size: 13px;
}

.pdf-footer img {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 88px;
  object-fit: cover;
  opacity: 0.9;
}

.pdf-footer span {
  position: relative;
  z-index: 1;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .mini-nav {
    display: none;
  }

  .site-link {
    display: none;
  }

  .configurator,
  .intro,
  .summary-section {
    grid-template-columns: 1fr;
  }

  .visual-panel,
  .summary-card {
    position: static;
  }

  .visual-stage,
  .visual-stage img {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .topbar {
    gap: 12px;
    min-height: 68px;
    padding: 9px 14px;
  }

  .brand img {
    width: 180px;
    max-height: 40px;
  }

  .language-button {
    min-width: 32px;
    min-height: 32px;
    font-size: 11px;
  }

  .intro {
    padding-top: 18px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .configurator {
    padding-bottom: 32px;
  }

  .visual-stage,
  .visual-stage img {
    min-height: 340px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .option-card {
    grid-template-rows: 220px 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-number {
    width: 34px;
    height: 34px;
  }

  .summary-total {
    display: grid;
    align-items: start;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form label > span {
    min-height: auto;
  }

  .mobile-total-bar {
    display: flex;
  }
}

@media (max-width: 420px) {
  .compact-total {
    display: grid;
  }

  .compact-link {
    text-align: center;
  }

  .visual-overlay {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .option-body {
    padding: 16px;
  }
}

@media print {
  @page {
    size: letter;
    margin: 0;
  }

  html,
  body {
    background: #fff;
  }

  body::before {
    display: none;
  }

  .app-shell {
    display: none;
  }

  #proposalPdf {
    position: static;
    width: 816px;
    min-height: 1056px;
  }
}
