:root {
  --bg: #fbfcfb;
  --bg-soft: #f6f8f8;
  --surface: #ffffff;
  --surface-soft: #f7faf9;
  --surface-soft-strong: #eef3f2;
  --text: #0f2527;
  --muted: #587174;
  --line: rgba(15, 37, 39, 0.08);
  --line-strong: rgba(15, 37, 39, 0.14);
  --teal: #0f383b;
  --teal-deep: #091d1f;
  --teal-soft: #127980;
  --accent: #f4d28c;
  --shadow: 0 24px 60px rgba(15, 37, 39, 0.08);
  --shadow-soft: 0 16px 38px rgba(15, 37, 39, 0.06);
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 40px;
  --shell: min(1220px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 121, 128, 0.03), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(15, 56, 59, 0.025), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 46%, #ffffff 100%);
  font: 400 16px/1.65 "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 14% 0%, rgba(15, 56, 59, 0.035), transparent 26rem);
  opacity: 1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

p,
ul,
ol,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
}

h3 {
  font-size: clamp(1.16rem, 1.5vw, 1.45rem);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 120;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 1.15rem 0 0;
  transition: padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 0.6rem;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.4rem;
  padding: 0.85rem 1.05rem 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 37, 39, 0.06);
  border-radius: 999px;
  box-shadow: 0 20px 44px rgba(15, 37, 39, 0.07);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 18px 36px rgba(15, 37, 39, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.site-header .brand__copy small {
  display: none;
}

.brand,
.brand--footer {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.26), transparent 40%),
    linear-gradient(160deg, var(--teal-soft) 0%, var(--teal) 56%, var(--teal-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 24px rgba(15, 56, 59, 0.18);
  overflow: hidden;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.brand__mark::before {
  inset: 0.7rem auto auto 0.72rem;
  width: 1.65rem;
  height: 0.34rem;
  box-shadow: 0 0.72rem 0 rgba(255, 255, 255, 0.72);
}

.brand__mark::after {
  inset: 0.7rem 0.72rem auto auto;
  width: 0.38rem;
  height: 1.82rem;
}

.brand__copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.brand__copy strong {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  gap: 0.34rem;
  width: 3.2rem;
  height: 3.2rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--teal);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav {
  display: none;
}

.no-js .nav-toggle {
  display: none;
}

.no-js .site-nav {
  display: block;
}

.nav-list,
.nav-actions,
.lang-switch,
.hero-actions,
.hero-badges,
.footer-links,
.material-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.nav-list {
  align-items: center;
  gap: 0.3rem;
}

.lang-switch {
  align-items: center;
  padding: 0.2rem;
  border: 1px solid rgba(15, 37, 39, 0.06);
  border-radius: 999px;
  background: var(--surface-soft);
}

.nav-link,
.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-link {
  min-width: 2.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-link:hover,
.lang-link:hover {
  color: var(--teal);
  background: rgba(15, 56, 59, 0.06);
}

.nav-link.is-active,
.lang-link.is-active {
  color: var(--teal);
  background: rgba(15, 56, 59, 0.09);
  box-shadow: inset 0 0 0 1px rgba(15, 56, 59, 0.08);
}

.nav-actions {
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.header-contact {
  color: var(--teal);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.78rem;
  min-height: 3.35rem;
  padding: 0.82rem 0.92rem 0.82rem 1.28rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn__label {
  white-space: nowrap;
}

.btn__icon {
  position: relative;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.btn__icon::before,
.btn__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn__icon::before {
  left: 0.56rem;
  width: 0.62rem;
  height: 2px;
  background: currentColor;
}

.btn__icon::after {
  right: 0.54rem;
  width: 0.38rem;
  height: 0.38rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, #145055 100%);
  box-shadow: 0 18px 30px rgba(15, 56, 59, 0.2);
}

.btn--primary .btn__icon {
  background: rgba(255, 255, 255, 0.14);
}

.btn--primary:hover {
  box-shadow: 0 22px 34px rgba(15, 56, 59, 0.24);
}

.btn--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.btn--secondary .btn__icon {
  background: rgba(255, 255, 255, 0.14);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--compact {
  min-height: 2.8rem;
  padding: 0.54rem 0.72rem 0.54rem 1rem;
}

.btn--compact .btn__icon {
  width: 1.75rem;
  height: 1.75rem;
}

.btn--compact .btn__icon::before {
  left: 0.48rem;
  width: 0.54rem;
}

.btn--compact .btn__icon::after {
  right: 0.48rem;
  width: 0.32rem;
  height: 0.32rem;
}

.hero {
  padding: 1rem 0 4.2rem;
}

.hero-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-panel,
.hero-media {
  position: relative;
  min-width: 0;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(15, 37, 39, 0.06);
}

.hero-panel {
  display: grid;
  align-content: start;
  gap: 1.45rem;
  min-height: 40rem;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top left, rgba(18, 121, 128, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: 0 24px 60px rgba(15, 37, 39, 0.07);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 38%),
    radial-gradient(circle at 90% 0%, rgba(15, 56, 59, 0.04), transparent 18rem);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--teal-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.15rem;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.eyebrow--light {
  color: var(--teal-soft);
}

.hero-panel h1,
.cta-band h2 {
  color: #fff;
}

.hero-panel h1 {
  color: var(--text);
}

.hero-lead,
.hero-floating-card p,
.section-heading p,
.showcase-card__body p,
.highlight-card__body p,
.process-item p,
.sector-card p,
.story-card p,
.value-card p,
.mode-card p,
.machine-card__body p,
.contact-card p,
.footer-note,
.faq-item p,
.cta-band p {
  color: var(--muted);
}

.hero-lead {
  max-width: 35rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-badges li {
  padding: 0.64rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 37, 39, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  box-shadow: 0 10px 24px rgba(15, 37, 39, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: auto;
}

.hero-stat {
  padding: 1rem 1rem 1.08rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 37, 39, 0.08);
  box-shadow: 0 12px 30px rgba(15, 37, 39, 0.05);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-media {
  min-height: 40rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 18rem),
    linear-gradient(180deg, #f3f6f6 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(15, 37, 39, 0.08);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero-media::before {
  top: -4rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 37, 39, 0.04);
}

.hero-media::after {
  right: 2.4rem;
  bottom: 2.1rem;
  width: 10rem;
  height: 10rem;
  background: rgba(15, 56, 59, 0.05);
}

.hero-photo {
  position: absolute;
  inset: 1.3rem;
  width: auto;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 37, 39, 0.12);
  z-index: 1;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 26, 0.04) 36%, rgba(8, 24, 26, 0.34) 100%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hero-media:hover .hero-photo img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  left: 2.15rem;
  bottom: 2.15rem;
  right: auto;
  top: auto;
  max-width: 17rem;
  padding: 1.1rem 1.1rem 1.15rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 38px rgba(15, 37, 39, 0.12);
  backdrop-filter: blur(18px);
  z-index: 3;
}

.hero-floating-card p {
  margin-top: 0.5rem;
  color: var(--text);
}

.hero-floating-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(15, 37, 39, 0.08);
}

.hero-floating-list li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-floating-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--teal-soft);
}

.hero .btn--secondary {
  color: var(--teal);
  border-color: rgba(15, 37, 39, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.hero .btn--secondary .btn__icon {
  background: rgba(15, 56, 59, 0.08);
}

.section {
  padding: clamp(3.2rem, 7vw, 5.6rem) 0;
}

.section--tight {
  padding-top: clamp(1.1rem, 3vw, 2.2rem);
}

.section--soft {
  background: linear-gradient(180deg, rgba(14, 43, 46, 0.03), rgba(255, 255, 255, 0.98));
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
  margin-bottom: 1.7rem;
}

.capability-shell,
.showcase-shell,
.feature-shell,
.process-shell,
.sector-shell,
.value-grid,
.mode-grid,
.machine-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.capability-head,
.showcase-copy,
.feature-copy,
.workflow-copy,
.sector-copy {
  display: grid;
  gap: 1rem;
}

.capability-head {
  max-width: 42rem;
}

.capability-grid,
.sector-grid,
.value-grid,
.mode-grid,
.machine-grid,
.contact-grid,
.highlight-grid {
  display: grid;
  gap: 1rem;
}

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

.capability-card,
.process-item,
.sector-card,
.story-card,
.value-card,
.mode-card,
.machine-card,
.contact-card,
.cta-band,
.photo-panel,
.family-intro,
.error-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 37, 39, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.capability-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 37, 39, 0.1);
  border-color: rgba(15, 56, 59, 0.14);
}

.capability-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--surface-soft-strong);
  color: var(--teal);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.showcase-copy,
.feature-copy {
  max-width: 30rem;
}

.showcase-copy__actions,
.feature-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.showcase-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 11.5rem;
}

.showcase-card,
.highlight-card,
.sector-card,
.value-card,
.mode-card,
.machine-card,
.contact-card {
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.showcase-card,
.highlight-card {
  position: relative;
  min-height: 14rem;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(15, 37, 39, 0.08);
  box-shadow: var(--shadow-soft);
}

.showcase-card::after,
.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 25, 27, 0.06) 28%, rgba(7, 25, 27, 0.84) 100%);
}

.showcase-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 24rem;
}

.showcase-card:hover,
.highlight-card:hover,
.sector-card:hover,
.value-card:hover,
.mode-card:hover,
.machine-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(15, 37, 39, 0.12);
  border-color: rgba(15, 56, 59, 0.14);
}

.showcase-card__media,
.highlight-card > img,
.machine-card__media,
.photo-panel img,
.family-intro__visual img,
.contact-photo img,
.photo-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__media,
.highlight-card > img {
  position: absolute;
  inset: 0;
}

.showcase-card__media img,
.highlight-card > img {
  transition: transform 0.45s ease;
}

.showcase-card:hover .showcase-card__media img,
.highlight-card:hover > img {
  transform: scale(1.05);
}

.showcase-card__body,
.highlight-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding: 1.3rem;
}

.showcase-card__body h3,
.highlight-card__body h3 {
  color: #ffffff;
}

.showcase-card__body p,
.highlight-card__body p {
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.76);
}

.showcase-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.feature-shell {
  align-items: start;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 12rem;
}

.highlight-card--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.highlight-card > img {
  aspect-ratio: auto;
}

.highlight-card__body .text-link {
  width: fit-content;
  color: #ffffff;
}

.highlight-card__body .text-link:hover {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.text-link:hover {
  color: var(--teal-soft);
}

.text-link--muted {
  color: var(--muted);
}

.workflow-copy {
  align-content: start;
}

.process-list,
.checklist,
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.process-item {
  padding: 1.2rem 1.25rem;
}

.process-item h3 {
  margin-bottom: 0.55rem;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 11rem;
  gap: 0.9rem;
}

.photo-mosaic__item {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.photo-mosaic__item--1 {
  grid-row: span 2;
}

.photo-mosaic__item--4 {
  grid-column: span 2;
}

.sector-grid,
.value-grid,
.mode-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.sector-card,
.value-card,
.mode-card {
  padding: 1.25rem;
}

.story-shell,
.materials-shell,
.family-shell,
.contact-shell,
.faq-shell {
  display: grid;
  gap: 1.2rem;
}

.story-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.material-cloud {
  gap: 0.7rem;
}

.material-cloud li {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(15, 37, 39, 0.04);
}

.material-cloud--compact li {
  background: rgba(255, 255, 255, 0.7);
}

.photo-panel {
  overflow: hidden;
  min-height: 24rem;
}

.family-intro {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.family-intro__visual {
  overflow: hidden;
  margin-top: 0.2rem;
  border-radius: 24px;
  aspect-ratio: 1.06 / 0.76;
}

.machine-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.machine-card__media {
  aspect-ratio: 1.08 / 0.84;
  overflow: hidden;
}

.machine-card__body,
.contact-card,
.story-card,
.value-card,
.mode-card,
.family-intro {
  padding: 1.25rem;
}

.machine-card__body {
  display: grid;
  gap: 0.7rem;
}

.machine-card__family {
  color: var(--teal-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list {
  display: grid;
  gap: 0.55rem;
}

.spec-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
}

.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--teal-soft);
}

.contact-photo {
  overflow: hidden;
  min-height: 24rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 0.55rem;
}

.contact-card__value {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
  word-break: break-word;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
}

.faq-item {
  padding: 0.3rem 1rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 800;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-right: 0.6rem;
}

.cta-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.45rem, 3vw, 2.2rem);
  background: linear-gradient(135deg, rgba(15, 56, 59, 0.98), rgba(10, 31, 33, 0.98));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 0 0 2.8rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.3rem;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.brand--footer {
  margin-bottom: 0.9rem;
}

.footer-shell h3 {
  margin-bottom: 0.8rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-links a:hover {
  color: var(--teal);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.error-panel {
  width: min(34rem, 100%);
  display: grid;
  gap: 1rem;
  padding: clamp(1.7rem, 4vw, 2.5rem);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (min-width: 961px) {
  .site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 1;
  }

  .nav-list {
    justify-content: center;
    flex: 1;
  }

  .nav-toggle {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    align-items: stretch;
  }

  .showcase-shell {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    align-items: end;
  }

  .feature-shell {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    align-items: start;
  }

  .process-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .story-shell,
  .materials-shell,
  .contact-shell,
  .faq-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .family-shell {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    align-items: start;
  }

  .sector-shell {
    gap: 1.5rem;
  }

  .cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 14rem;
  }

  .showcase-card--feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 22rem;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 14rem;
  }

  .highlight-card--feature {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 22rem;
  }
}

@media (max-width: 960px) {
  .header-shell {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    padding-top: 0.2rem;
  }

  .site-nav.is-open {
    display: grid;
    gap: 1rem;
  }

  .nav-list,
  .nav-actions {
    display: grid;
    gap: 0.45rem;
  }

  .nav-link,
  .lang-link,
  .site-nav .btn,
  .header-contact {
    width: 100%;
    justify-content: center;
  }

  .header-contact {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 56, 59, 0.06);
  }

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

  .showcase-shell,
  .feature-shell,
  .process-shell,
  .story-shell,
  .materials-shell,
  .contact-shell,
  .faq-shell,
  .family-shell {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-media {
    min-height: auto;
  }

  .hero-photo {
    min-height: 34rem;
  }

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

  .hero-stats,
  .showcase-grid,
  .highlight-grid,
  .sector-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .showcase-card,
  .showcase-card--feature,
  .highlight-card,
  .highlight-card--feature {
    grid-column: auto;
    grid-row: auto;
    min-height: 21rem;
  }

  .hero-floating-card {
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 1.15rem, 100%);
  }

  .section {
    padding: 2.7rem 0;
  }

  .header-shell {
    padding: 0.95rem;
    border-radius: 24px;
  }

  .brand__copy small {
    display: none;
  }

  .hero-panel {
    min-height: auto;
    padding: 1.3rem;
  }

  .capability-grid,
  .hero-photo {
    min-height: 24rem;
  }

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

  .capability-grid,
  .showcase-grid,
  .highlight-grid,
  .value-grid,
  .mode-grid,
  .machine-grid,
  .contact-grid,
  .sector-grid,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-auto-rows: 12rem;
  }

  .showcase-card,
  .highlight-card {
    min-height: 18.5rem;
  }

  .photo-mosaic__item--1,
  .photo-mosaic__item--4 {
    grid-column: auto;
    grid-row: auto;
  }

  .showcase-card__body,
  .highlight-card__body,
  .machine-card__body,
  .contact-card,
  .story-card,
  .value-card,
  .mode-card,
  .family-intro {
    padding: 1rem;
  }

  .cta-band,
  .footer-shell,
  .error-panel {
    padding: 1.15rem;
  }
}

:root {
  --shell: min(1422px, calc(100vw - 1.5rem));
  --header-shell: min(1900px, calc(100vw - 1.5rem));
  --header-bg: #ffffff;
  --header-dark: #0c1e21;
  --header-brand: #1e8a8a;
  --header-muted: #364e52;
  --header-soft: #ecf0f0;
  --header-line: #c9d1d1;
  --header-shadow: 0 12px 30px rgba(12, 30, 33, 0.08);
}

body {
  font-family: "Mona Sans", "Manrope", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0.9rem 0 0;
  transition: padding 0.2s ease;
}

.site-header.is-scrolled {
  padding-top: 0.55rem;
}

.header-shell {
  width: var(--header-shell);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 5.2rem;
  padding: 0 1.15rem;
  background: var(--header-bg);
  border: 1px solid rgba(201, 209, 209, 0.78);
  border-radius: 14px;
  box-shadow: var(--header-shadow);
  backdrop-filter: none;
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 20px 40px rgba(12, 30, 33, 0.08);
}

.site-logo {
  flex: 0 0 auto;
}

.brand {
  gap: 0.78rem;
}

.brand__mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(30, 138, 138, 0.18);
}

.brand__copy {
  gap: 0.12rem;
}

.brand__copy strong {
  color: var(--header-dark);
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.brand__copy small {
  display: none;
}

.menu-area {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.site-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.4vw, 1.45rem);
  flex-wrap: nowrap;
}

.nav-list li {
  position: relative;
}

.nav-link {
  min-height: auto;
  padding: 1.95rem 0;
  border-radius: 0;
  color: var(--header-dark);
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.2rem;
  width: 100%;
  height: 2px;
  background: var(--header-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--header-brand);
  background: transparent;
  box-shadow: none;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-right-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}

.header-locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  padding: 0.22rem;
  border-radius: 999px;
  background: var(--header-soft);
}

.header-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.header-lang-link:hover,
.header-lang-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(30, 138, 138, 0.22);
  box-shadow: inset 0 0 0 1px rgba(30, 138, 138, 0.12);
}

.header-lang-link__flag {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 1px rgba(12, 30, 33, 0.08),
    0 1px 2px rgba(12, 30, 33, 0.08);
}

.header-lang-link__flag--pl {
  background: linear-gradient(180deg, #ffffff 0 50%, #dc143c 50% 100%);
}

.header-lang-link__flag--de {
  background: linear-gradient(180deg, #111111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}

.header-lang-link__flag--en {
  background:
    linear-gradient(90deg, transparent 0 38%, #ffffff 38% 62%, transparent 62% 100%),
    linear-gradient(180deg, transparent 0 38%, #ffffff 38% 62%, transparent 62% 100%),
    linear-gradient(90deg, transparent 0 45%, #cf142b 45% 55%, transparent 55% 100%),
    linear-gradient(180deg, transparent 0 45%, #cf142b 45% 55%, transparent 55% 100%),
    #012169;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-height: 0;
  padding: 0.24rem 0.24rem 0.24rem 1rem;
  border-radius: 999px;
  background: var(--header-brand);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(30, 138, 138, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(30, 138, 138, 0.22);
}

.header-cta__text {
  white-space: nowrap;
}

.header-cta__icon {
  position: relative;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--header-dark);
  flex: 0 0 auto;
}

.header-cta__icon::before,
.header-cta__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.header-cta__icon::before {
  left: 0.58rem;
  width: 0.54rem;
  height: 2px;
  background: currentColor;
}

.header-cta__icon::after {
  right: 0.56rem;
  width: 0.34rem;
  height: 0.34rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.menu-bar {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
  width: 1.7rem;
  height: 1.7rem;
  margin-left: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.menu-bar span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--header-dark);
  transition:
    transform 0.2s ease,
    width 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.menu-bar span:nth-child(1),
.menu-bar span:nth-child(3) {
  width: 1.55rem;
}

.menu-bar span:nth-child(2) {
  width: 1rem;
}

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

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

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

.header-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(12, 30, 33, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 70;
}

.header-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.header-drawer {
  position: fixed;
  top: calc(0.9rem + 5.2rem + 0.7rem);
  left: 50%;
  width: min(1160px, calc(100vw - 1.5rem));
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -0.9rem);
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.24s ease;
}

.header-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-drawer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(201, 209, 209, 0.95);
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(12, 30, 33, 0.14);
}

.header-drawer__nav,
.header-drawer__aside {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 209, 209, 0.8);
}

.header-drawer__nav {
  background:
    radial-gradient(circle at top left, rgba(30, 138, 138, 0.09), transparent 18rem),
    linear-gradient(180deg, #fbfdfd 0%, #f5f9f8 100%);
}

.header-drawer__aside {
  background: #ffffff;
}

.header-drawer__eyebrow,
.header-contact-card__label {
  display: inline-flex;
  width: fit-content;
  color: var(--header-brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-drawer__note p {
  color: var(--header-muted);
  max-width: 26rem;
}

.drawer-nav-list {
  display: grid;
  gap: 0.55rem;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(201, 209, 209, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: var(--header-dark);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.drawer-nav-link::after {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.drawer-nav-link:hover,
.drawer-nav-link.is-active {
  transform: translateX(4px);
  border-color: rgba(30, 138, 138, 0.28);
  background: rgba(30, 138, 138, 0.08);
  color: var(--header-brand);
}

.header-drawer__languages {
  display: grid;
  gap: 0.7rem;
}

.header-locale-switch--drawer {
  justify-content: flex-start;
  width: fit-content;
  background: transparent;
  padding: 0;
  gap: 0.45rem;
}

.header-locale-switch--drawer .header-lang-link {
  width: 2.45rem;
  height: 2.45rem;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(201, 209, 209, 0.9);
}

.header-contact-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbfb 0%, #f0f6f6 100%);
  border: 1px solid rgba(201, 209, 209, 0.85);
}

.header-contact-link {
  display: grid;
  gap: 0.22rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(201, 209, 209, 0.8);
  transition:
    border-color 0.18s ease,
    transform 0.18s ease;
}

.header-contact-link span {
  color: var(--header-muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-contact-link strong {
  color: var(--header-dark);
  font-size: 0.98rem;
  line-height: 1.45;
}

.header-contact-link:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 138, 138, 0.24);
}

.header-cta--drawer {
  width: fit-content;
}

@media (min-width: 961px) {
  .site-nav {
    display: block;
  }

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

  .header-drawer {
    left: 50%;
  }
}

@media (max-width: 960px) {
  .site-header {
    padding-top: 0.7rem;
  }

  .site-header.is-scrolled {
    padding-top: 0.45rem;
  }

  .header-shell {
    flex-wrap: nowrap;
    min-height: 4.7rem;
    gap: 0.6rem;
    padding: 0 0.9rem;
  }

  .menu-area,
  .header-cta {
    display: none;
  }

  .header-locale-switch {
    gap: 0.18rem;
    padding: 0.16rem;
  }

  .header-lang-link {
    width: 1.85rem;
    height: 1.85rem;
  }

  .header-lang-link__flag {
    width: 1.2rem;
    height: 1.2rem;
  }

  .nav-toggle {
    display: inline-flex;
    width: 3.15rem;
    height: 3.15rem;
    padding: 0.7rem;
    border-radius: 0.5rem;
    background: var(--header-brand);
  }

  .nav-toggle span {
    background: #fff;
  }

  .nav-toggle span:nth-child(1),
  .nav-toggle span:nth-child(3) {
    width: 1.45rem;
  }

  .nav-toggle span:nth-child(2) {
    width: 0.95rem;
  }

  .header-drawer {
    top: calc(0.7rem + 4.7rem + 0.65rem);
    width: calc(100vw - 1.15rem);
  }

  .header-drawer__grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.85rem;
  }

  .header-drawer__nav,
  .header-drawer__aside {
    padding: 1rem;
  }

  .header-cta--drawer {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.55rem;
  }

  .header-shell {
    padding: 0 0.75rem;
  }

  .brand__copy strong {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }

  .header-drawer {
    width: calc(100vw - 0.9rem);
  }

  .header-drawer__grid {
    padding: 0.75rem;
  }

  .drawer-nav-link,
  .header-contact-link {
    padding: 0.9rem;
  }
}
