/* ALTURA COMMODITIES — multi-page corporate */
:root {
  --navy: #002b49;
  --navy-deep: #001526;
  --navy-mid: #0a3a5c;
  --teal: #008b96;
  --teal-bright: #00a8b5;
  --teal-soft: rgba(0, 139, 150, 0.12);
  --tan: #b6854e;
  --tan-soft: rgba(182, 133, 78, 0.16);
  --white: #ffffff;
  --off: #f2f5f7;
  --muted: #5a6b78;
  --line: rgba(0, 43, 73, 0.1);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Loader —— */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark img {
  width: min(200px, 52vw);
  animation: pulseLogo 1.1s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

@keyframes pulseLogo {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled,
.site-header.is-solid,
body.page-inner .site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 48px;
  width: auto;
  transition: filter 0.35s, opacity 0.35s;
}

body.page-home .site-header:not(.is-scrolled):not(.is-solid) .brand-logo {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.nav-desktop {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 0.55rem 0.75rem;
  transition: color 0.25s;
}

body.page-home .site-header:not(.is-scrolled):not(.is-solid) .nav-desktop a {
  color: rgba(255, 255, 255, 0.92);
}

.nav-desktop a:not(.nav-cta).is-active {
  color: var(--teal) !important;
}

.nav-desktop a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:not(.nav-cta):hover::after,
.nav-desktop a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.35rem;
  padding: 0.6rem 1.15rem !important;
  background: var(--teal);
  color: var(--white) !important;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background 0.25s, transform 0.25s;
}

.nav-cta:hover,
.nav-cta.is-active {
  background: var(--teal-bright);
  transform: translateY(-1px);
}

.header-phone {
  display: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: var(--navy);
}

body.page-home .site-header:not(.is-scrolled):not(.is-solid) .header-phone {
  color: var(--white);
}

.menu-toggle {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.25s;
  transform-origin: center;
}

body.page-inner .menu-toggle span,
.site-header.is-scrolled .menu-toggle span,
.site-header.is-solid .menu-toggle span,
body.nav-open .menu-toggle span {
  background: var(--navy);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* —— Mobile nav —— */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 999;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(0, 139, 150, 0.25), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 60%, #003d52 100%);
  padding: 1.75rem 1.75rem 3rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease), visibility 0.45s;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-nav nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s;
}

.mobile-nav.is-open nav a {
  opacity: 1;
  transform: none;
}

.mobile-nav.is-open nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.is-open nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.is-open nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.is-open nav a:nth-child(6) { transition-delay: 0.3s; }

.mobile-nav nav a.is-active,
.mobile-nav nav a:hover {
  color: var(--teal-bright);
}

.mobile-nav-meta {
  margin-top: auto;
  padding-top: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-meta a {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.btn-primary:hover {
  background: var(--teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 139, 150, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(0, 43, 73, 0.25);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-block {
  width: 100%;
  clip-path: none;
}

/* —— Home hero slider —— */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 7.5s linear;
}

.hero-slide.is-active .hero-media {
  transform: scale(1);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 16, 30, 0.9) 0%, rgba(0, 43, 73, 0.58) 48%, rgba(0, 43, 73, 0.28) 100%),
    linear-gradient(to top, rgba(0, 14, 26, 0.78) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 7.5rem;
  color: var(--white);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7.5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.95;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-brand {
  animation: riseIn 0.9s var(--ease) 0.12s forwards;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.7rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.12;
  max-width: 18ch;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-content h1 {
  animation: riseIn 0.9s var(--ease) 0.26s forwards;
}

.hero-lead {
  max-width: 36rem;
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-lead {
  animation: riseIn 0.9s var(--ease) 0.38s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(28px);
}

.hero-slide.is-active .hero-actions {
  animation: riseIn 0.9s var(--ease) 0.5s forwards;
}

@keyframes riseIn {
  to { opacity: 1; transform: none; }
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 2.75rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 20, 36, 0.35);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}

.hero-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
  margin-right: auto;
}

.hero-dot {
  width: 28px;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.is-active {
  background: var(--tan);
  transform: scaleX(1.15);
}

.hero-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.hero-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--tan));
}

.scroll-hint {
  position: absolute;
  right: 1.5rem;
  bottom: 2.75rem;
  z-index: 5;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: none;
}

.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--tan);
  border-radius: 2px;
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(16px); }
}

/* —— Page hero (inner pages) —— */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-1.5%); }
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 18, 32, 0.92) 0%, rgba(0, 43, 73, 0.55) 55%, rgba(0, 43, 73, 0.25) 100%),
    linear-gradient(to top, rgba(0, 14, 26, 0.7) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
}

.page-hero .eyebrow {
  color: var(--tan);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.98;
  max-width: 12ch;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

/* —— Sections common —— */
.section {
  padding: clamp(4.25rem, 9vw, 7rem) 0;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

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

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.section-head h2,
.split-copy h2,
.contact-copy h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-lead,
.split-copy p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-alt {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, var(--teal-soft), transparent 55%),
    var(--off);
}

.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-dark .section-head h2,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

/* —— Split layouts —— */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-visual {
  position: relative;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%);
  transition: transform 0.9s var(--ease);
}

.split:hover .split-visual img {
  transform: scale(1.04);
}

.split-visual .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.15rem 1.35rem;
  background: linear-gradient(90deg, var(--navy), rgba(0, 43, 73, 0.88));
  color: var(--white);
  max-width: 88%;
}

.split-visual .caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-visual .caption span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.split-points {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.split-points li {
  position: relative;
  padding-left: 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.split-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 2px;
  background: var(--tan);
}

/* —— Feature / service rows —— */
.feature-list {
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem 1.75rem;
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s, padding-left 0.35s;
}

.feature-row:hover {
  background: linear-gradient(90deg, var(--teal-soft), transparent 70%);
  padding-left: 0.65rem;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--tan);
  line-height: 1;
  min-width: 2.5rem;
}

.feature-row h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.feature-row p {
  color: var(--muted);
  max-width: 48rem;
}

/* —— Home teaser cards / panels —— */
.teaser-grid {
  display: grid;
  gap: 1.15rem;
}

.teaser {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}

.teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
  z-index: -2;
}

.teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 18, 32, 0.92) 0%, rgba(0, 43, 73, 0.25) 55%, transparent 100%);
  z-index: -1;
}

.teaser:hover img {
  transform: scale(1.06);
}

.teaser-body {
  padding: 1.5rem 1.35rem;
  width: 100%;
}

.teaser-body span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 0.4rem;
}

.teaser-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.teaser-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.85rem;
}

.teaser-body .link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

/* —— Mosaic gallery —— */
.mosaic {
  display: grid;
  gap: 0.85rem;
}

.mosaic figure {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.mosaic img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}

.mosaic figure:hover img {
  transform: scale(1.05);
}

.mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(to top, rgba(0, 18, 32, 0.88), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* —— Product panels —— */
.product-panel {
  display: grid;
  gap: 0;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 43, 73, 0.08);
  margin-bottom: 1.75rem;
}

.product-panel .media {
  min-height: 240px;
  overflow: hidden;
}

.product-panel .media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.85s var(--ease);
}

.product-panel:hover .media img {
  transform: scale(1.05);
}

.product-panel .info {
  padding: 1.75rem 1.5rem 2rem;
}

.product-panel h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.product-panel > .info > p,
.product-panel .info > p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.product-panel ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.product-panel li {
  font-size: 0.92rem;
  font-weight: 600;
  padding-left: 0.9rem;
  position: relative;
}

.product-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--teal);
}

.chip-row {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.chip {
  padding: 1.15rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-left: 3px solid var(--tan);
}

.chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.chip span {
  font-size: 0.88rem;
  opacity: 0.78;
}

/* —— Stats —— */
.stats {
  display: grid;
  gap: 1.5rem;
}

.stat-value,
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-dark .stat-value { color: var(--white); }

.stat-suffix {
  color: var(--teal);
  margin-left: 0.05em;
}

.stat p {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.section-dark .stat p {
  color: rgba(255, 255, 255, 0.7);
}

.values {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.75rem;
}

.values article h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.values article h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--tan);
  margin-bottom: 0.75rem;
}

.values article p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 6.5rem) 0;
  color: var(--white);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 22, 40, 0.94), rgba(0, 70, 85, 0.82));
}

.cta-band .container {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: 2.75rem;
}

.contact-details {
  margin-top: 2rem;
  display: grid;
  gap: 1.35rem;
}

.contact-details .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.contact-details a,
.contact-details p {
  font-weight: 600;
  font-size: 1.02rem;
}

.contact-details a:hover {
  color: var(--teal);
}

.contact-form {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid var(--teal);
  box-shadow: 0 22px 55px rgba(0, 43, 73, 0.08);
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--off);
  padding: 0.85rem 1rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

.map-strip {
  margin-top: 2.5rem;
  overflow: hidden;
}

.map-strip img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}

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

.footer-brand p {
  font-size: 0.92rem;
  max-width: 28rem;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.15rem 0;
  font-size: 0.82rem;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (min-width: 640px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .chip-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .values {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }

  .scroll-hint {
    display: block;
  }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }
  .nav-desktop { display: flex; }
  .header-phone { display: block; }

  .hero-content {
    justify-content: center;
    padding-bottom: 5rem;
  }

  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-visual {
    order: 2;
  }

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

  .teaser {
    min-height: 340px;
  }

  .mosaic {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
  }

  .mosaic figure:first-child {
    grid-row: 1 / span 2;
    min-height: 100%;
  }

  .mosaic figure:first-child img {
    min-height: 100%;
  }

  .product-panel {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .product-panel.reverse {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .product-panel.reverse .media { order: 2; }

  .product-panel .media,
  .product-panel .media img {
    min-height: 340px;
  }

  .product-panel .info {
    padding: 2.5rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-row {
    grid-template-columns: 4rem 1fr;
    gap: 2rem;
    padding: 2.15rem 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-form {
    padding: 2.25rem;
  }
}

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

  .teaser.wide {
    grid-column: span 2;
  }
}

@media (max-width: 899px) {
  .hero-content {
    padding-bottom: 8.5rem;
  }
}

/* —— Lightbox gallery —— */
.js-zoom {
  cursor: zoom-in;
  position: relative;
}

.mosaic figure.js-zoom,
.split-visual.js-zoom,
.product-panel .media.js-zoom,
.map-strip.js-zoom {
  cursor: zoom-in;
}

.mosaic figure.js-zoom::after,
.product-panel .media.js-zoom::after {
  content: "";
  position: absolute;
  inset: auto 0.75rem 0.75rem auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(var(--white), var(--white)) center / 14px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center / 2px 14px no-repeat,
    rgba(0, 26, 46, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}

.mosaic figure {
  position: relative;
}

.product-panel .media {
  position: relative;
}

.mosaic figure.js-zoom:hover::after,
.product-panel .media.js-zoom:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 14, 26, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-frame {
  position: relative;
  width: min(100%, 1100px);
  max-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
}

.lightbox.is-open .lightbox-frame {
  transform: none;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: min(72vh, 780px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-meta {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
}

.lightbox-meta p {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 26, 46, 0.55);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  line-height: 1;
  z-index: 2;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-nav.prev { left: 0.75rem; }
.lightbox-nav.next { right: 0.75rem; }

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--teal);
  border-color: var(--teal);
}

@media (max-width: 700px) {
  .lightbox-nav.prev { left: 0.25rem; }
  .lightbox-nav.next { right: 0.25rem; }
  .lightbox-frame img {
    max-height: 58vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}
