:root {
  --red: #9b1c24;
  --red-deep: #68141b;
  --red-soft: #c73e3e;
  --yellow: #f4c41f;
  --yellow-soft: #ffe275;
  --cream: #fff8e8;
  --cream-2: #f8edd3;
  --paper: #fffdf8;
  --ink: #281913;
  --muted: #75655d;
  --line: rgba(64, 33, 22, .12);
  --shadow: 0 24px 70px rgba(82, 36, 20, .14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(55, 22, 15, .08);
}
.header-inner { min-height: 92px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 260px; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.brand-text { display: grid; line-height: 1.08; }
.brand-text strong { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: -.02em; }
.brand-text span { margin-top: 5px; color: var(--red); font-size: 11px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { position: relative; color: #49352d; font-size: 14px; font-weight: 750; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red); transition: right .25s ease; }
.main-nav a:hover::after { right: 0; }
.header-cta { margin-left: 6px; }
.menu-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.7); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: .25s ease; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red-soft), var(--red));
  color: #fff;
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 0 14px 30px rgba(155, 28, 36, .22);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(155, 28, 36, .28); filter: saturate(1.06); }
.button-small { min-height: 44px; padding: 0 20px; font-size: 13px; }
.button-ghost { background: rgba(255,255,255,.55); color: var(--ink); border: 1px solid rgba(73,45,34,.16); box-shadow: none; backdrop-filter: blur(8px); }
.button-ghost:hover { box-shadow: 0 12px 28px rgba(70, 31, 18, .12); }
.button-light { background: #fff4cf; color: var(--red-deep); box-shadow: 0 14px 34px rgba(63, 9, 14, .18); }

.hero {
  position: relative;
  min-height: 790px;
  padding: 150px 0 92px;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 225, 105, .9), transparent 28%),
    linear-gradient(135deg, #fff9e9 0%, #fff3ca 54%, #f6c91c 130%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(117, 62, 20, .2) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; }
.hero-copy { padding-top: 10px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow-dark { color: var(--red); }
h1, h2, h3 { margin: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; letter-spacing: -.045em; font-weight: 700; }
h1 { max-width: 760px; margin-top: 25px; font-size: clamp(54px, 6vw, 84px); line-height: .97; }
h1 em, h2 em { color: var(--red); font-style: italic; font-weight: 500; }
.hero-lead { max-width: 650px; margin: 30px 0 0; color: #5d473d; font-size: 19px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 42px; max-width: 680px; }
.hero-facts div { padding: 17px 18px; border: 1px solid rgba(83,43,24,.12); border-radius: 18px; background: rgba(255,255,255,.46); backdrop-filter: blur(8px); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { color: var(--red); font-family: Georgia, serif; font-size: 21px; }
.hero-facts span { margin-top: 3px; color: #695248; font-size: 12px; }

.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.product-picture { position: relative; z-index: 3; width: min(430px, 90%); filter: drop-shadow(0 34px 40px rgba(91, 45, 17, .26)); transform: rotate(2deg); animation: float 5.5s ease-in-out infinite; }
.product-picture img { width: 100%; height: auto; }
.product-halo { position: absolute; z-index: 1; width: 480px; height: 480px; border-radius: 50%; background: linear-gradient(145deg, #fff7c6, #efb713); box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 40px 90px rgba(153,93,7,.24); }
.product-halo::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(147,82,7,.17); border-radius: 50%; }
.visual-badge { position: absolute; z-index: 4; right: 2%; top: 8%; width: 126px; height: 126px; display: grid; place-items: center; padding: 23px; border-radius: 50%; background: var(--red); color: #fff7d6; font-family: Georgia, serif; font-style: italic; font-size: 20px; font-weight: 700; line-height: 1.05; text-align: center; transform: rotate(10deg); box-shadow: 0 16px 38px rgba(96,14,22,.25); }
.visual-badge::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.55); border-radius: 50%; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; min-width: 220px; padding: 13px 16px; border: 1px solid rgba(80,42,24,.11); border-radius: 17px; background: rgba(255,255,255,.84); box-shadow: 0 16px 38px rgba(83,42,19,.15); backdrop-filter: blur(10px); }
.floating-card-top { left: 0; top: 19%; }
.floating-card-bottom { right: -3%; bottom: 15%; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.mini-icon { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 36px; border-radius: 11px; background: #fff1b6; color: var(--red); }
.mini-icon svg { width: 21px; fill: currentColor; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 160px; height: 160px; right: -50px; top: 180px; background: rgba(169,24,31,.11); }
.hero-orb-two { width: 90px; height: 90px; left: 42%; bottom: 52px; background: rgba(255,255,255,.45); }
.hero-wave { position: absolute; left: -3%; right: -3%; bottom: -72px; height: 140px; border-radius: 50% 50% 0 0 / 100% 100% 0 0; background: var(--paper); }

.intro { padding-top: 90px; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.section-heading h2 { margin-top: 18px; font-size: clamp(42px, 5vw, 65px); line-height: 1.02; }
.section-heading > p { max-width: 650px; margin: 18px auto 0; color: var(--muted); font-size: 17px; }
.centered { max-width: 790px; margin: 0 auto 48px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.intro-text { padding-top: 22px; }
.intro-text p { margin: 0 0 16px; color: #5f5049; font-size: 18px; line-height: 1.8; }

.products { background: linear-gradient(180deg, #fffdf8, #fbf3df); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { position: relative; min-height: 410px; display: flex; flex-direction: column; padding: 30px 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.82); box-shadow: 0 16px 36px rgba(85,43,21,.06); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card::after { content: ""; position: absolute; width: 140px; height: 140px; border-radius: 50%; right: -70px; bottom: -70px; background: rgba(244,196,31,.13); transition: transform .3s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 24px 50px rgba(85,43,21,.12); border-color: rgba(155,28,36,.2); }
.product-card:hover::after { transform: scale(1.35); }
.product-card-featured { background: linear-gradient(155deg, #9b1c24, #6e151b); color: #fff; border-color: transparent; box-shadow: 0 24px 58px rgba(109,20,27,.24); }
.product-card-featured::after { background: rgba(255,222,92,.13); }
.product-icon { width: 74px; height: 74px; display: grid; place-items: center; border-radius: 22px; background: #fff0af; color: var(--red); }
.product-icon svg { width: 40px; fill: currentColor; }
.product-card-featured .product-icon { background: #ffe47d; color: var(--red-deep); }
.product-tag { position: absolute; top: 30px; right: 24px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #ffe98e; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin-top: 28px; font-family: Georgia, serif; font-size: 28px; letter-spacing: -.025em; }
.product-card p { margin: 15px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.product-card-featured p { color: rgba(255,255,255,.73); }
.product-card a { position: relative; z-index: 2; margin-top: auto; color: var(--red); font-size: 13px; font-weight: 900; }
.product-card-featured a { color: #ffe37a; }
.product-card a span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.product-card:hover a span { transform: translateX(4px); }

.quality { position: relative; background: var(--red-deep); color: #fff; overflow: hidden; }
.quality::before { content: ""; position: absolute; width: 620px; height: 620px; right: -230px; top: -230px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.quality-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 100px; align-items: center; }
.quality-visual { position: relative; min-height: 600px; display: grid; place-items: center; }
.quality-frame { position: relative; width: 390px; height: 520px; border-radius: 36px; background: linear-gradient(145deg, #f9ce36, #f2a90d); transform: rotate(-4deg); box-shadow: 0 32px 90px rgba(26,3,5,.35); overflow: hidden; }
.quality-frame::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.6); border-radius: 26px; pointer-events: none; }
.quality-frame img { position: absolute; width: 310px; left: 38px; top: 12px; filter: drop-shadow(0 24px 24px rgba(88,42,4,.24)); }
.stamp { position: absolute; right: 1%; bottom: 9%; width: 160px; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid #ffe17d; border-radius: 50%; color: #ffe17d; text-align: center; transform: rotate(10deg); }
.stamp::before { content: ""; position: absolute; inset: 9px; border: 1px dashed currentColor; border-radius: 50%; opacity: .65; }
.stamp span { max-width: 110px; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.stamp strong { font-family: Georgia, serif; font-size: 23px; }
.stamp small { font-size: 10px; font-weight: 900; letter-spacing: .22em; }
.quality-copy .eyebrow { color: #ffd957; }
.quality-copy h2 { margin-top: 20px; font-size: clamp(46px, 5vw, 68px); line-height: 1.02; }
.quality-copy h2 em { color: #ffe06a; }
.quality-copy > p { max-width: 620px; margin: 24px 0 32px; color: rgba(255,255,255,.7); font-size: 18px; line-height: 1.75; }
.quality-list { display: grid; gap: 13px; }
.quality-list > div { display: flex; align-items: center; gap: 15px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 18px; background: rgba(255,255,255,.055); }
.check { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; border-radius: 12px; background: #ffe276; color: var(--red-deep); }
.check svg { width: 22px; fill: currentColor; }
.quality-list strong, .quality-list small { display: block; }
.quality-list strong { font-size: 15px; }
.quality-list small { margin-top: 3px; color: rgba(255,255,255,.55); font-size: 12px; }
.text-link { display: inline-flex; gap: 8px; margin-top: 29px; color: #ffe171; font-weight: 900; }

.partners { background: #fbf3df; }
.partners-card { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 44px; min-height: 480px; padding: 62px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg, #a51f27, #70151b 72%); box-shadow: var(--shadow); overflow: hidden; }
.partners-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 15%, rgba(255,222,90,.22), transparent 28%); }
.partners-copy, .partner-types { position: relative; z-index: 3; }
.partners-copy .eyebrow { color: #ffe06b; }
.partners-copy h2 { max-width: 650px; margin-top: 20px; font-size: clamp(42px, 4.6vw, 62px); line-height: 1.02; }
.partners-copy p { max-width: 610px; margin: 24px 0 30px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.75; }
.partner-types { display: grid; gap: 12px; align-content: center; }
.partner-types div { display: grid; grid-template-columns: 48px 1fr; column-gap: 12px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.partner-types span { grid-row: span 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--red-deep); background: #ffe178; font-weight: 950; font-size: 12px; }
.partner-types strong { font-family: Georgia, serif; font-size: 20px; }
.partner-types small { color: rgba(255,255,255,.6); }
.partners-rooster { position: absolute; right: -40px; bottom: -130px; width: 390px; color: rgba(255,255,255,.035); transform: rotate(-8deg); }
.partners-rooster svg { width: 100%; fill: currentColor; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { position: relative; min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 14px 34px rgba(77,38,18,.05); }
.step > span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--red); background: #fff0b6; font-size: 12px; font-weight: 950; }
.step h3 { margin-top: 28px; font-family: Georgia, serif; font-size: 25px; }
.step p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

.contacts { background: linear-gradient(180deg, #fffdf8, #fff5dc); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.contact-copy h2 { margin-top: 20px; font-size: clamp(46px, 5vw, 67px); line-height: 1.02; }
.contact-copy > p { max-width: 600px; margin: 24px 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.contact-cards > * { display: flex; align-items: center; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #fff0b4; color: var(--red); }
.contact-icon svg { width: 22px; fill: currentColor; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: var(--muted); font-size: 11px; }
.contact-cards strong { margin-top: 3px; font-size: 14px; }
.contact-note { font-size: 12px !important; color: #9a8c84 !important; }
.contact-form { padding: 34px; border: 1px solid rgba(89,46,25,.1); border-radius: 30px; background: #fff; box-shadow: var(--shadow); }
.form-title { display: grid; margin-bottom: 24px; }
.form-title strong { font-family: Georgia, serif; font-size: 31px; }
.form-title span { margin-top: 4px; color: var(--muted); font-size: 13px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 15px; }
.contact-form label > span { font-size: 12px; font-weight: 850; color: #5b463d; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(81,48,33,.15); border-radius: 14px; outline: none; background: #fffdf8; color: var(--ink); padding: 14px 16px; transition: border-color .2s, box-shadow .2s; }
.contact-form input { height: 52px; }
.contact-form textarea { resize: vertical; min-height: 115px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(155,28,36,.55); box-shadow: 0 0 0 4px rgba(155,28,36,.08); }
.contact-form .button { width: 100%; margin-top: 3px; }
.form-policy { margin: 13px 0 0; color: #9b8e87; font-size: 10px; text-align: center; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; background: #fff3bf; color: #6f4d00; font-size: 12px; }
.form-status.show { display: block; }

.site-footer { padding: 54px 0 28px; color: rgba(255,255,255,.76); background: #2b1717; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; }
.brand-footer { min-width: 0; color: #fff; }
.brand-footer .brand-text span { color: #ffd760; }
.footer-grid > p { max-width: 420px; margin: 0; font-size: 13px; }
.footer-links { display: flex; gap: 22px; font-size: 13px; font-weight: 800; }
.footer-links a:hover { color: #ffe06b; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(-12px) rotate(1deg); } }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .brand { min-width: 225px; }
  .header-cta { display: none; }
  .hero-grid { gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { min-height: 360px; }
  .quality-grid { gap: 50px; }
  .partners-card { padding: 48px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 54px; height: 54px; }
  .brand-text strong { font-size: 16px; }
  .menu-toggle { display: flex; }
  .main-nav { position: absolute; top: 74px; left: 20px; right: 20px; display: grid; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,.98); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .25s ease; }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a::after { display: none; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 118px; min-height: auto; }
  .hero-grid, .intro-grid, .quality-grid, .partners-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-facts { margin-inline: auto; }
  .hero-visual { min-height: 590px; margin-top: 20px; }
  .product-picture { width: 390px; }
  .intro-grid { gap: 30px; }
  .intro-text { padding-top: 0; }
  .quality-grid { gap: 30px; }
  .quality-copy { order: -1; }
  .quality-visual { min-height: 570px; }
  .partners-card { gap: 36px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-self: end; }
  .footer-grid > p { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .brand { min-width: 0; }
  .brand img { width: 49px; height: 49px; }
  .brand-text strong { font-size: 14px; }
  .brand-text span { font-size: 9px; }
  .hero { padding-top: 105px; }
  h1 { font-size: 46px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .product-picture { width: 315px; }
  .product-halo { width: 350px; height: 350px; }
  .visual-badge { width: 92px; height: 92px; right: 0; top: 6%; padding: 16px; font-size: 15px; }
  .floating-card { min-width: 190px; padding: 10px 12px; }
  .floating-card-top { left: -4px; top: 19%; }
  .floating-card-bottom { right: -4px; bottom: 10%; }
  .section-heading h2, .contact-copy h2, .quality-copy h2 { font-size: 42px; }
  .product-grid, .steps-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 330px; }
  .quality-visual { min-height: 510px; }
  .quality-frame { width: 300px; height: 430px; }
  .quality-frame img { width: 255px; left: 22px; }
  .stamp { width: 124px; height: 124px; right: -5px; }
  .stamp strong { font-size: 18px; }
  .partners-card { padding: 34px 25px; border-radius: 26px; }
  .partners-copy h2 { font-size: 40px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-bottom { display: grid; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
