/* ========================================
   FRAME PLASTIC — Industrial Web Identity
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Archivo+Narrow:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --navy: #0A2A66;
  --navy-deep: #061A42;
  --navy-light: #1B3F8A;
  --red: #E30613;
  --red-deep: #B8050F;
  --bone: #F4F1EA;
  --paper: #FAF8F3;
  --ink: #0B1220;
  --ash: #6B7280;
  --line: rgba(10, 42, 102, 0.12);
  --line-strong: rgba(10, 42, 102, 0.25);

  --display: 'Archivo', sans-serif;
  --narrow: 'Archivo Narrow', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--display);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========================================
   TICKER STRIP — top utility bar
   ======================================== */
.ticker {
  background: var(--navy-deep);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ticker__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
  width: max-content;
}
.ticker__item { display: inline-flex; align-items: center; gap: 10px; }
.ticker__dot { width: 6px; height: 6px; background: var(--red); display: inline-block; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(250, 248, 243, 0.92);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__logo img { height: 42px; width: auto; }

.nav__menu {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  color: var(--navy);
  position: relative;
  transition: color 0.25s;
}
.nav__link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover::before,
.nav__link--active::before {
  transform: scaleX(1);
}
.nav__link--active { color: var(--navy-deep); }

.nav__cta {
  background: var(--navy);
  color: var(--bone);
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 2px solid var(--navy);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav__cta:hover {
  background: var(--red);
  border-color: var(--red);
}
.nav__cta-arrow {
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.nav__cta-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.nav__toggle { display: none; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--navy-deep);
  color: var(--bone);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227,6,19,0.18) 0%, transparent 60%);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 32px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--red);
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.35s forwards;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-family: var(--narrow);
}
.hero__title .word {
  display: inline-block;
  position: relative;
}

.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  color: rgba(244, 241, 234, 0.78);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.btn {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 2px solid;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s;
  cursor: pointer;
}
.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--bone);
}
.btn--primary:hover {
  background: transparent;
  color: var(--red);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(244, 241, 234, 0.4);
  color: var(--bone);
}
.btn--ghost:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--navy-deep);
}
.btn--dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--bone);
}
.btn--dark:hover {
  background: var(--red);
  border-color: var(--red);
}

/* Hero stats panel */
.hero__panel {
  position: relative;
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244, 241, 234, 0.15);
  border: 1px solid rgba(244, 241, 234, 0.15);
}
.stat {
  background: var(--navy-deep);
  padding: 32px 28px;
  position: relative;
}
.stat__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  margin-bottom: 12px;
}
.stat__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.stat__value sup {
  font-size: 24px;
  color: var(--red);
  vertical-align: super;
  margin-left: 2px;
}
.stat__caption {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(244, 241, 234, 0.6);
  font-family: var(--narrow);
}

.hero__corner {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--red);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SECTION FRAMEWORK
   ======================================== */
.section {
  padding: 120px 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.section--tight { padding: 80px 32px; }
.section--dark {
  background: var(--navy-deep);
  color: var(--bone);
  max-width: none;
  margin: 0;
}
.section--dark > .section__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section--bone {
  background: var(--bone);
  max-width: none;
  margin: 0;
}
.section--bone > .section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 32px;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 72px;
  align-items: end;
}
.section__tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 14px;
}
.section__tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--red);
}
.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}
.section--dark .section__title { color: var(--bone); }
.section__title em {
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-family: var(--narrow);
}
.section__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ash);
  max-width: 620px;
  margin-top: 24px;
}
.section--dark .section__lead { color: rgba(244, 241, 234, 0.7); }

/* ========================================
   CAPABILITY GRID (homepage)
   ======================================== */
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.capability {
  background: var(--paper);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}
.capability:hover {
  background: var(--navy-deep);
  color: var(--bone);
}
.capability:hover .capability__num,
.capability:hover .capability__title { color: var(--bone); }
.capability:hover .capability__text { color: rgba(244, 241, 234, 0.7); }
.capability:hover .capability__icon { stroke: var(--red); }

.capability__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin-bottom: 28px;
  transition: color 0.3s;
}
.capability__icon {
  width: 44px;
  height: 44px;
  stroke: var(--navy);
  stroke-width: 1.5;
  fill: none;
  margin-bottom: 24px;
  transition: stroke 0.3s;
}
.capability__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.capability__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
  transition: color 0.3s;
}

/* ========================================
   PRODUCT SHOWCASE (homepage)
   ======================================== */
.showcase {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.showcase__item {
  background: var(--navy);
  color: var(--bone);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s;
}
.showcase__item:hover { transform: translateY(-4px); }
.showcase__item--lg { grid-column: span 4; grid-row: span 2; }
.showcase__item--md { grid-column: span 3; grid-row: span 2; }
.showcase__item--sm { grid-column: span 2; }
.showcase__item--wide { grid-column: span 3; }

.showcase__item:nth-child(2) { background: var(--bone); color: var(--navy-deep); }
.showcase__item:nth-child(2) .showcase__num { color: var(--ash); }
.showcase__item:nth-child(3) { background: var(--red); }
.showcase__item:nth-child(5) { background: var(--paper); color: var(--navy-deep); border: 1px solid var(--line-strong); }
.showcase__item:nth-child(5) .showcase__num { color: var(--ash); }

.showcase__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(244, 241, 234, 0.5);
}
.showcase__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.showcase__caption {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.showcase__bg {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.08;
  pointer-events: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: 80px 32px 32px;
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 241, 234, 0.1);
}
.footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.6);
  max-width: 320px;
  margin-bottom: 24px;
}
.footer__col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-family: var(--narrow);
  font-size: 14px;
  color: rgba(244, 241, 234, 0.7);
  transition: color 0.2s;
}
.footer__list a:hover { color: var(--red); }
.footer__contact-line {
  font-size: 14px;
  color: rgba(244, 241, 234, 0.7);
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer__contact-line strong { color: var(--bone); font-weight: 600; }

.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.4);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.page-hero {
  background: var(--navy-deep);
  color: var(--bone);
  padding: 120px 32px 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at top right, black 20%, transparent 70%);
}
.page-hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.page-hero__crumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  margin-bottom: 32px;
}
.page-hero__crumb span { color: var(--red); }
.page-hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.page-hero__title em {
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-family: var(--narrow);
}
.page-hero__sub {
  margin-top: 28px;
  font-size: 18px;
  max-width: 640px;
  color: rgba(244, 241, 234, 0.75);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 100px;
}
.about-grid__sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}
.about-grid__num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 20px;
}
.about-grid__heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}
.about-grid__heading em {
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-family: var(--narrow);
}
.about-grid__body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-grid__body p:first-child::first-letter {
  font-family: var(--display);
  font-weight: 900;
  font-size: 72px;
  float: left;
  line-height: 0.9;
  margin: 6px 14px 0 0;
  color: var(--red);
}

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(244, 241, 234, 0.1);
  border: 1px solid rgba(244, 241, 234, 0.1);
}
.value {
  background: var(--navy-deep);
  padding: 48px 40px;
  position: relative;
}
.value__num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 80px;
  color: rgba(227, 6, 19, 0.4);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.value__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--bone);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.value__text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.7);
}

.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission__block {
  border-top: 3px solid var(--navy-deep);
  padding-top: 32px;
}
.mission__block--red { border-top-color: var(--red); }
.mission__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.mission__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 20px;
}
.mission__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-cat {
  border-bottom: 1px solid var(--line-strong);
  padding: 64px 0;
}
.product-cat:first-child { padding-top: 0; }
.product-cat__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}
.product-cat__index {
  font-family: var(--display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--paper);
  -webkit-text-stroke: 1.5px var(--navy);
  min-width: 160px;
}
.product-cat__head h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.product-cat__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.product-cat__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ash);
  max-width: 640px;
}
.product-cat__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-left: 208px;
}
.product-item {
  background: var(--paper);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: all 0.25s;
  position: relative;
}
.product-item:hover {
  background: var(--navy-deep);
  color: var(--bone);
}
.product-item:hover .product-item__num { color: var(--red); }
.product-item:hover .product-item__name { color: var(--bone); }
.product-item:hover .product-item__arrow { color: var(--red); transform: translateX(4px); }

.product-item__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ash);
  letter-spacing: 0.15em;
  transition: color 0.25s;
}
.product-item__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--navy-deep);
  margin-top: 16px;
  transition: color 0.25s;
}
.product-item__arrow {
  position: absolute;
  bottom: 22px;
  right: 22px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ash);
  transition: all 0.25s;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-strong);
}
.contact-info {
  padding: 56px 48px;
  background: var(--bone);
  border-right: 1px solid var(--line-strong);
}
.contact-form {
  padding: 56px 48px;
  background: var(--paper);
}

.contact-info__heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 32px;
  line-height: 1.05;
}
.contact-info__heading em {
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-family: var(--narrow);
}
.contact-block {
  border-top: 1px solid var(--line-strong);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: start;
}
.contact-block:last-child { border-bottom: 1px solid var(--line-strong); }
.contact-block__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 4px;
}
.contact-block__value {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.5;
}
.contact-block__value a {
  color: var(--navy-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-block__value a:hover { border-bottom-color: var(--red); }

.contact-form__heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy-deep);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-form__sub {
  font-size: 14px;
  color: var(--ash);
  margin-bottom: 32px;
}
.field { margin-bottom: 22px; }
.field__label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 8px;
}
.field__input,
.field__textarea {
  width: 100%;
  font-family: var(--display);
  font-size: 15px;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.2s;
}
.field__input:focus,
.field__textarea:focus {
  border-bottom-color: var(--red);
}
.field__textarea {
  resize: vertical;
  min-height: 100px;
}

.map-wrap {
  margin-top: 60px;
  border: 1px solid var(--line-strong);
  overflow: hidden;
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.4) contrast(1.05);
}

/* ========================================
   CTA STRIP
   ======================================== */
.cta-strip {
  background: var(--red);
  color: var(--bone);
  padding: 64px 32px;
}
.cta-strip__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-strip__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.cta-strip__title em {
  font-style: normal;
  font-family: var(--narrow);
  font-weight: 400;
  border-bottom: 3px solid var(--bone);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(0,0,0,0.2);
}
.wa-float__icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: waPulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ========================================
   CONTACT CHANNELS (form replacement)
   ======================================== */
.contact-channels {
  background: var(--paper);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channels__header {
  margin-bottom: 16px;
}
.channels__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.channels__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.channels__title em {
  font-style: normal;
  color: var(--red);
  font-weight: 400;
  font-family: var(--narrow);
}
.channels__sub {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: 14px;
}

.channel-card {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  background: var(--bone);
  border: 1.5px solid var(--line-strong);
  color: var(--navy-deep);
  transition: all 0.25s;
}
.channel-card:hover {
  background: var(--navy-deep);
  color: var(--bone);
  border-color: var(--navy-deep);
  transform: translateX(4px);
}
.channel-card:hover .channel-card__arrow { transform: translateX(4px); color: var(--red); }
.channel-card--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.channel-card--whatsapp:hover .channel-card__arrow { color: #fff; }

.channel-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 42, 102, 0.08);
  border-radius: 50%;
  transition: background 0.25s;
}
.channel-card__icon svg {
  width: 22px;
  height: 22px;
}
.channel-card--whatsapp .channel-card__icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}
.channel-card:hover .channel-card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
}

.channel-card__body { min-width: 0; }
.channel-card__title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}
.channel-card__value {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel-card__arrow {
  font-family: var(--mono);
  font-size: 18px;
  transition: all 0.25s;
}

/* ========================================
   ENLARGED MAP (form removed)
   ======================================== */
.map-wrap--xl {
  margin-top: 60px;
  position: relative;
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.map-wrap--xl iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
  filter: grayscale(0.3) contrast(1.05);
}
.map-overlay {
  position: absolute;
  top: 32px;
  left: 32px;
  background: var(--navy-deep);
  color: var(--bone);
  padding: 28px 32px;
  max-width: 320px;
  z-index: 2;
  border-left: 4px solid var(--red);
}
.map-overlay__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.map-overlay__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.map-overlay__addr {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.75);
  margin-bottom: 18px;
}
.map-overlay__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.map-overlay__btn:hover { color: var(--red); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: repeat(4, 1fr); }
  .showcase__item--lg { grid-column: span 4; }
  .showcase__item--md { grid-column: span 4; }
  .showcase__item--sm { grid-column: span 2; }
  .showcase__item--wide { grid-column: span 4; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid__sticky { position: static; }
  .mission { grid-template-columns: 1fr; gap: 40px; }
  .product-cat__items { margin-left: 0; grid-template-columns: repeat(2, 1fr); }
  .product-cat__top { grid-template-columns: 1fr; gap: 16px; }
  .product-cat__index { font-size: 64px; min-width: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--line-strong); }
  .cta-strip__inner { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 720px) {
  .wa-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .wa-float__icon { width: 28px; height: 28px; }
  .contact-channels { padding: 36px 24px; }
  .channels__title { font-size: 26px; }
  .channel-card { padding: 16px; gap: 14px; grid-template-columns: 44px 1fr auto; }
  .channel-card__icon { width: 36px; height: 36px; }
  .channel-card__icon svg { width: 18px; height: 18px; }
  .channel-card__value { font-size: 15px; }
  .map-wrap--xl iframe { height: 420px; }
  .map-overlay { position: static; max-width: none; padding: 24px; }
  .nav { padding: 16px 20px; }
  .nav__menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--line); gap: 0; }
  .nav__menu.is-open { display: flex; }
  .nav__link { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__link::before { display: none; }
  .nav__cta { display: none; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    align-items: center;
  }
  .nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: all 0.25s;
  }
  .section { padding: 72px 20px; }
  .section--bone > .section__inner { padding: 72px 20px; }
  .hero__inner { padding: 60px 20px; }
  .capabilities { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__item--lg, .showcase__item--md, .showcase__item--sm, .showcase__item--wide { grid-column: span 1; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .page-hero { padding: 80px 20px 60px; }
  .product-cat__items { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 36px 24px; }
  .contact-block { grid-template-columns: 1fr; gap: 6px; }
  .hero__stats { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
}



.sanatustuCopy a {
  
}

.sanatustuSpanF {
  font-size: 24px;
 
  font-family: "NADALL";
}

.sanatustuSpanL {
  font-family: "Quizma-LightDemo";
  
  font-size: 20px;
}



