:root {
  --bg: #f3f3f1;
  --white: #ffffff;
  --text: #161616;
  --muted: #6b6b6b;
  --black: #171717;
  --gray: #ececec;
  --line: #d8d8d8;

  --accent: #7A1E2C;
  --accent-dark: #5E1420;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --container: 1280px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 8px;
}

.title,
.hero__content h1,
.audience-card h3,
.why-card h3,
.production-slide__content h2,
.pack-card__title,
.quality-item h3,
.faq-question h3,
.cta-copy h2,
.footer h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.title {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pill-btn--accent {
  background: var(--accent);
  color: var(--white);
}

.pill-btn--accent:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.pill-btn--black {
  background: var(--black);
  color: var(--white);
}

.pill-btn--black:hover {
  transform: translateY(-2px);
  background: #0f0f0f;
}

.pill-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
}

.pill-btn--ghost:hover {
  border-color: var(--accent);
  background: rgba(122, 30, 44, 0.18);
  color: var(--white);
}

.round-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex: 0 0 46px;
}

.round-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.round-btn--dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.round-btn--dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(243, 243, 241, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 122px;
  max-width: 100%;
  object-fit: contain;
}

.logo--footer {
  width: max-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.logo--footer img {
  width: auto;
  height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  color: #2d2d2d;
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--accent);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.phone {
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

.hero {
  padding-top: 24px;
}

.hero__slider {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero__overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 56px;
  background: linear-gradient(92deg, rgba(15, 15, 15, 0.96) 0%, rgba(15, 15, 15, 0.92) 36%, rgba(15, 15, 15, 0.36) 100%);
  color: var(--white);
}

.hero__slide--photo .hero__overlay {
  background: transparent;
}

.hero__slide--photo .hero__content {
  max-width: 620px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero__slide--photo .hero__content h1,
.hero__slide--photo .hero__content p,
.hero__slide--photo .hero__content .eyebrow {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero__content {
  max-width: 820px;
}

.hero__content h1 {
  font-size: clamp(30px, 6vw, 68px);
  line-height: 0.92;
  margin-bottom: 22px;
}

.hero__content p {
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

.hero__bottom {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__controls {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero__controls .round-btn {
  pointer-events: auto;
}

.hero__pagination {
  position: absolute;
  left: 56px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: var(--transition);
  cursor: pointer;
}

.hero__dot.is-active {
  width: 28px;
  background: var(--accent);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 196px;
  padding: 28px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.audience-card:hover {
  transform: translateY(-4px);
}

.audience-card--gray {
  background: #e5e5e1;
  color: var(--text);
}

.audience-card--image {
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.audience-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
  z-index: -1;
}

.audience-card__body {
  margin-top: auto;
}

.audience-card h3 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
  max-width: 250px;
}

.audience-card p {
  font-size: 14px;
  opacity: 0.82;
  max-width: 280px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  background: #dfdfda;
  border-radius: var(--radius-xl);
  padding: 30px;
  position: relative;
  min-height: 212px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-card__num {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(122, 30, 44, 0.24);
}

.why-card h3 {
  font-size: 32px;
  line-height: 1;
  max-width: calc(100% - 92px);
  margin-bottom: 14px;
}

.why-card p {
  max-width: 470px;
  color: #575757;
  font-size: 15px;
}

.production-slider {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}

.production-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  background-size: cover;
  background-position: center;
}

.production-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.production-slide--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0d1017;
}

.production-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 620px;
  height: 100%;
  padding: 56px;
  color: var(--white);
  background: linear-gradient(92deg, rgba(15, 15, 15, 0.94) 0%, rgba(15, 15, 15, 0.88) 34%, rgba(15, 15, 15, 0.34) 100%);
}

.production-overlay .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.production-slide__content {
  max-width: 620px;
}

.production-slide__content h2 {
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 0.98;
  margin-bottom: 16px;
}

.production-slide__content p {
  max-width: 540px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.01em;
}

.production-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.production-controls {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}

.production-controls .round-btn {
  pointer-events: auto;
}

.production-pagination {
  position: absolute;
  right: 56px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.production-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: var(--transition);
  cursor: pointer;
}

.production-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.pack-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 1.08fr;
  grid-template-rows: 285px 285px;
  gap: 18px;
}

.pack-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.pack-card:hover {
  transform: translateY(-4px);
}

.pack-card::before {
  display: none;
}

.pack-card__label {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.pack-card__title {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.48));
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 0.96;
  max-width: 290px;
}

.pack-card--1 { grid-column: 1; grid-row: 1 / span 2; }
.pack-card--2 { grid-column: 2; grid-row: 1; }
.pack-card--3 { grid-column: 3; grid-row: 1; }
.pack-card--4 { grid-column: 2; grid-row: 2; }
.pack-card--5 { grid-column: 3; grid-row: 2; }
.pack-card--6 { grid-column: 4; grid-row: 1 / span 2; }

.quality-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
  align-items: stretch;
}

.quality-copy {
  background: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.quality-item {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.quality-item:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.quality-item h3 {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 10px;
}

.quality-item p {
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
  letter-spacing: 0.01em;
}

.quality-slider {
  position: relative;
  min-height: 700px;
  border-radius: 30px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.quality-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #0a0a0a;
}

.quality-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.quality-slide--document {
  background: #0a0a0a;
}

.quality-slide__paper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  border: 0;
  overflow: hidden;
}

.quality-slide__paper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0a0a0a;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 {
  font-size: 28px;
  line-height: 1.05;
}

.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--white);
  flex: 0 0 42px;
  transition: transform var(--transition);
  font-size: 22px;
  font-weight: 700;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding: 0 26px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.01em;
}

.faq-item.is-open .faq-answer {
  max-height: 220px;
  padding: 0 26px 24px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.cta-card {
  background: linear-gradient(135deg, #7A1E2C 0%, #611725 100%);
  border-radius: 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  box-shadow: var(--shadow);
}

.cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta-copy .eyebrow::before {
  background: var(--white);
}

.cta-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 0.95;
  margin-bottom: 18px;
  color: var(--white);
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  max-width: 540px;
  letter-spacing: 0.01em;
}

.cta-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.field {
  width: 100%;
  min-height: 56px;
  border: 0;
  outline: none;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px 18px;
  color: var(--text);
}

.field::placeholder {
  color: #666;
}

.field:focus {
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.field--full {
  grid-column: 1 / -1;
}

textarea.field {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer {
  margin-top: 72px;
  padding: 0 0 28px;
}

.footer__shell {
  background: var(--black);
  color: var(--white);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 24px;
  margin-bottom: 26px;
}

.footer h3 {
  font-size: 28px;
  line-height: 1.02;
  margin-bottom: 14px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: #d8a5ae;
}

.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.social {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.social:hover {
  background: var(--accent);
  color: var(--white);
}

.map-card {
  position: relative;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 25%, rgba(122, 30, 44, 0.35), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #2a2a2a 0%, #171717 100%);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.65;
}

.map-card__pin {
  position: absolute;
  top: 28%;
  left: 58%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(122, 30, 44, 0.16);
  z-index: 2;
}

.map-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card__content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: #fff;
}

.map-card__content p {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .phone,
  .header__right .pill-btn {
    display: none;
  }

  .audience-grid,
  .why-grid,
  .footer__grid,
  .quality-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .pack-card--1,
  .pack-card--2,
  .pack-card--3,
  .pack-card--4,
  .pack-card--5,
  .pack-card--6 {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .quality-slider {
    min-height: 620px;
  }

  .cta-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: 56px;
  }

  .header__inner {
    min-height: 92px;
  }

  .logo img {
    height: 60px;
  }

  .logo--footer img {
    height: 51px;
  }

  .hero__slider {
    min-height: 560px;
  }

  .hero__overlay {
    padding: 24px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.92) 100%);
  }

  .hero__slide--photo .hero__overlay {
    background: transparent;
  }

  .hero__slide--photo .hero__content {
    padding: 20px;
  }

  .hero__controls {
    left: 16px;
    right: 16px;
  }

  .hero__pagination {
    left: 24px;
    bottom: 18px;
  }

  .production-slider {
    min-height: 520px;
  }

  .production-slide--contain {
    background-size: cover;
  }

  .production-overlay {
    min-height: 520px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.92) 100%);
  }

  .production-slide__content h2 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .production-slide__content p {
    font-size: 15px;
    max-width: 100%;
  }

  .production-controls {
    left: 16px;
    right: 16px;
  }

  .production-pagination {
    right: 24px;
    bottom: 18px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .audience-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card h3 {
    max-width: calc(100% - 72px);
    font-size: 26px;
  }

  .quality-copy,
  .footer__shell,
  .cta-card {
    padding: 20px;
  }

  .quality-slider {
    min-height: 500px;
  }

  .quality-slide {
    padding: 6px;
  }

  .faq-question h3 {
    font-size: 24px;
  }

  .map-card {
    min-height: 200px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---------- Согласие на рассылку + honeypot ---------- */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #ffffff;
  cursor: pointer;
}

.form-consent input {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* скрытое поле-ловушка для ботов — не видно людям */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}