:root {
  --red-950: #730d0f;
  --red-900: #8d1012;
  --red-800: #a41417;
  --red-700: #b7191c;
  --yellow-500: #ffbd21;
  --yellow-400: #ffc83d;
  --cream-50: #fffdf8;
  --cream-100: #fff9ef;
  --cream-200: #f8efdf;
  --ink-950: #1d1b18;
  --ink-700: #4f4941;
  --ink-500: #777067;
  --line: #eadfce;
  --shadow: 0 18px 46px rgba(66, 31, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink-950);
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 189, 33, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 88px;
  border-bottom: 1px solid rgba(116, 76, 36, 0.11);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 18px rgba(65, 35, 20, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1248px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 325px 1fr 230px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 82px;
  height: 66px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--red-800);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 21px;
}

.brand-copy strong {
  font-size: 34px;
  letter-spacing: 0.01em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  padding: 32px 0 28px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--red-700);
}

.desktop-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red-700);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button-header {
  justify-self: end;
  min-width: 205px;
  padding: 0 25px;
  background: var(--yellow-500);
  box-shadow: 0 8px 18px rgba(241, 167, 0, 0.23);
  color: #17130a;
  font-size: 16px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(228, 69, 49, 0.35), transparent 35%),
    linear-gradient(120deg, #b71519 0%, #8b1012 54%, #6f0b0c 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-image:
    linear-gradient(90deg, rgba(124, 9, 13, 0.22) 0%, rgba(124, 9, 13, 0) 58%),
    url("../pandawa/hero-pandawa.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 50%;
  bottom: -126px;
  width: 760px;
  height: 180px;
  border-top: 18px solid var(--yellow-500);
  border-radius: 50%;
  background: var(--cream-100);
  content: "";
  transform: rotate(-5deg);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1248px, calc(100% - 48px));
  min-height: 390px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 54%;
  max-width: 640px;
  padding: 28px 0 30px;
  color: white;
}

.hero-kicker {
  display: none;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.2vw, 62px);
  line-height: 0.99;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 475px;
  margin: 22px 0 28px;
  font-size: 20px;
  line-height: 1.48;
}

.button-primary {
  min-width: 226px;
  padding: 0 26px;
  background: var(--yellow-500);
  box-shadow: 0 12px 30px rgba(66, 10, 7, 0.26);
  color: #191309;
  font-size: 18px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  padding: 10px 0 14px;
  background:
    linear-gradient(90deg, #fff8ea 0%, #f8eee0 48%, #fff9ef 100%);
}

.trust-grid {
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  min-height: 112px;
  padding: 17px 23px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(127, 88, 42, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(76, 43, 19, 0.07);
}

.round-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-500);
}

.round-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-card h2 {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.1;
}

.trust-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.45;
}

.products-preview {
  width: min(1248px, calc(100% - 48px));
  padding: 14px 0 16px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 35px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.section-heading.compact-heading {
  margin-bottom: 10px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 5px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.compact-heading h2 {
  font-size: 33px;
}

.eyebrow {
  color: var(--red-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compact-heading .eyebrow {
  display: none;
}

.compact-heading > a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--red-700);
  font-size: 14px;
  font-weight: 800;
}

.compact-heading > a span {
  font-size: 28px;
  line-height: 0.7;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  min-width: 0;
  height: 142px;
  display: grid;
  grid-template-columns: 47% 1fr;
  overflow: hidden;
  border: 1px solid rgba(126, 85, 41, 0.14);
  border-radius: 13px;
  background: white;
  box-shadow: 0 8px 20px rgba(62, 34, 16, 0.05);
}

.product-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-copy {
  min-width: 0;
  padding: 15px 14px 12px 18px;
}

.product-card h3 {
  margin: 0 0 7px;
  font-size: 20px;
}

.product-card p {
  min-height: 42px;
  margin: 0;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.42;
}

.product-price {
  margin-top: 5px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.product-price strong {
  color: var(--red-700);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.product-price span {
  color: var(--ink-700);
  font-size: 10px;
}

.supply-cta {
  width: min(1248px, calc(100% - 48px));
  min-height: 80px;
  padding: 11px 42px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 68px 1fr 185px;
  align-items: center;
  gap: 20px;
  border-radius: 11px;
  background: linear-gradient(90deg, #aa1115 0%, #c61b1e 60%, #9c0f12 100%);
  box-shadow: 0 12px 24px rgba(133, 15, 18, 0.16);
  color: white;
}

.supply-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1.5px solid white;
  border-radius: 50%;
}

.supply-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.supply-cta h2 {
  margin: 0 0 4px;
  font-size: 22px;
  line-height: 1.1;
}

.supply-cta p {
  margin: 0;
  font-size: 13px;
}

.button-cta {
  min-height: 50px;
  gap: 20px;
  background: var(--yellow-500);
  color: #1d170a;
}

.button-cta span,
.button-form span {
  font-size: 27px;
  line-height: 0.7;
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.about-section {
  padding: 100px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 88px;
}

.about-visual {
  position: relative;
}

.about-visual > img {
  width: 100%;
  aspect-ratio: 1.02;
  border-radius: 34px 12px 34px 12px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: 70% center;
}

.quality-badge {
  position: absolute;
  right: -28px;
  bottom: 32px;
  width: 178px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 7px solid var(--cream-50);
  border-radius: 20px;
  background: var(--yellow-500);
  box-shadow: 0 12px 30px rgba(95, 55, 10, 0.19);
}

.quality-badge strong {
  color: var(--red-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
}

.quality-badge span {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.about-copy h2 {
  margin: 12px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.about-copy > p {
  margin: 0;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.78;
}

.check-list {
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 29px;
  font-size: 14px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--red-900);
  content: "✓";
  font-size: 13px;
}

.numbers-section {
  padding: 42px max(24px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red-900);
  color: white;
}

.numbers-section > div {
  min-height: 72px;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.numbers-section > div:first-child {
  padding-left: 0;
}

.numbers-section > div:last-child {
  border-right: 0;
}

.numbers-section strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.numbers-section span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.full-products {
  padding: 110px 0;
}

.section-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.7;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 14px 38px rgba(62, 33, 13, 0.07);
}

.catalog-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.035);
}

.catalog-image > span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--red-800);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-copy {
  padding: 25px;
}

.catalog-copy h3 {
  margin: 0 0 9px;
  font-size: 23px;
}

.catalog-copy > p {
  min-height: 45px;
  margin: 0;
  color: var(--ink-700);
  font-size: 14px;
  line-height: 1.6;
}

.catalog-copy > div {
  margin: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.catalog-copy > div strong {
  color: var(--red-700);
  font-size: 27px;
}

.catalog-copy > div span {
  color: var(--ink-500);
  font-size: 12px;
}

.catalog-copy > a {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--red-700);
  font-size: 14px;
  font-weight: 900;
}

.catalog-copy > a span {
  font-size: 26px;
}

.process-section {
  padding: 105px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 189, 33, 0.1), transparent 27%),
    linear-gradient(135deg, #7d0b0e 0%, #a51216 60%, #74090b 100%);
  color: white;
}

.light-heading .eyebrow {
  color: var(--yellow-400);
}

.light-heading > p {
  color: rgba(255, 255, 255, 0.76);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 220px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4px);
}

.process-grid article > span {
  color: var(--yellow-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.process-grid h3 {
  margin: 30px 0 12px;
  font-size: 18px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 13px;
  line-height: 1.65;
}

.faq-section {
  padding: 110px 0 70px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 90px;
}

.faq-copy h2 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.faq-copy p {
  margin: 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--red-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 45px 22px 0;
  margin: 0;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  padding: 70px 0 110px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 90px;
}

.contact-copy h2 {
  margin: 12px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-copy > p {
  color: var(--ink-700);
  line-height: 1.75;
}

.contact-card {
  padding: 24px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
}

.contact-card strong {
  color: var(--red-800);
  font-size: 18px;
}

.contact-card span {
  color: var(--ink-700);
  font-size: 13px;
}

.contact-card a {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red-700);
  font-size: 13px;
  font-weight: 900;
}

.lead-form {
  padding: 34px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.lead-feedback {
  padding: 13px 15px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.lead-feedback.success {
  border: 1px solid #b9dfc6;
  background: #effaf3;
  color: #176437;
}

.lead-feedback.error {
  border: 1px solid #edc0c0;
  background: #fff1f1;
  color: #a11919;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid #dacdbb;
  border-radius: 10px;
  background: #fffcf7;
  color: var(--ink-950);
  font-size: 14px;
  font-weight: 500;
}

.lead-form input,
.lead-form select {
  height: 49px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 122px;
  padding: 14px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #9b9288;
}

.button-form {
  min-height: 53px;
  justify-content: space-between;
  padding: 0 20px;
  background: var(--red-700);
  color: white;
}

.form-note {
  margin: -7px 0 0;
  color: var(--ink-500);
  font-size: 11px;
  text-align: center;
}

.honey-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  padding: 70px max(24px, calc((100% - 1160px) / 2)) 22px;
  background: #211713;
  color: white;
}

.footer-inner {
  padding-bottom: 54px;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.8fr;
  gap: 80px;
}

.footer-inner .brand {
  filter: brightness(1.2);
}

.footer-inner .brand-copy {
  color: white;
}

.footer-inner > div:first-child > p {
  max-width: 350px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  line-height: 1.7;
}

.footer-inner nav,
.footer-inner > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-inner strong {
  margin-bottom: 5px;
  color: var(--yellow-400);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner nav a,
.footer-inner > div:last-child span,
.footer-inner > div:last-child a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.footer-inner a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 21px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 280px 1fr 180px;
  }

  .brand img {
    width: 66px;
    height: 57px;
  }

  .brand-copy span {
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 28px;
  }

  .desktop-nav {
    gap: 26px;
  }

  .button-header {
    min-width: 170px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-copy {
    width: 58%;
  }

  .trust-card {
    padding: 15px;
    gap: 13px;
  }

  .round-icon {
    width: 57px;
    height: 57px;
    flex-basis: 57px;
  }

  .round-icon svg {
    width: 32px;
    height: 32px;
  }

  .product-row {
    gap: 15px;
  }

  .product-card {
    grid-template-columns: 43% 1fr;
  }

  .product-card-copy {
    padding-left: 13px;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-price strong {
    font-size: 20px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 74px;
  }

  .site-header {
    height: 74px;
  }

  .header-inner {
    width: min(100% - 30px, 720px);
    grid-template-columns: 1fr auto;
  }

  .header-inner > .brand img {
    width: 56px;
    height: 49px;
  }

  .header-inner > .brand .brand-copy span {
    font-size: 14px;
  }

  .header-inner > .brand .brand-copy strong {
    font-size: 24px;
  }

  .desktop-nav,
  .button-header {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 45px;
    height: 45px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--cream-100);
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu summary span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--red-800);
  }

  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: 230px;
    padding: 12px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-menu nav a:last-child {
    margin-top: 4px;
    background: var(--yellow-500);
    text-align: center;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-image {
    background-image:
      linear-gradient(180deg, rgba(126, 8, 11, 0.12) 0%, rgba(126, 8, 11, 0.05) 55%, rgba(81, 7, 9, 0.3) 100%),
      url("../pandawa/hero-pandawa.webp");
    background-position: 63% center;
    object-position: 63% center;
  }

  .hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(128, 9, 13, 0.95) 0%,
      rgba(128, 9, 13, 0.85) 39%,
      rgba(128, 9, 13, 0.04) 62%
    );
    content: "";
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    width: min(100% - 30px, 720px);
    align-items: flex-start;
  }

  .hero-copy {
    width: 100%;
    max-width: 560px;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 10vw, 58px);
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 520px;
  }

  .trust-grid,
  .products-preview,
  .supply-cta,
  .section-shell {
    width: min(100% - 30px, 720px);
  }

  .trust-strip {
    padding: 15px 0;
  }

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

  .trust-card {
    min-height: 96px;
  }

  .products-preview {
    padding: 35px 0 25px;
  }

  .compact-heading h2 {
    font-size: 34px;
  }

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

  .product-card {
    height: 154px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .product-price strong {
    font-size: 24px;
  }

  .supply-cta {
    padding: 25px;
    margin-bottom: 0;
    grid-template-columns: 56px 1fr;
  }

  .button-cta {
    grid-column: 1 / -1;
  }

  .about-section,
  .contact-section,
  .faq-section {
    padding: 75px 0;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-visual {
    max-width: 620px;
  }

  .quality-badge {
    right: 18px;
  }

  .numbers-section {
    grid-template-columns: 1fr 1fr;
    padding: 28px 15px;
  }

  .numbers-section > div {
    padding: 20px;
  }

  .numbers-section > div:nth-child(2) {
    border-right: 0;
  }

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

  .catalog-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .catalog-image {
    height: 100%;
    min-height: 290px;
  }

  .process-section,
  .full-products {
    padding: 80px 0;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .header-inner > .brand {
    gap: 8px;
  }

  .header-inner > .brand img {
    width: 47px;
  }

  .header-inner > .brand .brand-copy span {
    font-size: 12px;
  }

  .header-inner > .brand .brand-copy strong {
    font-size: 20px;
  }

  .hero,
  .hero-inner {
    min-height: 590px;
  }

  .hero-copy {
    padding-top: 44px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy > p:not(.hero-kicker) {
    margin: 18px 0 23px;
    font-size: 16px;
  }

  .button-primary {
    min-width: 210px;
    min-height: 51px;
    font-size: 16px;
  }

  .compact-heading {
    align-items: center;
    gap: 15px;
  }

  .compact-heading > a {
    font-size: 11px;
  }

  .product-card {
    grid-template-columns: 45% 1fr;
  }

  .supply-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .supply-icon {
    margin: 0 auto;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .quality-badge {
    right: 10px;
    bottom: 16px;
  }

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

  .numbers-section > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
  }

  .numbers-section > div:first-child {
    padding-left: 20px;
  }

  .numbers-section > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .catalog-card {
    display: block;
  }

  .catalog-image {
    height: 240px;
    min-height: auto;
  }

  .process-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-inner > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
