@import url("../fonts/webfonts.css");

:root {
  --bg: #ececec;
  --bg-accent: rgba(245, 189, 0, 0.12);
  --surface: #f6f5f1;
  --surface-2: #ffffff;
  --surface-soft: #fffaf0;
  --text: #000;
  --muted: #6d6d6d;
  --brand: #f5bd00;
  --brand-dark: #dca100;
  --brand-soft: rgba(245, 189, 0, 0.18);
  --line: #e4c86c;
  --shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius-xl: 32px;
  --radius-lg: 80px;
  --radius-md: 18px;
  --content-width: 1024px;
  --frame-width: 1240px;
  --page-gutter: 24px;
  --container: var(--content-width);
  --section-space: 40px;
  /* --title-font: "AllRoundGothic", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;*/
  --title-font: "M PLUS Rounded 1c", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --body-font: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body-font);
  font-weight: 400;
  background: #ffffff;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

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

.page,
.page-shell {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.container-child {
  width: 80%;
}

/* Header */
.site-header {
  position: relative;
  z-index: 5;
  padding: 24px 0 16px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.site-header nav {
  margin-left: auto;
  padding-top: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  height: 52px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: rgba(245, 189, 0, 0.14);
  box-shadow: var(--shadow-soft);
  color: var(--brand);
  cursor: pointer;
}

.nav-toggle__line {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.logo {
  display: inline-flex;
  align-items: center;
}

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

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 45px 0 0;
  padding: 0;
}

.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 2px 0;
  font-family: var(--title-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-list a:hover {
  color: var(--brand-dark);
  opacity: 0.95;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  transform: scaleX(1);
}

/* Hero */
.hero-wrap {
  position: relative;
  width: 100%;
  max-width: var(--frame-width);
  margin: 8px auto 0;
}
.contact-wrap {
  position: relative;
  width: 100%;
  max-width: var(--frame-width);
  margin: 8px auto 0;
}

.hero {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #dce8eb;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.06) 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 32px 24px;
  text-align: center;
}

.hero-copy {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-title {
  margin: 0;
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  width: 100%;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 52px;
  margin-top: 24px;
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: #585858;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 400;
  backdrop-filter: blur(7px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-link:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.95;
  transform: translateY(-50%);
  text-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow::before {
  content: "";
  width: 34px;
  height: 52px;
  background: center / contain no-repeat url("../img/fleche.png");
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
}

.hero-arrow.prev::before {
  transform: rotate(180deg);
}

.hero-arrow.prev {
  left: 18px;
}

.hero-arrow.next {
  right: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 30px;
    transform: translateX(-50%);
}

.hero-dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  background: rgba(255, 255, 255, 0.78);
  transform: scale(1.08);
}

.hero-dot.is-active {
  background: #ffffff;
}

/* Shared sections */
.section {
  position: relative;
  padding-top: var(--section-space);
}

.section-title,
.mini-title,
.footer-title {
  margin: 0 0 18px;
  color: var(--brand);
  font-family: var(--title-font);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2.75rem, 2.9vw, 3.5rem);
  line-height: 0.95;
}

.mini-title {
  font-size: 2rem;
  line-height: 0.95;
}

.divider {
    height: 2px;
    margin: 50px 0 0;
    background: var(--line);
}

.tagline {
  position: relative;
  padding: 80px 0 0;
}

.tagline-inner {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.tagline-text {
    margin: 0;
    color: var(--brand);
    font-family: var(--title-font);
    font-size: 2.3rem;
    line-height: 1.3;
    letter-spacing: 0;
    font-weight: 100;
}


.tagline-text strong {    
  font-weight: 700;
}

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

.text-cols p,
.sponsoring-text,
.product-copy p {
    margin: 0 0 15px;
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.7;
}

.text-cols p + p,
.product-copy p + p {
  margin-top: 18px;
}

/* Product layouts */
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 84px;
  align-items: stretch;
}

.feature-card {
    display: grid;
    grid-template-columns: 50% minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.feature-copy,
.product-card,
.water-item,
.energy-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.energy-copy {
  width: 50%;
}

.feature-image,
.product-image,
.wide-image,
.water-image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--surface-2);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
}

.feature-image {
  height: clamp(320px, 28vw, 460px);
}

.product-image {
  height: clamp(240px, 23vw, 398px);
}

.wide-image {
  height: clamp(240px, 23vw, 398px);
}

.water-image {
  height: clamp(240px, 23vw, 398px);
}

.hero {
  border-radius: var(--radius-lg);
}

.feature-image img,
.product-image img,
.wide-image img,
.water-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px;
  align-items: stretch;
}

.product-card h3,
.water-item h3,
.energy-copy h3 {
  margin: 22px 0 14px;
  color: var(--brand);
  font-family: var(--title-font);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.feature-copy h3 {
    margin: 0 0 14px;
    color: var(--brand);
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
}

.energy-water {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.water-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: stretch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 40px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(245, 189, 0, 0.45);
    color: #856400;
    font-family: var(--body-font);
    font-size: 0.8em;
    font-weight: 400;
    align-self: flex-start;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: rgba(245, 189, 0, 0.6);
  transform: translateY(-1px);
}

.sponsoring-media {
  position: relative;
}

.video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-trigger:hover,
.video-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-trigger__icon {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #ffffff;
}

.lightbox-open {
  overflow: hidden;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.78);
  backdrop-filter: blur(6px);
}

.video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 32px));
}

.video-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.video-lightbox__frame-wrap {
  overflow: hidden;
  border-radius: 24px;
  background: #111111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-lightbox__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-lightbox__fallback {
  display: grid;
  gap: 14px;
  place-items: center;
  min-height: min(56vw, 540px);
  padding: 40px 28px;
  color: #ffffff;
  text-align: center;
}

.video-lightbox__fallback h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.video-lightbox__fallback p {
  max-width: 42ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.video-lightbox__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-weight: 600;
}

.video-lightbox__empty {
  display: grid;
  gap: 12px;
  padding: 56px 32px;
  color: #ffffff;
  text-align: center;
}

.video-lightbox__empty h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.video-lightbox__empty p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Sponsoring */
.sponsoring-grid {
  display: grid;
  grid-template-columns: 638px minmax(0, 1fr);
  gap: 73px;
  align-items: start;
}

/* Contact */
.contact-panel {
  width: 100%;
  max-width: var(--frame-width);
}
.contact-panel-2 {
  width: 100%;
  max-width: var(--frame-width);
  margin: 90px auto 0;
  padding: 40px;
  color: #fff;
  background: linear-gradient(180deg, #f5bd00 0%, #efb300 100%);
  box-shadow: var(--shadow);
  z-index: 1;
  position: relative;
  border-radius: var(--radius-lg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 40% minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  max-width: 1024px;
  margin: 0 auto;
}

.footer-title {
  margin-bottom: 38px;
  color: #fff;
  font-size: 2rem;
}

.address-block {
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
}

.address-block strong {
  display: block;
  margin: 36px 0 18px;
  font-family: var(--title-font);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 48px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.form-grid {
  display: grid;
  gap: 18px;
}

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

label {
  display: block;
  margin-bottom: 16px;
  color: #fff6d5;
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

input,
textarea {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  padding: 14px 18px;
}

textarea {
  min-height: 206px;
  resize: vertical;
}

.send-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

.send-btn {
  border: 0;
  cursor: pointer;
  background: #fff2c6;
  color: #c18b00;
  min-width: 205px;
  min-height: 59px;
  padding: 14px 34px;
  font-family: var(--title-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.send-btn:hover {
  background: #fff6df;
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  padding: 28px 0 42px;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #1f1f1f;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 38px;
}

.footer-nav a {
  color: #2b2b2b;
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Decorative assets */
.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

.decor-left-top {
  top: -70px;
  transform: rotate(2deg);
  height: 290px;
  width: auto;
  left: -97px;
  z-index: 0;
}

.decor-right-top {
  top: -190px;
  right: -170px;
  width: 570px;
  transform: rotate(4deg);
  z-index: 0;
}

.decor-left-middle {
    top: 0;
    left: -144px;
    width: 390px;
    transform: rotate(90deg);
    z-index: 0;
}

.decor-right-bottom {
    top: -175px;
    right: 60px;
    width: 240px;
    z-index: 0;
    transform: rotate(-76deg);
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --frame-width: 1120px;
  }

  .container-child {
    width: 100%;
  }

  .feature-row,
  .product-grid-4,
  .energy-water,
  .water-grid,
  .sponsoring-grid,
  .contact-grid {
    gap: 32px;
  }

  .feature-card {
    gap: 20px;
  }

  .sponsoring-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 1100px) {
  :root {
    --page-gutter: 20px;
    --section-space: 32px;
    --radius-lg: 52px;
  }

  .site-header {
    padding: 18px 0 12px;
  }

  .logo img {
    width: 108px;
  }

  .nav-list {
    gap: 22px;
    margin-top: 24px;
  }

  .hero-wrap,
  .contact-wrap {
    margin-top: 4px;
  }

  .hero-content {
    padding: 28px 72px;
  }

  .hero-dots {
    gap: 18px;
  }

  .tagline {
    padding-top: 64px;
  }

  .tagline-text {
    max-width: 620px;
    font-size: 2rem;
  }

  .section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .mini-title {
    font-size: 1.8rem;
  }

  .text-cols {
    gap: 32px;
  }

  .feature-row {
    gap: 36px;
  }

  .feature-card {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .energy-copy {
    width: 100%;
  }

  .sponsoring-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-panel {
    max-width: none;
  }

  .contact-panel-2 {
    margin-top: 56px;
    padding: 32px;
  }

  .form-row {
    gap: 32px;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 18px 24px;
  }

  .decor-right-bottom {
    right: 0;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 120px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .feature-row,
  .energy-water,
  .sponsoring-grid,
  .text-cols,
  .form-row {
    grid-template-columns: 1fr;
  }

  .header-bar {
    min-height: 56px;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 10;
    margin-left: 0;
    padding: 18px 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
  }

  .nav-list a {
    min-height: 40px;
    font-size: 1rem;
  }

  .hero-wrap {
    max-width: none;
  }
  .contact-wrap {
    max-width: none;
  }

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

  .water-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero {
    min-height: 420px;
    aspect-ratio: auto;
    border-radius: 36px;
  }

  .hero-content {
    padding: 28px 56px 40px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 8vw, 4.2rem);
  }

  .contact-panel {
    width: auto;
  }

  .feature-row,
  .energy-water,
  .sponsoring-grid {
    gap: 36px;
  }

  .decor {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --page-gutter: 14px;
    --section-space: 26px;
    --radius-xl: 24px;
    --radius-lg: 28px;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .container-child {
    width: 100%;
  }

  .site-header {
    padding: 12px 0;
  }

  body {
    padding-top: 120px;
  }

  .header-bar {
    min-height: 46px;
    gap: 12px;
  }

  .logo img {
    width: 96px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .site-header nav {
    padding: 16px;
    border-radius: 22px;
  }

  .nav-list {
    gap: 8px;
  }

  .nav-list a {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 360px;
    border-radius: 24px;
  }

  .hero-content {
    padding: 24px 44px 34px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-arrow.prev {
    left: 8px;
  }

  .hero-arrow.next {
    right: 8px;
  }

  .hero-arrow::before {
    width: 26px;
    height: 40px;
  }

  .hero-dots {
    bottom: 18px;
    gap: 10px;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-link {
    min-width: 128px;
    min-height: 46px;
    margin-top: 18px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .tagline {
    padding-top: 36px;
  }

  .tagline-text,
  .section-title,
  .mini-title,
  .footer-title,
  .address-block strong {
    line-height: 1.05;
  }

  .product-grid-4,
  .water-grid {
    grid-template-columns: 1fr;
  }

  .text-cols p,
  .sponsoring-text,
  .product-copy p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .feature-image,
  .product-image,
  .wide-image,
  .water-image {
    height: clamp(220px, 62vw, 340px);
  }

  .product-card h3,
  .water-item h3,
  .energy-copy h3,
  .feature-copy h3 {
    margin-top: 18px;
    font-size: 1.35rem;
  }

  .contact-panel-2 {
    margin-top: 36px;
    padding: 24px 18px;
  }

  .contact-panel {
    border-radius: 30px;
  }

  .footer-title {
    margin-bottom: 24px;
  }

  .address-block strong {
    margin: 28px 0 14px;
    font-size: 2rem;
  }

  .social-row {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }

  .send-row {
    justify-content: stretch;
    margin-top: 24px;
  }

  .send-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .site-footer {
    padding: 24px 0 30px;
  }

  .footer-bar,
  .footer-nav {
    gap: 14px;
  }

  .video-lightbox {
    padding: 16px;
  }

  .video-trigger {
    width: 72px;
    height: 72px;
  }


@media (max-width: 480px) {
  .hero {
    min-height: 320px;
  }

  .hero-content {
    padding: 22px 36px 32px;
  }

  .tagline-text {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .mini-title,
  .footer-title {
    font-size: 1.6rem;
  }

  .video-trigger {
    width: 64px;
    height: 64px;
  }

  .video-trigger__icon {
    margin-left: 4px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }
}
  .video-trigger__icon {
    margin-left: 4px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }

  .video-lightbox__close {
    top: -10px;
    right: -2px;
  }

  .video-lightbox__frame-wrap {
    border-radius: 18px;
  }

  .address-block {
    font-size: 1.25rem;
  }

  .address-block strong {
    font-size: 1.8rem;
  }

  .btn,
  .send-btn {
    min-width: 0;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Order pages */
body.order-page {
  --container: 1240px;
  --text: #171717;
  --muted: #68624f;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.09);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.07);
  --radius-xl: 34px;
  --radius-lg: 24px;
}

body.order-page select {
  font: inherit;
}

body.order-page .page-shell {
  min-height: 100vh;
}

body.order-page .container {
  width: min(var(--container), calc(100% - (var(--page-gutter) * 2)));
}

body.order-page .site-header {
  z-index: 10;
  padding: 24px 0 18px;
}

body.order-page .header-bar {
  justify-content: space-between;
}

body.order-page .site-header nav {
  padding-top: 0;
}

body.order-page .nav-list {
  gap: 30px;
  margin: 0;
}

body.order-page .nav-list a {
  min-height: 34px;
  justify-content: flex-start;
}

body.order-page .nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

body.order-page .page-hero {
  padding: 20px 0 28px;
}

body.order-page .hero-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(245, 189, 0, 0.16), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: var(--shadow);
}

body.order-page .hero-card::before,
body.order-page .hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(245, 189, 0, 0.16);
  pointer-events: none;
}

body.order-page .hero-card::before {
  top: -60px;
  right: -80px;
  width: 260px;
  height: 260px;
}

body.order-page .hero-card::after {
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
}

body.order-page .hero-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #7a5a00;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.order-page .hero-card h1 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 18px 0 16px;
  color: var(--brand);
  font-family: var(--title-font);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
}

body.order-page .hero-card p {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.order-page .order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.9fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 56px;
}

body.order-page .catalog-card,
body.order-page .summary-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

body.order-page .catalog-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
}

body.order-page .catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

body.order-page .catalog-head h2,
body.order-page .summary-card h2 {
  margin: 0;
  color: var(--brand);
  font-family: var(--title-font);
  font-size: 2rem;
  line-height: 1;
}

body.order-page .catalog-head p,
body.order-page .summary-note,
body.order-page .summary-mail-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

body.order-page .catalog-groups {
  display: grid;
  gap: 20px;
  padding-top: 20px;
}

body.order-page .category-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
}

body.order-page .category-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

body.order-page .category-filter:hover,
body.order-page .category-filter:focus-visible {
  border-color: rgba(245, 189, 0, 0.5);
  color: #8a6700;
  transform: translateY(-1px);
}

body.order-page .category-filter.is-active {
  background: rgba(245, 189, 0, 0.16);
  border-color: rgba(245, 189, 0, 0.6);
  color: #8a6700;
}

body.order-page .product-group {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: #fcfbf7;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

body.order-page .product-group h3 {
  margin: 0 0 14px;
  color: var(--text);
  font-family: var(--title-font);
  font-size: 1.2rem;
}

body.order-page .product-list {
  display: grid;
  gap: 12px;
}

body.order-page .product-row {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) 132px 132px 132px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.order-page .product-info h4 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

body.order-page .product-meta {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

body.order-page .product-field {
  display: grid;
  gap: 5px;
}

body.order-page .quantity-stepper {
  display: grid;
  grid-template-columns: 34px minmax(56px, 1fr) 34px;
  align-items: stretch;
}

body.order-page .quantity-stepper__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff9e9;
  color: #8a6700;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.order-page .quantity-stepper__button:hover,
body.order-page .quantity-stepper__button:focus-visible {
  background: rgba(245, 189, 0, 0.2);
}

body.order-page .quantity-stepper__button:first-child {
  border-right: 0;
  border-radius: 14px 0 0 14px;
}

body.order-page .quantity-stepper__button:last-child {
  border-left: 0;
  border-radius: 0 14px 14px 0;
}

body.order-page .product-field span,
body.order-page .price-box span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.order-page .product-field input,
body.order-page .product-field select,
body.order-page .order-form input,
body.order-page .order-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 10px 12px;
}

body.order-page .quantity-stepper input {
  appearance: textfield;
  border-radius: 0;
  text-align: center;
  color: #171717;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  padding: 10px 6px;
  -moz-appearance: textfield;
}

body.order-page .quantity-stepper input::-webkit-outer-spin-button,
body.order-page .quantity-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

body.order-page .product-field input:focus,
body.order-page .product-field select:focus,
body.order-page .order-form input:focus,
body.order-page .order-form textarea:focus {
  outline: 2px solid rgba(255, 255, 255, 0.4);
  border-color: rgba(0, 0, 0, 0.18);
}

body.order-page .price-box {
  display: grid;
  gap: 3px;
}

body.order-page .price-box strong,
body.order-page .summary-total strong {
  font-family: var(--title-font);
  font-size: 1.05rem;
}

body.order-page .price-box small {
  color: var(--muted);
  font-size: 0.75rem;
}

body.order-page .summary-column {
  position: sticky;
  top: 28px;
}

body.order-page .summary-mobile-overlay,
body.order-page .mobile-summary-toggle,
body.order-page .summary-mobile-bar {
  display: none;
}

body.order-page .summary-card {
  overflow: hidden;
  overflow-y: auto;
  padding: 24px;
  background: linear-gradient(180deg, #f5bd00 0%, #edb000 100%);
  color: #241900;
  scrollbar-width: thin;
  scrollbar-color: rgba(138, 103, 0, 0.55) rgba(255, 255, 255, 0.18);
}

body.order-page .summary-card::-webkit-scrollbar {
  width: 10px;
}

body.order-page .summary-card::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

body.order-page .summary-card::-webkit-scrollbar-thumb {
  background: rgba(138, 103, 0, 0.55);
  border-radius: 999px;
}

body.order-page .summary-card h2 {
  color: #ffffff;
}

body.order-page .summary-mobile-bar {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

body.order-page .summary-mobile-bar p {
  margin: 0;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.order-page .summary-mobile-close {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

body.order-page .summary-note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
}

body.order-page .summary-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

body.order-page .summary-empty {
  color: rgba(36, 25, 0, 0.8);
  font-size: 0.94rem;
}

body.order-page .summary-list {
  display: grid;
  gap: 12px;
}

body.order-page .summary-item {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(36, 25, 0, 0.12);
}

body.order-page .summary-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.order-page .summary-item strong {
  font-size: 0.95rem;
}

body.order-page .summary-item span {
  font-size: 0.82rem;
}

body.order-page .summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 25, 0, 0.14);
}

body.order-page .summary-total span {
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.order-page .order-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

body.order-page .order-form label {
  display: grid;
  gap: 7px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
}

body.order-page .order-form input,
body.order-page .order-form textarea {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.96);
}

body.order-page .order-form textarea {
  min-height: 110px;
  resize: vertical;
}

body.order-page .order-form__acceptance {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  line-height: 1.5;
}

body.order-page .order-form__acceptance input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

body.order-page .order-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #8a6700;
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.order-page .order-submit:hover,
body.order-page .order-submit:focus-visible {
  transform: translateY(-1px);
}

body.order-page .order-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

body.order-page .summary-mail-note {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
}

body.order-page .summary-form-shell {
  margin-top: 24px;
}

body.order-page .mobile-summary-toggle {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 45;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 58px;
  padding: 14px 18px;
  border: 0;
  border-radius: 999px;
  background: #f5bd00;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  color: #241900;
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 700;
}

body.order-page .mobile-summary-toggle__total {
  color: #241900;
}

body.order-page .mobile-summary-toggle__label {
  color: #241900;
}

body.order-page .foundi-cf7 .wpcf7,
body.order-page .foundi-cf7 form,
.foundi-cf7 .wpcf7,
.foundi-cf7 form {
  display: grid;
  gap: 14px;
}

body.order-page .foundi-cf7 label,
.foundi-cf7--contact label {
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 700;
}

body.order-page .foundi-cf7 label {
  color: #ffffff;
}

.foundi-cf7--contact label {
  color: #fff6d5;
}

body.order-page .foundi-cf7 input:not([type="checkbox"]):not([type="submit"]),
body.order-page .foundi-cf7 textarea,
body.order-page .foundi-cf7 select,
.foundi-cf7--contact input:not([type="checkbox"]):not([type="submit"]),
.foundi-cf7--contact textarea,
.foundi-cf7--contact select {
  width: 100%;
  border: 0;
  outline: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  padding: 14px 18px;
}

body.order-page .foundi-cf7 textarea,
.foundi-cf7--contact textarea {
  min-height: 120px;
  resize: vertical;
}

body.order-page .foundi-cf7 input[type="submit"],
.foundi-cf7--contact input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #8a6700;
  font-family: var(--title-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.foundi-cf7--contact input[type="submit"] {
  background: #fff2c6;
  color: #c18b00;
  min-width: 205px;
  min-height: 59px;
}

body.order-page .foundi-cf7 .wpcf7-spinner,
.foundi-cf7--contact .wpcf7-spinner {
  margin: 0;
}

body.order-page .foundi-cf7 .wpcf7-response-output,
.foundi-cf7--contact .wpcf7-response-output {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
  font-size: 0.88rem;
}

body.order-page .foundi-form-placeholder,
.foundi-cf7--contact .foundi-form-placeholder {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: inherit;
}

body.order-page .foundi-form-placeholder p,
.foundi-cf7--contact .foundi-form-placeholder p {
  margin: 0 0 10px;
}

body.order-page .foundi-form-placeholder p:last-child,
.foundi-cf7--contact .foundi-form-placeholder p:last-child {
  margin-bottom: 0;
}

body.order-page .order-page-content {
  padding-bottom: 56px;
}

body.order-page .site-footer {
  padding: 0 0 34px;
}

body.order-page .footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
  font-size: 0.84rem;
}

body.order-page .footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
}

body.order-page .footer-nav a {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 1100px) {
  body.order-page .order-layout {
    grid-template-columns: 1fr;
  }

  body.order-page .summary-column {
    position: static;
  }

  body.order-page .product-row {
    grid-template-columns: minmax(0, 1.7fr) 126px 126px 126px;
  }
}

@media (max-width: 900px) {
  body.order-page {
    padding-top: 92px;
  }

  body.order-page .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  body.order-page .header-bar {
    min-height: 54px;
    gap: 14px;
  }

  body.order-page .nav-toggle {
    display: inline-flex;
  }

  body.order-page .site-header nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  body.order-page .site-header nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.order-page .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  body.order-page .hero-card {
    padding: 34px 28px;
  }

  body.order-page .catalog-card,
  body.order-page .summary-card {
    padding: 24px;
  }

  body.order-page .summary-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 44;
    display: block;
    background: rgba(12, 10, 5, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.order-page .summary-mobile-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  body.order-page .summary-column {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 46;
    padding: 0 10px 10px;
    transform: translateY(calc(100% + 12px));
    transition: transform 0.24s ease;
    pointer-events: none;
  }

  body.order-page .summary-column.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  body.order-page .summary-card {
    max-height: min(84vh, 760px);
    overflow: hidden;
    overflow-y: auto;
    border-radius: 28px 28px 0 0;
    padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
  }

  body.order-page .summary-mobile-bar,
  body.order-page .mobile-summary-toggle {
    display: flex;
  }

  body.order-page .catalog-head {
    flex-direction: column;
    align-items: flex-start;
  }

  body.order-page .product-row {
    grid-template-columns: minmax(0, 1fr) repeat(3, minmax(0, 1fr));
  }

  body.order-page .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  body.order-page .footer-nav {
    justify-content: flex-start;
  }

  body.order-page .order-page-content {
    padding-bottom: 136px;
  }

  body.order-page.summary-panel-open {
    overflow: hidden;
  }

  body.order-page .foundi-cf7 .wpcf7-form-control-wrap,
  body.order-page .foundi-cf7 label,
  body.order-page .foundi-cf7 p {
    min-width: 0;
  }

  body.order-page .foundi-cf7 input:not([type="checkbox"]):not([type="submit"]),
  body.order-page .foundi-cf7 textarea,
  body.order-page .foundi-cf7 select {
    padding: 13px 15px;
  }
}

@media (max-width: 720px) {
  body.order-page {
    --page-gutter: 14px;
    --radius-xl: 24px;
    --radius-lg: 18px;
    padding-top: 84px;
  }

  body.order-page .logo img {
    width: 96px;
  }

  body.order-page .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  body.order-page .page-hero {
    padding-top: 8px;
  }

  body.order-page .hero-card {
    padding: 28px 20px;
  }

  body.order-page .hero-card h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  body.order-page .hero-card p {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  body.order-page .catalog-card {
    padding: 20px 16px;
  }

  body.order-page .product-group {
    padding: 16px;
  }

  body.order-page .product-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }

  body.order-page .product-field,
  body.order-page .price-box {
    width: 100%;
  }

  body.order-page .product-field select,
  body.order-page .product-field input,
  body.order-page .price-box {
    min-width: 0;
  }

  body.order-page .price-box {
    padding-top: 4px;
  }

  body.order-page .category-filter-bar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    flex-wrap: wrap;
    padding-bottom: 4px;
  }

  body.order-page .category-filter {
    flex: 0 0 auto;
  }

  body.order-page .summary-card h2,
  body.order-page .catalog-head h2 {
    font-size: 1.7rem;
  }

  body.order-page .summary-card {
    padding: 18px 16px calc(22px + env(safe-area-inset-bottom));
  }

  body.order-page .summary-box {
    padding: 16px;
  }

  body.order-page .mobile-summary-toggle {
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 56px;
    padding: 12px 16px;
    font-size: 0.96rem;
  }

  body.order-page .order-submit {
    width: 100%;
  }
}

/* Legal pages */
body.legal-page .legal-layout {
  padding-bottom: 56px;
}

body.legal-page .legal-hero {
  padding-bottom: 18px;
}

body.legal-page .legal-card {
  margin-bottom: 18px;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

body.legal-page .legal-card h2 {
  margin: 0 0 14px;
  color: var(--brand);
  font-family: var(--title-font);
  font-size: 1.6rem;
  line-height: 1;
}

body.legal-page .legal-card p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.7;
}

body.legal-page .legal-card p:last-child {
  margin-bottom: 0;
}

body.legal-page .legal-card strong {
  color: #7a5a00;
}

@media (max-width: 720px) {
  body.legal-page .legal-card {
    padding: 20px 18px;
    border-radius: 18px;
  }

  body.legal-page .legal-card h2 {
    font-size: 1.35rem;
  }

  body.legal-page .legal-card p {
    font-size: 0.92rem;
  }
}
