﻿:root {
  --brand-red: #c63630;
  --brand-blue: #265299;
  --brand-yellow: #f6d716;
  --ink: #102844;
  --ink-soft: #3f5a7b;
  --line: #c8d7ea;
  --line-strong: #9bb5d8;
  --radius-sm: 0.85rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.6rem;
  --shadow-soft: 0 14px 30px rgba(12, 35, 62, 0.12);
  --shadow-card: 0 14px 28px rgba(12, 35, 62, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #f5f9ff;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section-space {
  padding-block: clamp(2.8rem, 6vw, 4.6rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--ink);
  z-index: 2000;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1300;
  padding-block: 0.2rem;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 3px solid rgba(38, 82, 153, 0.22);
  box-shadow: 0 6px 16px rgba(15, 40, 70, 0.08);
  backdrop-filter: blur(10px);
}

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

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.32rem;
}

.brand-logo {
  width: clamp(212px, 26vw, 312px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(17, 44, 75, 0.2));
}

main {
  padding-top: 0.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: var(--brand-blue);
  padding: 0.55rem 0.68rem;
  border-radius: 0.7rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(198, 54, 48, 0.13);
  color: var(--brand-red);
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
}

.lang-label {
  font-weight: 800;
  color: var(--brand-blue);
}

.language-flags {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lang-flag {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-blue);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.34rem 0.58rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.flag-icon {
  width: 1.15rem;
  height: 0.8rem;
  border-radius: 0.14rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
}

.flag-es {
  background-image: linear-gradient(to bottom, #c60b1e 0 25%, #ffc400 25% 75%, #c60b1e 75% 100%);
}

.flag-en {
  background-image:
    linear-gradient(#3c3b6e, #3c3b6e),
    repeating-linear-gradient(to bottom, #b22234 0 10%, #ffffff 10% 20%);
  background-size: 45% 58%, 100% 100%;
  background-position: left top, center;
}

.lang-flag:hover,
.lang-flag:focus-visible {
  background: rgba(246, 215, 22, 0.28);
  border-color: var(--brand-yellow);
}

.lang-flag.is-active {
  background: rgba(38, 82, 153, 0.16);
  border-color: var(--brand-blue);
}

.flag-code {
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  border-radius: 0.8rem;
  background: #ffffff;
  width: 44px;
  height: 44px;
  padding: 0.55rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--brand-blue);
  margin-block: 0.28rem;
}

h1,
h2,
h3 {
  font-family: "Bree Serif", serif;
  line-height: 1.18;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.95rem, 4.4vw, 2.95rem);
  margin-bottom: 0.8rem;
}

.section-head h2,
.section-copy h2,
.contact-info h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0.82rem;
  color: var(--brand-blue);
}

.section-head h2::after,
.section-copy h2::after,
.contact-info h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 0.36rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-yellow));
}

.section-head p,
.section-copy p,
.section-intro {
  color: var(--ink-soft);
}

.hero,
.about,
.products,
.gallery,
.sustainability,
.contact {
  width: 100%;
  border-top: 1px solid rgba(38, 82, 153, 0.12);
  border-bottom: 1px solid rgba(38, 82, 153, 0.1);
}

.hero {
  border-top: 0;
  background:
    radial-gradient(circle at 9% 5%, rgba(198, 54, 48, 0.18), transparent 32%),
    radial-gradient(circle at 95% 15%, rgba(246, 215, 22, 0.18), transparent 36%),
    linear-gradient(180deg, #f8fbff, #eff5ff);
}

.about {
  background: #ffffff;
}

.products {
  background: linear-gradient(180deg, #fffdf2, #fffaf0);
}

.gallery {
  background: #f7fbff;
}

.contact {
  background: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1rem, 2.8vw, 2rem);
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-flex;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, var(--brand-blue), #2f65bb);
}

.hero-lead {
  margin: 0 0 1.3rem;
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.cta-group {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding-inline: 1.2rem;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-red);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(198, 54, 48, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #b62f2a;
}

.btn-outline {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  background: rgba(38, 82, 153, 0.08);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(246, 215, 22, 0.32);
}

.btn-block {
  width: 100%;
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stats li {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-left: 5px solid var(--brand-red);
  border-radius: var(--radius-md);
  padding: 0.72rem 0.75rem;
  box-shadow: 0 7px 14px rgba(22, 52, 90, 0.12);
}

.hero-stats strong {
  display: block;
  color: var(--brand-blue);
  font-size: 1.35rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.32rem;
  color: var(--ink-soft);
}

.hero-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  min-height: 100%;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  min-height: 405px;
  object-fit: cover;
}

.js-carousel .carousel-track {
  position: relative;
  height: 100%;
}

.js-carousel .carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.45s ease;
  object-fit: cover;
}

.js-carousel .carousel-slide.is-active {
  opacity: 1;
}

.hero-carousel .carousel-track {
  position: relative;
  min-height: 405px;
  height: 100%;
}

.carousel-controls {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding-inline: 0.55rem;
  z-index: 3;
}

.carousel-btn {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(16, 40, 68, 0.55);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(16, 40, 68, 0.8);
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.65rem;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.carousel-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--brand-yellow);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.1rem, 3vw, 1.9rem);
  align-items: center;
}

.about-carousel {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.about-carousel .carousel-track {
  aspect-ratio: 4 / 3;
}

.section-intro {
  font-weight: 700;
  margin-bottom: 0.95rem;
}

.about-group-note {
  margin: 0 0 1rem;
  padding: 0.72rem 0.82rem;
  border-left: 4px solid var(--brand-yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(90deg, rgba(38, 82, 153, 0.08), rgba(38, 82, 153, 0.02));
  color: var(--ink-soft);
}

.about-group-note a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.about-group-note a:hover,
.about-group-note a:focus-visible {
  color: var(--brand-red);
  text-decoration: underline;
}

.about-group-url {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: 0.92em;
}

.about-list,
.spec-list,
.contact-list,
.sustainability-list {
  margin: 0;
  padding-left: 1.1rem;
}

.about-list li,
.spec-list li,
.contact-list li,
.sustainability-list li {
  margin-bottom: 0.35rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-top: 6px solid var(--brand-yellow);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 1rem;
}

.product-content h3 {
  margin-bottom: 0.48rem;
  color: var(--brand-blue);
}

.product-content p {
  margin-top: 0;
  margin-bottom: 0.76rem;
  color: var(--ink-soft);
}

.product-specs {
  margin-top: 1.35rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-strong);
  border-top: 6px solid var(--brand-red);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.product-specs .section-head {
  margin-bottom: 0.9rem;
}

.product-specs .section-head h3 {
  margin-bottom: 0.55rem;
  color: var(--brand-blue);
}

.product-specs .section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.product-specs-table-wrap {
  overflow-x: auto;
}

.product-specs-table {
  min-width: 760px;
}

.product-specs-table th {
  background: #f2f6ff;
  color: var(--brand-blue);
}

.product-specs-table thead th:nth-child(n + 2) {
  text-align: center;
}

.product-specs-table tbody th {
  background: #fcfdff;
  font-weight: 700;
  width: 36%;
}

.product-specs-table td {
  text-align: center;
  font-weight: 600;
}

.product-specs-table td:last-child {
  text-align: left;
  font-weight: 700;
}

.product-specs-notes {
  margin: 0.72rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.product-specs-notes li {
  margin-bottom: 0.35rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  cursor: zoom-in;
}

.sustainability {
  background: linear-gradient(130deg, #1f4580, #265299 58%, #1c3b70);
  color: #ffffff;
}

.sustainability .section-head h2,
.sustainability .section-head p {
  color: #ffffff;
}

.sustainability .section-head h2::after {
  background: linear-gradient(90deg, var(--brand-yellow), #ffd74c);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.commitment-card {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.commitment-card h3 {
  margin-bottom: 0.42rem;
  color: var(--brand-yellow);
}

.commitment-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.sustainability-extended {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sustainability-block {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
}

.sustainability-block h3 {
  margin-bottom: 0.56rem;
  color: #ffffff;
}

.sustainability-block p,
.sustainability-list {
  color: rgba(255, 255, 255, 0.93);
}

.sustainability-metrics {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.sustainability-metrics li {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
}

.sustainability-metrics strong {
  display: block;
  font-size: 1.45rem;
  color: var(--brand-yellow);
  line-height: 1;
}

.sustainability-metrics span {
  display: block;
  margin-top: 0.36rem;
  font-size: 0.84rem;
}

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

.contact-info {
  grid-column: 1 / 2;
  grid-row: 1;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.contact-map {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-top: 0;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  height: auto;
  display: flex;
  flex-direction: column;
}

.contact-map h3 {
  margin: 0 0 0.38rem;
  color: var(--brand-blue);
}

.contact-map p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-map-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 30vw, 420px);
  border: 0;
}

.contact-map-link {
  display: inline-flex;
  margin-top: 0.58rem;
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.contact-map-link:hover,
.contact-map-link:focus-visible {
  color: var(--brand-red);
  text-decoration: underline;
}

.contact-form {
  grid-column: 2 / 3;
  grid-row: 1;
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 0.9rem;
  max-width: 100%;
  margin-inline: 0;
}

.field {
  margin-bottom: 0;
}

.contact-form .field.field-full,
.contact-form .btn-block,
.contact-form .form-note,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.24rem;
  color: var(--brand-blue);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #bacce4;
  border-radius: 0.75rem;
  padding: 0.72rem 0.82rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fdfefe;
}

.field textarea {
  resize: vertical;
  min-height: 108px;
}

.field input:focus,
.field textarea:focus,
.lang-flag:focus,
.menu-toggle:focus,
.cookie-policy-close:focus,
.awards-modal-close:focus {
  outline: 2px solid rgba(38, 82, 153, 0.5);
  outline-offset: 2px;
}

.form-note {
  margin-top: 0.72rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.form-status {
  min-height: 1.15rem;
  margin: 0.32rem 0 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  z-index: 1320;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 2px solid rgba(38, 82, 153, 0.24);
  box-shadow: var(--shadow-card);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1 1 280px;
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-link {
  align-self: center;
  font-weight: 800;
  color: var(--brand-blue);
  text-decoration: none;
}

.cookie-link:hover,
.cookie-link:focus-visible {
  text-decoration: underline;
}

.cookie-policy-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 24, 46, 0.68);
}

.cookie-policy-card {
  width: min(940px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  background: #ffffff;
  border: 2px solid rgba(38, 82, 153, 0.35);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  box-shadow: var(--shadow-card);
}

.cookie-policy-close {
  margin-left: auto;
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-blue);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

.cookie-policy-close:hover,
.cookie-policy-close:focus-visible {
  background: rgba(246, 215, 22, 0.32);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 24, 46, 0.72);
}

.gallery-modal-card {
  position: relative;
  width: min(1040px, 96vw);
  max-height: 90vh;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 2px solid rgba(38, 82, 153, 0.32);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-blue);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.83rem;
  padding: 0.38rem 0.75rem;
  cursor: pointer;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus-visible {
  background: rgba(246, 215, 22, 0.32);
}

#gallery-modal-image {
  max-width: 100%;
  max-height: calc(90vh - 1.6rem);
  width: auto;
  height: auto;
  border-radius: 0.45rem;
  object-fit: contain;
}

.awards-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: clamp(0.42rem, 1.2vw, 0.95rem);
  background:
    radial-gradient(circle at 15% 10%, rgba(246, 215, 22, 0.2), transparent 42%),
    radial-gradient(circle at 88% 80%, rgba(198, 54, 48, 0.24), transparent 44%),
    linear-gradient(140deg, rgba(9, 23, 43, 0.96), rgba(16, 35, 63, 0.95) 56%, rgba(29, 57, 98, 0.94));
}

.awards-modal-card {
  width: min(640px, 92vw);
  max-height: calc(100dvh - 1.2rem);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: auto;
  padding: clamp(0.85rem, 2.3vw, 1.2rem);
  border: 2px solid rgba(246, 215, 22, 0.65);
  background:
    linear-gradient(145deg, rgba(20, 44, 78, 0.95), rgba(16, 33, 58, 0.95)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.awards-modal-kicker {
  margin: 0 auto 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.2rem 0.78rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.73rem;
  text-transform: uppercase;
  color: #102844;
  background: linear-gradient(90deg, #ffe06f, #f6d716);
}

.awards-modal-card h2 {
  margin-bottom: 0.04rem;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.9vw, 1.34rem);
  text-wrap: balance;
  padding-inline: 2rem;
}

.awards-modal-figure {
  margin: 0 auto;
  width: min(100%, 460px);
  aspect-ratio: 768 / 952;
  max-height: min(56dvh, 575px);
  display: grid;
  place-items: center;
  padding: 0.42rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(246, 215, 22, 0.85);
  background:
    radial-gradient(circle at 25% 15%, rgba(246, 215, 22, 0.18), transparent 45%),
    linear-gradient(145deg, rgba(9, 23, 43, 0.94), rgba(17, 38, 68, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(246, 215, 22, 0.34),
    0 18px 30px rgba(0, 0, 0, 0.35);
}

.awards-modal-figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-md) - 0.35rem);
  background: #081a32;
  filter: saturate(1.05) contrast(1.03);
}

.awards-modal-text {
  width: min(100%, 460px);
  margin: 0.08rem 0 0;
  font-size: clamp(0.84rem, 1.15vw, 0.94rem);
  font-weight: 600;
  line-height: 1.34;
  color: #fff4b3;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  text-align: center;
  margin-inline: auto;
}

.awards-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(8, 20, 37, 0.55);
  color: #ffffff;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.38rem 0.76rem;
  cursor: pointer;
}

.awards-modal-close:hover,
.awards-modal-close:focus-visible {
  border-color: rgba(246, 215, 22, 0.9);
  background: rgba(246, 215, 22, 0.2);
}

.cookies-table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

th,
td {
  text-align: left;
  border: 1px solid var(--line);
  padding: 0.72rem;
  vertical-align: top;
}

th {
  background: #f0f4fb;
  font-weight: 800;
}

.policy-update {
  margin-top: 0.72rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.is-hidden {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  background: linear-gradient(160deg, #173664, #265299 68%, #2f5da5);
  color: #f6f9ff;
  border-top: 6px solid var(--brand-red);
  padding-top: 1.65rem;
  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr;
  gap: 1.25rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  width: clamp(212px, 26vw, 312px);
  height: auto;
  max-height: 92px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: var(--brand-yellow);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-links li,
.footer-links a {
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-yellow);
  text-decoration: underline;
}

.footer-contact-links strong {
  color: var(--brand-yellow);
}

.footer-contact-links li {
  word-break: break-word;
}

.contact-phone-multi {
  display: block;
  margin-top: 0.12rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--brand-yellow);
  text-decoration: none;
  font-weight: 800;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1060px) {
  .products-grid,
  .sustainability-grid,
  .sustainability-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid,
  .sustainability-extended {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form,
  .contact-map {
    grid-column: 1;
    grid-row: auto;
    height: auto;
  }

  .contact-map-frame iframe {
    height: clamp(230px, 48vw, 320px);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 112px;
    right: 0;
    width: min(360px, 86vw);
    height: calc(100dvh - 112px);
    background: #ffffff;
    border-left: 2px solid rgba(38, 82, 153, 0.2);
    padding: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    transform: translateX(102%);
    transition: transform 0.25s ease;
    box-shadow: -10px 0 30px rgba(14, 35, 60, 0.2);
  }

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

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a {
    display: block;
  }

  .header-controls {
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
  }

  .language-flags {
    width: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  .hero-carousel .carousel-track {
    min-height: 330px;
    max-height: 440px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-form .field.field-full,
  .contact-form .btn-block,
  .contact-form .form-note,
  .contact-form .form-status {
    grid-column: 1;
  }
}

@media (max-width: 680px) {
  .hero-stats,
  .products-grid,
  .sustainability-grid,
  .sustainability-metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-group .btn,
  .cookie-actions .btn {
    flex: 1 1 180px;
  }

  .cookie-banner {
    inset-inline: 0.55rem;
    bottom: 0.55rem;
  }

  .awards-modal-card {
    width: min(560px, 94vw);
    max-height: calc(100dvh - 0.75rem);
    padding: 0.82rem;
  }

  .awards-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.76rem;
    padding: 0.33rem 0.66rem;
  }

  .awards-modal-text {
    width: min(100%, 380px);
    font-size: 0.84rem;
    margin-top: 0.08rem;
  }

  .awards-modal-card h2 {
    padding-inline: 1.8rem;
  }

  .awards-modal-figure {
    width: min(100%, 380px);
    max-height: min(50dvh, 470px);
  }

  .brand {
    max-width: 62vw;
  }

  .brand-logo {
    width: clamp(188px, 59vw, 262px);
    max-height: 78px;
  }

  .footer-logo {
    width: clamp(188px, 59vw, 262px);
    max-height: 78px;
  }

  .product-specs {
    padding: 0.8rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
