:root {
  --bg: #0000;
  --bg-dark: #111111;
  --text: #1a1a1a;
  --muted: rgba(255, 255, 255, 0.72);
  --accent: #e66e6e;
  --accent-2: #ea556f;
  --line: #e8e8e8;
  --font: "Manrope", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --header-h: 72px;
}

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

#order {
  scroll-margin-top: 10em;
}

html {
  scroll-behavior: smooth;
  
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  /* background-color: #1a1a1a; */
  scrollbar-width: none;
  
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

.u-muted {
  opacity: 0.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--accent-2);
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: #1a1a1a;
}

.btn--light {
  background: #fff;
  color: #000;
}

.btn--ghost {
  background: transparent;
  color: #fff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s, box-shadow 0.25s;
}

.site-header--scrolled {
  background: rgba(17, 17, 17, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__logo img {
  width: 25vw;
  max-width: 42vw;
}
@media (max-width: 900px) {
  .site-header__logo img {
    width: 96%;
    height: 96%;
    max-width: 50em;
  }
}


.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  color: #fff;
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.5rem 0.65rem;
  position: relative;
}

@media (hover: hover) {
  .nav-desktop a:hover::after {
    opacity: 1;
    bottom: 2px;
  }
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
  opacity: 0;
  transition: opacity 0.2s, bottom 0.2s;
}

.nav-desktop .has-sub {
  position: relative;
}

.nav-desktop .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 0.5rem 0;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-desktop .has-sub:hover .sub {
  display: block;
}

.nav-desktop .sub a {
  color: #111;
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.nav-desktop .sub a::after {
  display: none;
}

.nav-desktop .sub a:hover {
  background: #f5f5f5;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 980px) {
  .nav-actions {
    display: flex;
  }
}

.nav-actions .phone {
  color: #fff;
  font-weight: 300;
  font-size: 0.9rem;
}

.nav-actions .lang {
  color: #fff;
  font-weight: 300;
  font-size: 0.9rem;
  opacity: 0.9;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-toggle {
    width: 30%;
  }
}

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

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: #111;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 150;
}

.nav-panel--open {
  transform: translateX(0);
}

@media (min-width: 980px) {
  .nav-panel {
    display: none;
  }
}

.nav-panel a {
  display: block;
  color: #fff;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 300;
}

.nav-panel .sub-head {
  color: var(--accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  background: #2a2420 center / cover no-repeat;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5.2rem);
  font-weight: 300;
  line-height: 0.98;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero__actions {
  margin-top: 2rem;
}
.hero--care {
  background-image: url('/static/images/careBackground.jpg');
}

.scroll-indicator {
  display: none;
  /* position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%); */
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.scroll-indicator span {
  display: none;
  display: block;
  margin-bottom: 8px;
}

.arrow {
  display: none;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin: auto;

  animation: scrollArrow 1.6s infinite;
}

@keyframes scrollArrow {
  0% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translate(8px, 8px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: center;
  }
  .hero__title {
    text-align: center;
    font-size: 3.5em;
  }
  .hero__actions {
    text-align: center;
    padding-bottom: 30%;
  }

  .arrow {
    display: block;
  }
  .scroll-indicator span{
    display: block;
  }
  .scroll-indicator {
    display: block;
  }
}


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

.section--dark h2 {
  color: #fff;
}

.pitch {
  padding: 4rem 0 4.5rem;
  text-align: center;
}

.pitch h2 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

.pitch__lead {
  font-size: 1.125rem;
  max-width: 52ch;
  margin-inline: auto;
  opacity: 0.92;
}

.pitch__meta {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.pitch__actions {
  margin-top: 2rem;
}

.note-banner {
  padding: 1rem 0;
  text-align: center;
  font-size: 0.95rem;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
  padding: 4.5rem 0;
}

.section__head {
  margin-bottom: 2.5rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.about__body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.about__body h3:first-of-type {
  margin-top: 0;
}

.why {
  position: relative;
  padding: 4rem 0 5rem;
  background: #0d0d0d center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.why > .u-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;

}

.why h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #fff;
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.why-card img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0.9;
}


.catalog-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.catalog-card {
  display: block;
  background: #fafafa;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  color: inherit;
}

@media (hover: hover) {
  .catalog-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
  }
}

.catalog-card__img {
  aspect-ratio: 4 / 5;
  background: #e5e2de;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.catalog-card__img img {
  max-height: 100%;
  object-fit: contain;
}

.catalog-card__title {
  padding: 1rem 1.1rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 500;
  border-top: 1px solid var(--line);
}

.split-section {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .split-section {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .split-section--reverse .split-section__text {
    order: 2;
  }

  .split-section--reverse .split-section__visual {
    order: 1;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}

.benefits {
  background: #f7f7f7;
}

.benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  text-align: center;
  padding: 1rem;
}

.benefit img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
}

.benefit h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
}

.benefit p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
}

.video-container {
  display: flex;
  gap: 15px; 
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item {
  flex: 1;
  aspect-ratio: 9 / 16; 
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

@media (max-width: 768px) {
  .video-item:not(:first-child) {
    display: none;
  }
  
  .video-container {
    padding: 0 20px;
  }
}


.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

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

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.faq-q span:last-child {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-item--open .faq-q span:last-child {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding-bottom: 1.25rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item--open .faq-a {
  display: block;
}

.contact-section {
  position: relative;
  padding: 4rem 0 5rem;
  background: #0a0a0a center / cover no-repeat;
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.contact-section > .u-container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.form-stack label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.35rem;
  opacity: 0.85;
}

.form-stack input,
.form-stack textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border-radius: 7px;
  border: 1px solid #333;
  background: #050505;
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
}

.form-stack input:focus,
.form-stack textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}
.form-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.5rem 0 1.25rem;
  font-family: var(--font);
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
  cursor: pointer;
}

.form-stack .form-check input[type="checkbox"] {
  width: auto;
  margin: 0.15rem 0 0 0;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check span {
  display: inline-block;
}

.form-check a {
  text-decoration: underline;
  color: inherit;
}


.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 2rem;
  font-size: 0.875rem;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

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

.site-footer .logo-foot {
  width: 28em;
  margin-bottom: 0.75rem;
  filter: brightness(1.1);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s;
}

.social-row a:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.social-row img {
  width: 44px;
  height: 44px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.65);
}

.modal[hidden] {
  display: none;
}

.modal__box {
  width: min(100%, 440px);
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}

.modal__close:hover {
  opacity: 1;
}

.to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.to-top img {
  width: 22px;
  height: 22px;
}

.to-top__chevron {
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--accent);
}

/* Catalog starts on a light background — keep header bar opaque and logo in natural colors
   (no invert), otherwise white nav + white logo disappear over white. */
.catalog-page .site-header {
  background: rgba(17, 17, 17, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.catalog-page .site-header__logo-img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.catalog-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.catalog-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.catalog-subnav a {
  color: #444;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.catalog-subnav a:hover,
.catalog-subnav a.is-active {
  color: #000;
  border-bottom-color: var(--accent-2);
}

.breadcrumbs {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.25rem;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.breadcrumbs span[aria-hidden="true"] {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.parket-intro__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #000;
}

.parket-intro__lead {
  max-width: 62ch;
  font-size: 1.05rem;
}

.parket-intro-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .parket-intro-layout {
    grid-template-columns: 1fr min(900px, 34%);
    gap: 2.25rem;
  }
}

.parket-intro__main {
  min-width: 0;
}

.parket-intro__services {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #444;
}

@media (min-width: 640px) {
  .parket-intro__services {
    grid-template-columns: 1fr 1fr;
  }
}

.parket-intro__services li {
  margin: 0;
  padding-left: 0.85rem;
  position: relative;
}

.parket-intro__services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-2);
}

.order-panel--compact {
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.order-panel--compact .order-panel__heading {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
}

.form-stack--compact > .parket-form-grid input,
.form-stack--compact > .parket-form-grid textarea {
  margin-bottom: 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.9375rem;
}

.form-stack--compact > .form-check {
  margin: 0.5rem 0 0.35rem;
  font-size: 0.75rem;
  line-height: 1.35;
}

.form-stack--compact .btn--submit-compact {
  margin-top: 0.15rem;
}

.parket-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem 0.65rem;
}

@media (min-width: 520px) {
  .parket-form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .parket-form-grid .parket-form-span-2 {
    grid-column: 1 / -1;
  }
}

.parket-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 0.45rem;
}

.parket-options-grid .form-check {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.3;
  align-items: flex-start;
}

.form-fieldset--inline {
  margin: 0;
}

.form-fieldset--inline .form-fieldset__legend {
  margin-bottom: 0.35rem;
}

.btn--submit-compact {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: 0.9375rem;
}

.catalog-page .form-stack--compact textarea {
  min-height: 3rem;
}

.section--tight {
  padding-top: 2rem;
}

.parket-order-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .parket-order-grid {
    grid-template-columns: 1fr min(420px, 38%);
    align-items: start;
    gap: 3rem;
  }
}

.service-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fafafa;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: #111;
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
}

.order-panel {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.order-panel__heading {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.order-panel__hint {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 1.25rem;
}

.form-fieldset {
  border: none;
  margin: 0 0 0.5rem;
  padding: 0;
}

.form-fieldset__legend {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-stack textarea {
  resize: vertical;
  min-height: 96px;
}

.catalog-page .form-stack input,
.catalog-page .form-stack textarea {
  background: #fff;
  color: #111;
  border-color: #ccc;
}

.catalog-page .order-panel .form-check span {
  color: #333;
}

.req {
  color: var(--accent-2);
  font-weight: 600;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .product-grid.product-grid--catalog {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}

@media (hover: hover) {
  .product-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  }
}

.product-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  background: #e8e4df;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

@media (hover: hover) {
  .product-card__media:hover img {
    transform: scale(1.04);
  }
}

.product-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.product-card__meta {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 0.75rem;
}

.product-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-section--compact {
  padding: 3rem 0;
}

.contact-grid--single {
  grid-template-columns: 1fr;
}

.logo-foot--invert {
  filter: brightness(0) invert(1);
  max-width: 200px;
  width: auto;
  height: auto;
}
