:root {
  --primary: #174c38;
  --deep: #0c2f24;
  --accent: #d98b39;
  --oak: #b7793f;
  --cream: #f3eee4;
  --paper: #fffdf8;
  --ink: #18221d;
  --muted: #69736e;
  --line: rgba(24, 34, 29, 0.12);
  --container: 1180px;
  --radius: 24px;
  --shadow: 0 22px 70px rgba(18, 43, 33, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

.site-loading,
.site-error {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 32px;
  text-align: center;
}

.loading-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 20px;
  color: white;
  background: var(--primary);
  font-size: 38px;
  font-weight: 900;
}

.site-error strong {
  font-size: 24px;
}

.site-error span {
  color: var(--muted);
}

.announcement {
  position: relative;
  z-index: 31;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(217, 139, 57, 0.14);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(18, 50, 39, 0.08);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  color: var(--deep);
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand__descriptor {
  margin-top: 6px;
  color: var(--oak);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand--light .brand__name {
  color: white;
}

.brand--light .brand__descriptor {
  color: #edb26f;
}

.navigation {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.navigation__link {
  position: relative;
  color: #3f4944;
  font-size: 14px;
  font-weight: 650;
}

.navigation__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}

.navigation__link:hover::after,
.navigation__link:focus-visible::after {
  right: 0;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--primary,
.button--compact {
  color: white;
  background: var(--primary);
  box-shadow: 0 12px 32px rgba(23, 76, 56, 0.2);
}

.button--primary:hover,
.button--compact:hover {
  background: var(--deep);
  box-shadow: 0 16px 36px rgba(23, 76, 56, 0.28);
}

.button--outline {
  border-color: rgba(23, 76, 56, 0.24);
  background: rgba(255, 255, 255, 0.52);
  color: var(--deep);
}

.button--outline:hover {
  background: white;
}

.button--light {
  color: var(--deep);
  background: white;
}

.button--compact {
  min-height: 42px;
  padding-inline: 17px;
}

.button__arrow {
  font-size: 17px;
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 54px;
  background:
    radial-gradient(circle at 12% 16%, rgba(217, 139, 57, 0.11), transparent 28%),
    linear-gradient(135deg, #fbf8f1 0%, var(--paper) 52%, #eef2eb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -270px;
  top: 0;
  border: 1px solid rgba(23, 76, 56, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(23, 76, 56, 0.025), 0 0 0 160px rgba(23, 76, 56, 0.018);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(45px, 7vw, 92px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.eyebrow--light {
  color: #efc08a;
}

.hero__title {
  max-width: 600px;
  margin: 25px 0 24px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.25vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero__title em {
  color: var(--primary);
  font-style: italic;
}

.hero__body {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero__visual {
  position: relative;
}

.hero__image-frame {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px 52px 8px 52px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 33, 24, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero__caption {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(12, 47, 36, 0.92);
  color: white;
  backdrop-filter: blur(10px);
}

.hero__caption-icon {
  color: var(--accent);
  font-size: 22px;
}

.hero__caption-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__caption-copy strong {
  font-size: 13px;
}

.hero__caption-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 27px 20px 4px;
}

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

.stat__value {
  color: var(--primary);
  font-family: Georgia, serif;
  font-size: 28px;
}

.stat__label {
  max-width: 110px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 112px 0;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: end;
  gap: 50px;
}

.section-heading--center {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-title {
  margin: 18px 0;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-title--small {
  max-width: 650px;
  margin: 0;
  font-size: clamp(32px, 3.6vw, 46px);
}

.section-title--light {
  color: white;
}

.section-copy {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.partners {
  padding: 88px 0;
  background: white;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.partner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: var(--paper);
  color: var(--deep);
  text-align: center;
}

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

.partner__mark {
  color: var(--accent);
  font-size: 10px;
}

.partner strong {
  font-size: 14px;
}

.products {
  background: var(--cream);
}

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

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(230px, 1.04fr);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(23, 76, 56, 0.08);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 42px rgba(18, 43, 33, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(18, 43, 33, 0.12);
}

.product-card__image-wrap {
  min-height: 100%;
  overflow: hidden;
  background: #d8ded7;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.035);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 42px);
}

.product-card__tag {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(217, 139, 57, 0.12);
  color: #9a5b18;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card__title {
  margin: 0 0 14px;
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.product-card__copy {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-card {
  position: relative;
  grid-column: span 5;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: var(--deep);
  color: white;
  cursor: zoom-in;
  box-shadow: 0 14px 40px rgba(18, 43, 33, 0.08);
}

.gallery-card--1 {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-card--4 {
  grid-column: span 5;
}

.gallery-card--5 {
  grid-column: span 7;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease, filter 300ms ease;
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  background: linear-gradient(to top, rgba(8, 39, 29, 0.9), rgba(8, 39, 29, 0.04) 68%);
}

.gallery-card__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  text-align: left;
}

.gallery-card__copy small {
  color: #efb16b;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-card__copy strong {
  font-family: Georgia, serif;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.gallery-card__zoom {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 25px;
  font-weight: 300;
  backdrop-filter: blur(8px);
}

.gallery-card:hover .gallery-card__image,
.gallery-card:focus-visible .gallery-card__image {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.gallery-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.lightbox {
  width: min(1180px, calc(100% - 34px));
  max-width: none;
  height: min(850px, calc(100% - 34px));
  max-height: none;
  overflow: visible;
  border: 0;
  border-radius: 22px;
  padding: 0;
  background: transparent;
  color: white;
}

.lightbox::backdrop {
  background: rgba(4, 24, 17, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox__figure {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.lightbox__image {
  width: 100%;
  min-height: 0;
  max-height: calc(100% - 78px);
  object-fit: contain;
  border-radius: 18px;
  background: #071c15;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.35);
}

.lightbox__caption {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.lightbox__category {
  color: #efb16b;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox__title {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(7, 35, 26, 0.82);
  color: white;
  backdrop-filter: blur(10px);
}

.lightbox__close {
  top: -15px;
  right: -15px;
  font-size: 28px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 34px;
}

.lightbox__nav--previous { left: -67px; }
.lightbox__nav--next { right: -67px; }

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--accent);
  color: var(--deep);
}

.about {
  overflow: hidden;
  background: var(--deep);
  color: white;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
  align-items: center;
  gap: clamp(55px, 8vw, 100px);
}

.about__visual {
  position: relative;
}

.about__visual::before {
  content: "";
  position: absolute;
  inset: -18px 35px 35px -18px;
  border: 1px solid rgba(237, 178, 111, 0.28);
  border-radius: 34px 9px 34px 9px;
}

.about__image {
  position: relative;
  width: 100%;
  height: 570px;
  object-fit: cover;
  border-radius: 30px 7px 30px 7px;
}

.about__stamp {
  position: absolute;
  right: -28px;
  bottom: 42px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 7px solid var(--deep);
  border-radius: 50%;
  background: var(--accent);
  color: var(--deep);
  font-family: Georgia, serif;
  font-size: 44px;
  font-style: italic;
}

.about__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.feature-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.feature-list__check {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(217, 139, 57, 0.16);
  color: #f0b36c;
  font-size: 12px;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 76, 56, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 76, 56, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.contact__intro .section-copy {
  margin: 0;
}

.contact-card {
  overflow: hidden;
  border: 1px solid rgba(23, 76, 56, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
  padding: 25px 27px;
}

a.contact-row:hover {
  background: rgba(23, 76, 56, 0.035);
}

.contact-row + .contact-row {
  border-top: 1px solid var(--line);
}

.contact-row__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--cream);
  color: var(--primary);
  font-size: 21px;
}

.contact-row__copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-row__copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row__copy strong {
  color: var(--deep);
  font-size: 15px;
  line-height: 1.45;
}

.footer {
  background: #08271d;
  color: rgba(255, 255, 255, 0.68);
}

.footer__top {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer__brand p {
  max-width: 390px;
  margin: 25px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 18px 44px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.footer__nav a:hover,
.footer__admin:hover {
  color: #f0b36c;
}

.footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer__admin {
  transition: color 180ms ease;
}

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

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

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

@media (max-width: 1050px) {
  .navigation {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .navigation.is-open { display: flex; }

  .navigation__link {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .navigation__link::after { display: none; }
  .navigation .button { margin: 14px; }
  .menu-button { display: grid; }

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

  .hero__image-frame,
  .hero__image {
    min-height: 480px;
  }

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

  .product-card__image-wrap { height: 280px; }
  .about__grid { gap: 55px; }
}

@media (max-width: 800px) {
  .hero { padding-top: 64px; }
  .hero__grid,
  .about__grid,
  .contact__grid,
  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .hero__copy { max-width: 680px; }
  .hero__visual { margin-top: 6px; }
  .hero__image-frame, .hero__image { min-height: 520px; }
  .section { padding: 84px 0; }
  .partner-list { grid-template-columns: repeat(2, 1fr); }
  .partner:nth-child(3) { border-left: 0; }
  .partner:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 0.95fr 1.05fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .gallery-card,
  .gallery-card--1,
  .gallery-card--4,
  .gallery-card--5 { grid-column: span 1; grid-row: span 1; }
  .gallery-card--1 { grid-column: 1 / -1; grid-row: span 2; }
  .lightbox__nav--previous { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__close { top: 10px; right: 10px; }
  .about__image { height: 480px; }
  .about__copy { padding-top: 20px; }
  .contact__grid { gap: 45px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: 9px; }
  .header__inner { min-height: 72px; }
  .brand__logo { width: 45px; height: 45px; }
  .brand__name { font-size: 22px; }
  .brand__descriptor { font-size: 8px; }
  .hero { padding-top: 52px; }
  .hero__title { font-size: clamp(44px, 14vw, 60px); }
  .hero__body { font-size: 15px; }
  .hero__actions .button,
  .contact__actions .button { width: 100%; }
  .hero__image-frame, .hero__image { min-height: 410px; }
  .hero__caption { right: 0; }
  .stats { grid-template-columns: 1fr; margin-top: 48px; }
  .stat { justify-content: flex-start; padding: 18px 8px; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .section { padding: 70px 0; }
  .section-title { font-size: 38px; }
  .partner-list { grid-template-columns: 1fr; }
  .partner + .partner { border-left: 0; border-top: 1px solid var(--line); }
  .product-card { grid-template-columns: 1fr; }
  .product-card__image-wrap { height: 260px; }
  .product-card__title { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery-card,
  .gallery-card--1,
  .gallery-card--4,
  .gallery-card--5 { grid-column: span 1; grid-row: span 1; }
  .gallery-card__overlay { padding: 20px; }
  .lightbox { width: calc(100% - 18px); height: calc(100% - 18px); }
  .lightbox__caption { flex-direction: column; gap: 5px; }
  .about__image { height: 390px; }
  .about__stamp { right: -4px; bottom: 25px; }
  .contact-row { grid-template-columns: 42px 1fr; padding: 21px 19px; }
  .contact-row__icon { width: 42px; height: 42px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 22px 0; }
}
