:root {
  --ink: #15171a;
  --muted: #5d6673;
  --paper: #ffffff;
  --soft: #e9eef3;
  --soft-2: #f6f8fa;
  --line: #d8e0e7;
  --brand: #ED7218;
  --brand-dark: #c95708;
  --accent: #1f7a8c;
  --coal: #252a31;
  --ok: #2f8f5b;
  --shadow: 0 20px 60px rgba(18, 24, 31, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(31, 122, 140, .55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 12px 16px;
  background: var(--coal);
  color: #fff;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.logo img {
  width: 285px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.main-nav a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--coal);
}

.main-nav a:hover {
  color: var(--brand-dark);
}

.main-nav a.btn,
.main-nav a.btn:hover,
.main-nav a.btn:focus-visible {
  color: var(--coal);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--coal);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(242, 122, 24, .22);
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.btn:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(201, 87, 8, .25);
}

.btn:active {
  transform: translateY(0);
}

.btn.secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.dark .eyebrow {
  color: #fff;
}

.orange .eyebrow {
  color: var(--ink);
}

.hero {
  background: linear-gradient(180deg, var(--soft) 0%, #eef3f7 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 56px;
  padding: 72px 0 118px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: .95;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--brand);
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #333b44;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 480px;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 58px -20px auto 70px;
  height: 360px;
  background: var(--brand);
}

.hero-media img {
  position: relative;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-strip {
  margin-top: -78px;
  position: relative;
  z-index: 2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brand-dark);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 210px;
  padding: 34px;
  background: var(--brand);
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.service-card:nth-child(1) {
  background: var(--brand);
}

.service-card:nth-child(2) {
  background: #F48024;
}

.service-card:nth-child(3) {
  border-right: 0;
  background: #ffad3d;
}

.service-card svg {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.service-card h2 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
}

.section {
  padding: 96px 0;
}

.section.soft {
  background: var(--soft);
}

.section.orange {
  background: var(--brand);
  color: #fff;
}

.section.dark {
  background: var(--coal);
  color: #fff;
}

.section.compact {
  padding: 72px 0;
}

.section-title {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-title h2 span {
  color: var(--brand);
}

.section-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .section-title p,
.orange .section-title p {
  color: rgba(255, 255, 255, .86);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 58px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 480px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 110px -28px 40px 36px;
  background: var(--brand);
}

.image-stack img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack .one {
  left: 0;
  top: 0;
  width: 62%;
}

.image-stack .two {
  right: 0;
  bottom: 0;
  width: 62%;
}

.content-card {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: inset 0 0 0 6px #fff;
}

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

.process-step {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-step strong {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
}

.process-step h3 {
  margin: 0 0 10px;
}

.offer-hero {
  background: linear-gradient(180deg, var(--soft) 0%, #f7f9fb 100%);
  overflow: hidden;
}

.offer-hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: 58px;
  padding: 72px 0 92px;
}

.offer-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: 0;
}

.offer-hero h1 span {
  color: var(--brand);
}

.offer-lead {
  margin: 22px 0 0;
  max-width: 680px;
  color: #333b44;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.offer-hero-media {
  position: relative;
}

.offer-hero-media::before {
  content: "";
  position: absolute;
  inset: 46px -24px -24px 82px;
  background: var(--brand);
}

.offer-hero-media img {
  position: relative;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.offer-jump a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--coal);
  font-weight: 800;
  text-decoration: none;
}

.offer-jump a:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.catalog-grid {
  display: grid;
  gap: 34px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(340px, .78fr) minmax(430px, .92fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 24, 31, .06);
}

.product-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.product-card p {
  margin: 0 0 50px;
  color: var(--muted);
}

.product-card picture,
.product-card img {
  width: 100%;
}

.product-card img {
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--soft-2);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scrollbar-color: var(--brand) #dfe7ee;
  scrollbar-width: thin;
}

.table-wrap::-webkit-scrollbar {
  height: 10px;
}

.table-wrap::-webkit-scrollbar-track {
  background: #dfe7ee;
  border-radius: 999px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: var(--brand);
  border: 2px solid #dfe7ee;
  border-radius: 999px;
}

.table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

.spec-table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  background: #fff;
  font-size: .9rem;
}

.spec-table th {
  background: var(--accent);
  color: #fff;
  text-align: left;
}

.spec-table th,
.spec-table td {
  padding: 10px 11px;
  border-bottom: 1px solid var(--line);
}

.spec-table tbody tr:nth-child(even) {
  background: #f1f6fb;
}

.spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.cellar-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.cellar-gallery picture,
.cellar-gallery img {
  width: 100%;
}

.cellar-gallery img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}

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

.extra-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.extra-card h3 {
  margin: 0 0 12px;
}

.extra-card ul {
  margin: 0;
  padding-left: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 170px;
  gap: 18px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(6),
.gallery figure:nth-child(11) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery figure:nth-child(2),
.gallery figure:nth-child(3),
.gallery figure:nth-child(4),
.gallery figure:nth-child(5),
.gallery figure:nth-child(7),
.gallery figure:nth-child(8),
.gallery figure:nth-child(9),
.gallery figure:nth-child(10) {
  grid-column: span 3;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.article-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 104px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--coal);
  color: #fff;
}

.text-article {
  max-width: 880px;
}

.text-article h2,
.text-article h3 {
  margin: 36px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.text-article h2:first-child,
.text-article h3:first-child {
  margin-top: 0;
}

.text-article p {
  margin: 0 0 18px;
  color: #36404a;
}

.text-article ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.text-article li {
  position: relative;
  padding-left: 28px;
}

.text-article li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  background: var(--brand);
}

.text-article .article-lead {
  font-size: 1.08rem;
  color: var(--ink);
}

.text-article .article-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 24px 0 34px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 24, 31, .08);
  scrollbar-color: var(--brand) #dfe7ee;
  scrollbar-width: thin;
}

.text-article .article-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.text-article .article-table-wrap::-webkit-scrollbar-track {
  background: #dfe7ee;
  border-radius: 999px;
}

.text-article .article-table-wrap::-webkit-scrollbar-thumb {
  background: var(--brand);
  border: 2px solid #dfe7ee;
  border-radius: 999px;
}

.text-article table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
  font-size: .95rem;
  line-height: 1.45;
}

.text-article th,
.text-article td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.text-article th {
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.text-article tbody tr:nth-child(even) {
  background: var(--soft-2);
}

.text-article tr:last-child td {
  border-bottom: 0;
}

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

.knowledge-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(233, 238, 243, .7), #fff 58%),
    #fff;
  box-shadow: 0 18px 44px rgba(18, 24, 31, .08);
}

.knowledge-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.18;
}

.knowledge-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.knowledge-card p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
}

.knowledge-card .text-link {
  margin-top: auto;
  color: var(--brand-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.knowledge-nav {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.knowledge-nav a {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
}

.knowledge-nav a:hover,
.knowledge-nav a[aria-current="page"] {
  border-color: rgba(237, 114, 24, .72);
  background: rgba(237, 114, 24, .16);
}

.knowledge-article {
  max-width: none;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 24, 31, .08);
}

.knowledge-contact {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.city-links {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
}

.city-links h2 {
  margin: 0 0 18px;
}

.links-grid,
.unik-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-links .links-grid {
  max-height: 360px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-color: var(--brand) #dfe7ee;
  scrollbar-width: thin;
}

.city-links .links-grid::-webkit-scrollbar {
  width: 10px;
}

.city-links .links-grid::-webkit-scrollbar-track {
  background: #dfe7ee;
  border-radius: 999px;
}

.city-links .links-grid::-webkit-scrollbar-thumb {
  background: var(--brand);
  border: 2px solid #dfe7ee;
  border-radius: 999px;
}

.city-links .links-grid::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

.links-grid a,
.unik-cities-list a,
.unik-alphabet-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--coal);
  font-weight: 700;
  text-decoration: none;
}

.links-grid a:hover,
.unik-cities-list a:hover,
.unik-alphabet-nav a:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.contact-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-items {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.quick-form {
  display: grid;
  gap: 16px;
}

.form-field > label {
  font-weight: 800;
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #b9c3cc;
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
}

.quick-form textarea {
  min-height: 132px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.required {
  color: var(--brand-dark);
}

.rodo-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: #252a31;
  font-size: .96rem;
  font-weight: 400;
  line-height: 1.45;
}

.rodo-check input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--brand);
}

.rodo-check strong {
  font-weight: 700;
  cursor: pointer;
}

.rodo-check a {
  color: var(--brand-dark);
}

.form-message {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.form-message p {
  margin: 0;
}

.form-message p + p {
  margin-top: 8px;
}

.form-message.success {
  background: #e8f7ee;
  color: #176236;
  border: 1px solid #bde5c9;
}

.form-message.error {
  background: #fff1ed;
  color: #9f2f12;
  border: 1px solid #fac6b6;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .95rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

.site-footer {
  padding: 52px 0;
  background: #1f2329;
  color: rgba(255, 255, 255, .82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 42px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
}

.site-footer a {
  color: #fff;
  cursor: pointer;
}

.footer-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.footer-photos img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.copyright {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .95rem;
}

.call-button {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    width: 100vw;
    min-height: calc(100dvh - 76px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: center;
    cursor: pointer;
  }

  .hero-grid,
  .offer-hero-grid,
  .split,
  .article-wrap,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding: 52px 0 110px;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media img {
    height: 420px;
  }

  .offer-hero-grid {
    min-height: 0;
    padding: 52px 0 72px;
  }

  .offer-hero-media img {
    height: 360px;
  }

  .product-card,
  .extras-grid {
    grid-template-columns: 1fr;
  }

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

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

  .article-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .logo img {
    width: 245px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-media::before {
    inset: 44px -12px auto 32px;
    height: 230px;
  }

  .hero-media img {
    height: 330px;
  }

  .offer-hero-media::before {
    inset: 34px -12px -14px 44px;
  }

  .offer-hero-media img {
    height: 290px;
  }

  .product-card {
    padding: 18px;
  }

  .cellar-gallery {
    gap: 10px;
  }

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

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

  .knowledge-card,
  .knowledge-article {
    min-height: 0;
    padding: 22px;
  }

  .text-article h2 {
    font-size: 1.55rem;
  }

  .text-article h3 {
    font-size: 1.25rem;
  }

  .text-article .article-lead {
    font-size: 1rem;
  }

  .text-article .article-table-wrap {
    margin: 20px 0 30px;
    border-radius: 8px;
  }

  .text-article table {
    min-width: 620px;
    font-size: .88rem;
  }

  .text-article th,
  .text-article td {
    padding: 11px 12px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(6),
  .gallery figure:nth-child(11),
  .gallery figure:nth-child(2),
  .gallery figure:nth-child(3),
  .gallery figure:nth-child(4),
  .gallery figure:nth-child(5),
  .gallery figure:nth-child(7),
  .gallery figure:nth-child(8),
  .gallery figure:nth-child(9),
  .gallery figure:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }

  .section {
    padding: 68px 0;
  }

  .image-stack {
    min-height: 390px;
  }

  .contact-panel {
    padding: 24px;
  }

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