:root {
  --paper: #fff9f0;
  --ink: #161311;
  --muted: #756a61;
  --red: #e0003d;
  --red-dark: #ad002e;
  --gold: #b48522;
  --green: #14643b;
  --cream: #f4eadc;
  --line: rgba(22, 19, 17, 0.14);
  --shadow: 0 26px 70px rgba(22, 19, 17, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 249, 240, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.logo {
  align-items: center;
  display: flex;
  min-width: 165px;
}

.logo img {
  height: 54px;
  object-fit: contain;
  object-position: left center;
  width: 165px;
}

.nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: clamp(14px, 2.4vw, 34px);
  justify-content: center;
}

.nav a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.nav a[aria-current="page"] {
  color: var(--red);
}

.header-cta,
.button,
.menu-button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.button:hover,
.menu-button:hover {
  box-shadow: 0 12px 28px rgba(224, 0, 61, 0.18);
  transform: translateY(-2px);
}

.header-cta,
.button-primary {
  background: var(--red);
  color: white;
}

.button-outline {
  background: white;
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.menu-button {
  background: white;
  color: var(--ink);
  display: none;
}

main {
  padding-top: 86px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(22, 19, 17, 0.78) 0%, rgba(22, 19, 17, 0.44) 42%, rgba(22, 19, 17, 0.08) 100%),
    url("assets/optimized/hero.jpg") center / cover;
  content: "";
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-copy {
  align-self: center;
  color: white;
  max-width: 1320px;
  min-width: 0;
  padding: clamp(44px, 9vw, 110px) clamp(22px, 6vw, 84px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-showcase {
  bottom: clamp(28px, 5vw, 62px);
  display: grid;
  gap: 12px;
  grid-template-columns: 0.85fr 1fr;
  max-width: 520px;
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  width: min(38vw, 520px);
  z-index: 1;
}

.hero-showcase img {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-showcase img:first-child {
  aspect-ratio: 0.9 / 1;
  grid-row: span 2;
}

.hero-showcase img:nth-child(2),
.hero-showcase img:nth-child(3) {
  aspect-ratio: 1.45 / 1;
}

.hero-quote {
  display: none;
}

.eyebrow {
  color: var(--red);
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero-copy .eyebrow {
  color: var(--red);
}

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

h1 {
  color: inherit;
  font-size: clamp(58px, 10vw, 140px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  margin-bottom: 26px;
  max-width: 900px;
  text-transform: uppercase;
}

h1 span,
.compact-title span {
  display: block;
}

.home-title {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.92;
  max-width: 1280px;
  white-space: nowrap;
}

h1 em,
h2 em {
  color: inherit;
  display: inline;
  font-style: normal;
}

.compact-title {
  font-size: clamp(32px, 3.7vw, 52px);
  max-width: 860px;
}

.compact-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(38px, 5.6vw, 80px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h3 {
  font-size: 25px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-copy p:not(.eyebrow),
.lead {
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
}

.lead {
  color: var(--muted);
  line-height: 1.58;
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section-cta {
  margin-top: 26px;
}

.hero-claim {
  border-left: 3px solid var(--red);
  margin-top: clamp(42px, 7vw, 86px);
  max-width: 600px;
  padding-left: 18px;
}

.hero-claim span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-claim p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
  margin: 0;
  max-width: none;
}

.subhero {
  display: grid;
  min-height: min(680px, calc(100vh - 86px));
  overflow: hidden;
  position: relative;
}

.subhero::before {
  background:
    linear-gradient(90deg, rgba(22, 19, 17, 0.76) 0%, rgba(22, 19, 17, 0.46) 46%, rgba(22, 19, 17, 0.08) 100%),
    var(--subhero-image) center / cover;
  content: "";
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.offer-hero {
  --subhero-image: url("assets/optimized/angebot-hero.jpg");
}

.planning-hero {
  --subhero-image: url("assets/optimized/event-wide.jpg");
}

.services-hero {
  --subhero-image: url("assets/optimized/hero.jpg");
}

.partner-hero {
  --subhero-image: url("assets/optimized/event-wide.jpg");
}

.contact-hero {
  --subhero-image: url("assets/optimized/private-event.jpg");
}

.subhero-copy {
  align-self: center;
  color: white;
  max-width: 960px;
  padding: clamp(54px, 9vw, 110px) clamp(22px, 6vw, 84px);
  position: relative;
  z-index: 1;
}

.subhero-title {
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 0.92;
  max-width: 900px;
}

.subhero-title span {
  display: block;
  white-space: nowrap;
}

.subhero-copy p:not(.eyebrow) {
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.46;
  max-width: 720px;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(22px, 6vw, 84px);
}

.section-tight {
  padding-top: clamp(52px, 7vw, 90px);
}

.container {
  margin: 0 auto;
  max-width: 1240px;
}

.split {
  display: grid;
  gap: clamp(28px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
}

.stats {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.72), rgba(244, 234, 220, 0.92));
  padding: 26px clamp(18px, 4vw, 56px);
  perspective: 1200px;
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.stat {
  aspect-ratio: auto;
  background: linear-gradient(145deg, #ffffff 0%, #fff6e9 58%, #eddcc7 100%);
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-radius: 8px;
  box-shadow:
    0 18px 34px rgba(22, 19, 17, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -14px 24px rgba(180, 132, 34, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 185px;
  height: 100%;
  padding: 24px clamp(18px, 2.2vw, 30px);
  transform: rotateX(2deg) translateY(0);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.stat:hover {
  box-shadow:
    0 24px 46px rgba(22, 19, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -14px 24px rgba(180, 132, 34, 0.08);
  transform: rotateX(0deg) translateY(-4px);
}

.stat + .stat {
  border-left: 1px solid rgba(22, 19, 17, 0.1);
}

.stat strong {
  display: block;
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 950;
  line-height: 0.92;
}

.stat strong small {
  display: block;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.1;
  margin-top: 5px;
  text-transform: uppercase;
}

.stat span {
  margin-top: 14px;
}

.stat span,
.card p,
.format-card p,
.partner-card p,
details p,
.price-line small,
.included,
.form-shell p {
  color: var(--muted);
  line-height: 1.58;
}

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

.card,
.format-card,
.partner-card,
.price-card,
.included,
.form-shell {
  background: white;
  border: 1px solid rgba(22, 19, 17, 0.09);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(22, 19, 17, 0.06);
  padding: 28px;
}

.card.dark,
.process-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.card.dark p,
.process-dark .card p {
  color: rgba(255, 255, 255, 0.68);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag-list span,
.pill {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  padding: 8px 12px;
}

.offer-section {
  background: var(--cream);
}

.offer-intro {
  display: grid;
  gap: clamp(32px, 8vw, 130px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  margin-bottom: clamp(46px, 7vw, 86px);
}

.offer-intro h2 {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.98;
  max-width: 560px;
}

.offer-intro h2 span {
  display: block;
  white-space: nowrap;
}

.offer-intro h2 span:last-child {
  color: var(--red);
}

.offer-intro-copy {
  align-self: center;
  display: grid;
  gap: 28px;
}

.offer-note {
  border-left: 3px solid var(--red);
  color: var(--red);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 850;
  line-height: 1.48;
  margin: 0;
  max-width: 760px;
  padding-left: 22px;
}

.offer-filter {
  border: 1px solid rgba(22, 19, 17, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr 1.8fr 1.55fr;
  margin-bottom: 24px;
  padding: 12px;
}

.offer-filter button {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(22, 19, 17, 0.72);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 950;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 62px;
  padding: 12px 16px;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.offer-filter button:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.offer-filter button.is-active {
  background: var(--ink);
  color: white;
}

.offer-filter span {
  color: inherit;
  font-size: 0.78em;
  opacity: 0.55;
}

.offer-count {
  color: var(--muted);
  font-weight: 850;
  margin: 0 0 22px;
}

.offer-count span {
  color: var(--red);
}

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

.offer-card {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(22, 19, 17, 0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(22px, 2.2vw, 30px);
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.offer-card:hover {
  border-color: rgba(224, 0, 61, 0.32);
  box-shadow: 0 18px 44px rgba(22, 19, 17, 0.08);
  transform: translateY(-4px);
}

.offer-card.is-hidden {
  display: none;
}

.offer-kicker {
  color: var(--red);
  display: block;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.offer-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 18px;
}

.offer-origin {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.25;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.offer-card h3 {
  font-size: clamp(23px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.06;
  margin: 0 0 16px;
  text-transform: none;
}

.offer-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 22px;
}

.offer-tags span {
  border: 1px solid rgba(224, 0, 61, 0.24);
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  padding: 8px 11px;
}

.offer-dishes {
  border-top: 1px solid rgba(22, 19, 17, 0.14);
  margin-top: auto;
  padding-top: 18px;
}

.offer-dishes summary {
  color: var(--red);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  list-style: none;
  padding: 0 34px 0 0;
  position: relative;
  text-transform: uppercase;
}

.offer-dishes summary::-webkit-details-marker {
  display: none;
}

.offer-dishes summary::after {
  content: "↓";
  font-size: 20px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: -5px;
  transition: transform 180ms ease;
}

.offer-dishes[open] summary::after {
  transform: rotate(180deg);
}

.offer-dishes div {
  border-top: 1px solid rgba(22, 19, 17, 0.14);
  margin-top: 20px;
  padding-top: 20px;
}

.offer-dishes div > p {
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.offer-dishes ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.offer-dishes li {
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  line-height: 1.3;
  padding-left: 22px;
  position: relative;
}

.offer-dishes li::before {
  color: var(--red);
  content: "–";
  left: 0;
  position: absolute;
}

.offer-dishes li span {
  font-size: 14px;
}

.offer-dishes li em {
  color: var(--muted);
  font-size: 13px;
}

.offer-dishes blockquote {
  border-left: 3px solid rgba(224, 0, 61, 0.22);
  color: var(--muted);
  font-style: italic;
  font-size: 13px;
  margin: 18px 0 0;
  padding-left: 14px;
}

.scale-section {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.82), rgba(244, 234, 220, 0.96));
  border-top: 1px solid rgba(22, 19, 17, 0.08);
}

.scale-heading {
  margin: 0 auto clamp(36px, 5vw, 58px);
  max-width: 940px;
  text-align: center;
}

.scale-heading h2 {
  font-size: clamp(40px, 5vw, 72px);
  margin-bottom: 20px;
}

.scale-heading h2 span {
  display: block;
  white-space: nowrap;
}

.scale-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 820px;
}

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

.scale-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 19, 17, 0.12);
  border-top: 3px solid rgba(224, 0, 61, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(22, 19, 17, 0.08);
  overflow: hidden;
}

.scale-card-head {
  padding: clamp(24px, 3vw, 38px);
  text-align: center;
}

.scale-icon {
  border: 1px solid rgba(224, 0, 61, 0.18);
  border-radius: 999px;
  color: rgba(224, 0, 61, 0.74);
  display: inline-flex;
  height: 54px;
  margin-bottom: 18px;
  padding: 12px;
  width: 54px;
}

.scale-icon svg,
.scale-star svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.scale-card h3 {
  color: var(--ink);
  font-size: clamp(31px, 3vw, 48px);
  line-height: 0.95;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.scale-card-head p {
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 950;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.scale-card img {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.scale-meta {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
  padding: 22px clamp(22px, 3vw, 34px) 26px;
  text-align: center;
}

.scale-meta span {
  color: var(--ink);
  font-weight: 950;
}

.scale-cta {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(22, 19, 17, 0.12);
  border-left: 3px solid rgba(224, 0, 61, 0.32);
  border-radius: 8px;
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 28px;
  padding: clamp(22px, 3vw, 34px);
}

.scale-star {
  color: rgba(224, 0, 61, 0.72);
  height: 52px;
  width: 52px;
}

.scale-cta strong {
  color: var(--ink);
  display: block;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.scale-cta p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.scale-benefits {
  border-top: 1px solid rgba(22, 19, 17, 0.12);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.scale-benefits span {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 950;
  gap: 12px;
  letter-spacing: 0.12em;
  padding: 24px 18px 0;
  text-align: center;
  text-transform: uppercase;
}

.scale-benefits svg {
  color: rgba(224, 0, 61, 0.72);
  fill: none;
  height: 30px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 30px;
}

.concept-section {
  background: var(--cream);
}

.services-intro-section {
  background: var(--cream);
}

.services-intro-section h2 {
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.02;
}

.services-intro-section h2 span {
  display: block;
}

.services-intro-section h2 span:last-child {
  color: var(--red);
}

.services-intro-copy {
  display: grid;
  gap: 24px;
}

.services-intro-copy p {
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
  margin: 0;
}

.service-note {
  border-left: 3px solid rgba(224, 0, 61, 0.32);
  color: var(--red) !important;
  font-size: clamp(16px, 1.2vw, 18px) !important;
  padding-left: 18px;
}

.services-list-section {
  background: var(--cream);
}

.services-accordion {
  display: grid;
  gap: 12px;
}

.services-accordion details {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.services-accordion summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 18px;
  grid-template-columns: 42px minmax(0, 0.8fr) minmax(260px, 1fr) 36px;
  list-style: none;
  padding: 22px clamp(18px, 3vw, 34px);
}

.services-accordion summary::-webkit-details-marker {
  display: none;
}

.services-accordion summary::after {
  align-items: center;
  background: var(--red);
  color: white;
  content: "+";
  display: flex;
  font-size: 20px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.services-accordion details[open] summary::after {
  content: "×";
}

.services-accordion summary span {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
}

.services-accordion summary strong {
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.1;
}

.services-accordion summary small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.services-accordion details > div {
  background: rgba(255, 249, 240, 0.58);
  border-top: 1px solid rgba(22, 19, 17, 0.1);
  margin-left: 0;
  padding: 24px clamp(18px, 3vw, 34px) 30px calc(clamp(18px, 3vw, 34px) + 60px);
}

.services-accordion details p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  margin: 0 0 14px;
  max-width: 720px;
}

.services-accordion details p:last-child {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 0;
}

.concept-grid {
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
}

.concept-copy {
  align-self: center;
}

.concept-copy h2 span {
  display: block;
  white-space: nowrap;
}

.concept-copy h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  max-width: 620px;
}

.concept-copy .lead {
  max-width: 620px;
}

.concept-list {
  display: grid;
  gap: 24px;
}

.concept-list article {
  background: rgba(255, 255, 255, 0.66);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(22, 19, 17, 0.06);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.concept-list article:hover {
  border-left-color: var(--red-dark);
  box-shadow: 0 22px 52px rgba(22, 19, 17, 0.11);
  transform: translateY(-4px);
}

.concept-list span {
  color: var(--ink);
  display: block;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 18px;
}

.concept-list p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  margin: 0;
}

.concept-gallery {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.concept-gallery img {
  aspect-ratio: 1.2 / 1;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(22, 19, 17, 0.08);
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 420ms ease;
}

.concept-gallery img:hover,
.audience-photo:hover,
.truck-strip img:hover,
.image-card img:hover {
  transform: scale(1.035);
}

.audience-section {
  background: var(--paper);
}

.audience-heading {
  max-width: 900px;
}

.audience-heading h2 span {
  display: block;
  white-space: nowrap;
}

.audience-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
  overflow: hidden;
}

.audience-grid article {
  background: rgba(255, 255, 255, 0.58);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(26px, 3vw, 36px);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.audience-grid article:hover {
  background: white;
  box-shadow: 0 22px 52px rgba(22, 19, 17, 0.1);
  transform: translateY(-4px);
}

.audience-photo {
  aspect-ratio: 1.55 / 1;
  border-radius: 8px;
  margin: 0 0 24px;
  object-fit: cover;
  width: 100%;
  transition: transform 420ms ease;
}

.audience-grid article + article {
  border-left: 1px solid var(--line);
}

.audience-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 22px;
}

.audience-grid p {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 22px;
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.audience-pills span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  padding: 9px 13px;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.audience-pills span:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.audience-grid strong {
  border-top: 1px solid var(--line);
  color: var(--red);
  display: block;
  font-size: 13px;
  margin-top: auto;
  padding-top: 22px;
}

.process-dark {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.92) 0%, rgba(244, 234, 220, 0.9) 100%),
    url("assets/optimized/event-wide.jpg") center / cover;
  color: var(--ink);
  position: relative;
}

.process-dark::before {
  background: rgba(255, 249, 240, 0.7);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.process-dark > .container {
  position: relative;
  z-index: 1;
}

.process-dark .eyebrow {
  color: var(--red);
  justify-content: center;
  text-align: center;
}

.process-dark .lead,
.process-dark p {
  color: var(--muted);
}

.process-container > h2 {
  margin-inline: auto;
  max-width: 920px;
  text-align: center;
}

.process-container > h2 span {
  color: var(--red);
}

.process-subline {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: -10px auto 44px;
  text-align: center;
  text-transform: uppercase;
}

.process-cta {
  display: flex;
  margin: -18px auto 34px;
  width: max-content;
}

.flow {
  display: grid;
  gap: 20px;
  margin-top: 0;
}

.flow-row {
  background: linear-gradient(145deg, #ffffff 0%, #fff7eb 64%, #f1dfca 100%);
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(22, 19, 17, 0.09);
  display: grid;
  gap: 26px;
  grid-template-columns: 250px 1fr;
  padding: 24px;
  position: relative;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.flow-row:hover {
  box-shadow: 0 28px 60px rgba(22, 19, 17, 0.13);
  transform: translateY(-4px);
}

.flow-row + .flow-row::before {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  color: white;
  content: "↓";
  display: grid;
  font-size: 23px;
  font-weight: 950;
  height: 46px;
  left: 50%;
  place-items: center;
  position: absolute;
  top: -34px;
  transform: translateX(-50%);
  width: 46px;
  z-index: 2;
}

.flow-info {
  align-items: flex-start;
  display: grid;
  gap: 8px;
  grid-template-columns: 70px 1fr;
}

.flow-info p {
  grid-column: 2;
  margin: 0;
}

.process-icon {
  align-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  display: grid;
  font-size: 30px;
  height: 62px;
  place-items: center;
  width: 62px;
}

.process-icon svg,
.coordination-grid svg {
  fill: none;
  height: 1em;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1em;
}

.flow-row strong {
  align-self: center;
  color: var(--red);
  display: block;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 0;
  text-transform: uppercase;
}

.truck-strip {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(5, 1fr);
}

.truck-strip img,
.image-card img {
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.truck-strip img {
  min-height: 142px;
}

.coordination-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.coordination-grid div {
  align-items: center;
  border-left: 1px solid rgba(224, 0, 61, 0.2);
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 132px;
  padding: 14px;
  text-align: center;
}

.coordination-grid div:first-child {
  border-left: 0;
}

.coordination-grid span {
  color: var(--red);
  font-size: 35px;
  line-height: 1;
}

.coordination-grid p {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  margin: 0;
  text-transform: uppercase;
}

.image-card {
  min-height: 190px;
  overflow: hidden;
}

.references-section {
  background: white;
}

.references-heading {
  max-width: 980px;
}

.references-title span {
  display: block;
  white-space: nowrap;
}

.reference-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  overflow: hidden;
}

.reference-grid article {
  background: linear-gradient(145deg, #ffffff, #fff9f0);
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.reference-grid article:hover {
  background: white;
  box-shadow: 0 20px 44px rgba(22, 19, 17, 0.1);
  transform: translateY(-4px);
}

.reference-grid article:nth-child(3n + 2),
.reference-grid article:nth-child(3n + 3) {
  border-left: 1px solid var(--line);
}

.reference-grid article:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.reference-grid img {
  height: 42px;
  margin-bottom: 26px;
  max-width: 150px;
  object-fit: contain;
  object-position: left center;
}

.reference-grid h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.reference-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.final-cta-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 0, 61, 0.08), transparent 38%),
    linear-gradient(180deg, var(--paper), var(--cream));
  text-align: center;
}

.final-cta {
  max-width: 980px;
}

.final-cta .eyebrow {
  margin-left: auto;
  margin-right: auto;
  width: max-content;
}

.final-cta h2 span {
  color: var(--red);
}

.final-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  margin: 0 auto 34px;
  max-width: 920px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 230ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

.format-card {
  border-top: 5px solid var(--green);
}

.format-card.alt {
  border-top-color: var(--gold);
}

.timeline-section {
  background: var(--cream);
}

.timeline-intro {
  margin-bottom: clamp(30px, 5vw, 54px);
  max-width: 860px;
}

.timeline-intro h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  margin-bottom: 16px;
}

.timeline-intro h2 span {
  display: block;
}

.timeline-intro h2 span:last-child {
  color: var(--red);
}

.timeline-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.5;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-left: 0;
  position: relative;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-left: 3px solid rgba(224, 0, 61, 0.34);
  border-radius: 8px;
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
  grid-template-columns: 44px minmax(0, 1fr);
  padding: clamp(18px, 2.6vw, 28px);
  position: relative;
}

.timeline-number {
  align-items: center;
  background: rgba(224, 0, 61, 0.08);
  border: 1px solid rgba(224, 0, 61, 0.22);
  color: var(--ink);
  display: flex;
  font-size: 16px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 1;
}

.timeline-content {
  padding: 0;
}

.timeline-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.timeline-meta span {
  border: 1px solid rgba(224, 0, 61, 0.18);
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.timeline-meta small {
  color: var(--muted);
  font-size: 13px;
}

.timeline-content h3 {
  font-size: clamp(23px, 2.3vw, 32px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: none;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 920px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-tags span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 19, 17, 0.08);
  color: rgba(22, 19, 17, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  padding: 7px 9px;
}

.badge {
  background: var(--paper);
  border-radius: 999px;
  color: var(--green);
  float: right;
  font-size: 11px;
  font-weight: 950;
  padding: 8px 12px;
  text-transform: uppercase;
}

.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}

.price-tabs button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 46px;
  padding: 0 18px;
}

.price-tabs button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.price-panel {
  display: none;
}

.price-panel.is-active {
  display: block;
}

.price-example-head {
  align-items: start;
  border-bottom: 1px solid rgba(22, 19, 17, 0.12);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 28px;
}

.price-example-head h3 {
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
  text-transform: none;
}

.price-example-head h3 span {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.price-example-head p {
  color: var(--ink);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
  margin: 0;
}

.price-example-head > strong {
  border: 1px solid rgba(22, 19, 17, 0.14);
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  padding: 16px 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-cards {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  padding: 0;
  overflow: hidden;
}

.price-card-defined {
  border-top: 4px solid var(--green);
}

.price-card-custom {
  border-top: 4px solid rgba(224, 0, 61, 0.4);
}

.price-card header,
.price-line,
.price-subtotal,
.price-total {
  padding: 24px 28px;
}

.price-card header,
.price-line {
  border-bottom: 1px solid var(--line);
}

.price-line,
.price-subtotal,
.price-total {
  align-items: baseline;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.price-card header {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.price-card h4 {
  color: var(--green);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.price-card-custom h4 {
  color: var(--red);
}

.price-card header span {
  border: 1px solid currentColor;
  color: inherit;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 8px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-line span,
.price-subtotal span {
  font-weight: 850;
}

.price-line small {
  display: block;
  font-weight: 400;
  margin-top: 7px;
}

.price-line strong,
.price-subtotal strong {
  white-space: nowrap;
}

.price-total {
  background: var(--green);
  color: white;
}

.price-card-custom .price-total {
  background: var(--dark);
}

.price-request {
  background: var(--dark);
  padding: 24px 28px;
}

.price-request .button {
  width: 100%;
}

.price {
  display: grid;
  font-size: clamp(25px, 2.35vw, 36px);
  font-weight: 950;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.price small {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 6px;
}

.included-box {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(22, 19, 17, 0.12);
  margin-top: 32px;
  padding: 28px;
  width: 100%;
}

.included-box p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.included-box ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.included-box li {
  padding-left: 24px;
  position: relative;
}

.included-box li::before {
  color: var(--green);
  content: "✓";
  font-weight: 950;
  left: 0;
  position: absolute;
}

.included {
  margin-top: 24px;
}

.included li::marker {
  color: var(--red);
}

.transparency-section {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.96), rgba(244, 234, 220, 0.72));
}

.transparency-grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.transparency-copy {
  position: sticky;
  top: 118px;
}

.transparency-copy h2 {
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.02;
  margin-bottom: 28px;
}

.transparency-copy h2 span {
  display: block;
}

.transparency-copy h2 span:last-child {
  color: var(--red);
}

.transparency-copy p:not(.eyebrow) {
  border-left: 2px solid rgba(224, 0, 61, 0.18);
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.62;
  margin-bottom: 16px;
  padding-left: 18px;
}

.transparency-points {
  display: grid;
  gap: 14px;
}

.transparency-points article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-left: 3px solid rgba(224, 0, 61, 0.3);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(22, 19, 17, 0.05);
  display: grid;
  gap: 18px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: clamp(20px, 2.4vw, 28px);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.transparency-points article:hover {
  box-shadow: 0 22px 48px rgba(22, 19, 17, 0.08);
  transform: translateY(-3px);
}

.transparency-points article > span {
  align-items: center;
  background: rgba(224, 0, 61, 0.08);
  border: 1px solid rgba(224, 0, 61, 0.16);
  border-radius: 999px;
  color: rgba(224, 0, 61, 0.82);
  display: flex;
  font-size: 21px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  width: 44px;
}

.transparency-points h3 {
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.12;
  margin-bottom: 8px;
  text-transform: none;
}

.transparency-points p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(244, 234, 220, 0.7), rgba(255, 249, 240, 0.96));
}

.faq-container {
  max-width: 980px;
}

.faq-heading {
  margin-bottom: 30px;
  text-align: center;
}

.faq-section h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 0;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 19, 17, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 850;
  list-style: none;
  padding: 22px 58px 22px 24px;
  position: relative;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  color: var(--red);
  content: "+";
  font-size: 26px;
  font-weight: 500;
  position: absolute;
  right: 24px;
  top: 18px;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion details p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  margin: 0;
  max-width: 760px;
  padding: 0 24px 22px;
}

.partner-card {
  min-height: 330px;
}

.partner-card img {
  aspect-ratio: 1.45 / 1;
  border-radius: 8px;
  display: block;
  margin: 0 0 24px;
  object-fit: cover;
  width: 100%;
}

.partner-card span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.form-shell {
  max-width: 940px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 34px 0 0;
}

.step {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 78px;
  padding: 20px;
  text-align: left;
  text-transform: none;
}

.step strong {
  color: var(--red);
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.step.is-active {
  border-bottom: 5px solid var(--red);
  color: var(--ink);
}

.step.is-complete {
  border-bottom: 5px solid var(--green);
}

.form-progress {
  background: rgba(22, 19, 17, 0.08);
  height: 3px;
  margin: 28px 0 8px;
}

.form-progress span {
  background: var(--red);
  display: block;
  height: 100%;
  transition: width 220ms ease;
  width: 25%;
}

.form-percent {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  margin: 0 0 42px;
  text-align: right;
}

.form-page {
  display: none;
}

.form-page.is-active {
  display: block;
}

.form-page h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 12px;
  text-transform: none;
}

.form-page h2 em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.form-page > p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 34px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.form-grid small,
legend small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
}

input,
select,
textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 54px;
  padding: 14px 16px;
}

input:invalid.is-touched,
select:invalid.is-touched,
textarea:invalid.is-touched {
  border-color: var(--red);
}

textarea {
  min-height: 138px;
  resize: vertical;
}

.option-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.option-field legend {
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.radio-list,
.check-grid {
  display: grid;
  gap: 8px;
}

.check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.radio-list label,
.check-grid label,
.privacy-check {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  text-transform: none;
}

.radio-list input,
.check-grid input,
.privacy-check input {
  min-height: auto;
  width: auto;
}

.radio-list label:has(input:checked),
.check-grid label:has(input:checked),
.privacy-check:has(input:checked) {
  border-color: rgba(224, 0, 61, 0.42);
  box-shadow: inset 0 0 0 1px rgba(224, 0, 61, 0.18);
}

.form-note {
  background: rgba(224, 0, 61, 0.06);
  border-left: 3px solid var(--red);
  color: var(--ink);
  line-height: 1.55;
  margin-top: 20px;
  padding: 16px 18px;
}

.form-message {
  color: var(--red);
  font-weight: 850;
  margin: 22px 0 0;
}

.form-success {
  background: rgba(11, 84, 48, 0.08);
  border: 1px solid rgba(11, 84, 48, 0.18);
  border-radius: 8px;
  margin-top: 26px;
  padding: 20px;
}

.form-success strong {
  color: var(--green);
}

.wide {
  grid-column: 1 / -1;
}

.form-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 28px;
}

.form-footer span {
  margin-left: auto;
  margin-right: 8px;
}

.site-footer {
  background: #181311;
  color: white;
  padding: 30px clamp(22px, 6vw, 84px);
}

.site-footer .container {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.site-footer img {
  filter: brightness(0) invert(1);
  height: 42px;
  object-fit: contain;
  object-position: left center;
  width: 132px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-flex;
  }

  .hero-showcase {
    display: none;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: grid;
    left: 0;
    padding: 12px 20px 22px;
    position: fixed;
    right: 0;
    top: 86px;
  }

  .nav.is-open a {
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .split,
  .concept-grid,
  .offer-intro,
  .transparency-grid,
  .format-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-cards,
  .price-example-head {
    grid-template-columns: 1fr;
  }

  .services-accordion summary {
    grid-template-columns: 42px minmax(0, 1fr) 36px;
  }

  .services-accordion summary small {
    grid-column: 2 / 3;
  }

  .services-accordion details > div {
    margin-left: 0;
    max-width: none;
    padding-left: clamp(18px, 3vw, 34px);
  }

  .cards,
  .partner-grid,
  .audience-grid,
  .reference-grid,
  .offer-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .scale-grid,
  .scale-benefits {
    grid-template-columns: 1fr;
  }

  .timeline {
    margin-left: 0;
  }

  .scale-cta {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

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

  .audience-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .flow-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main {
    padding-top: 74px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .logo {
    min-width: 132px;
  }

  .logo img {
    height: 44px;
    width: 132px;
  }

  h1 {
    font-size: 46px;
    line-height: 0.92;
  }

  .home-title {
    font-size: 31px;
    line-height: 0.96;
    max-width: none;
  }

  h2 {
    font-size: 40px;
  }

  .hero-copy {
    padding: 52px 18px;
  }

  .hero-showcase {
    display: none;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.45;
    max-width: 320px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    line-height: 1.35;
    max-width: 320px;
    overflow-wrap: normal;
  }

  .hero-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .hero-claim {
    margin-top: 34px;
    max-width: 320px;
  }

  .hero-claim p {
    font-size: 15px;
  }

  .cards,
  .partner-grid,
  .audience-grid,
  .reference-grid,
  .offer-grid,
  .stats-grid,
  .steps,
  .check-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .subhero-copy {
    padding: 52px 18px;
  }

  .subhero-title {
    font-size: 38px;
    line-height: 0.96;
  }

  .subhero-title span {
    white-space: normal;
  }

  .subhero-copy p:not(.eyebrow) {
    font-size: 17px;
    max-width: 320px;
  }

  .offer-filter {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .offer-filter button {
    justify-content: space-between;
  }

  .timeline-step {
    gap: 18px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .timeline-number {
    height: 44px;
    width: 44px;
  }

  .concept-gallery {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .price-line,
  .price-subtotal,
  .price-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .price {
    text-align: left;
  }

  .transparency-copy {
    position: static;
  }

  .transparency-points article {
    grid-template-columns: 1fr;
  }

  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
