/* Pramukh Plastic — Modern Industrial Design System */
:root {
  --navy: #08105b;
  --navy-deep: #050838;
  --navy-soft: #121a6e;
  --teal: #2ad6b8;
  --teal-bright: #3ef0cf;
  --teal-deep: #12a892;
  --blue: #3d6ef5;
  --brand-red: #e31b23;
  --ink: #0c1226;
  --ink-soft: #3a4660;
  --muted: #6b7790;
  --line: rgba(8, 16, 91, 0.1);
  --surface: #f3f6fb;
  --surface-2: #e8eef8;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(8, 16, 91, 0.12);
  --container: 1180px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(42, 214, 184, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(61, 110, 245, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f9fd 0%, var(--surface) 40%, #eef3fa 100%);
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.section-dark {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(42, 214, 184, 0.18), transparent 50%),
    radial-gradient(700px 400px at 90% 100%, rgba(61, 110, 245, 0.2), transparent 45%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 55%, #0d186f);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 1rem;
}

.section-dark .eyebrow {
  color: var(--teal);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 42rem;
}

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

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

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(42, 214, 184, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(42, 214, 184, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, #ff4a4f, var(--brand-red));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(227, 27, 35, 0.3);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(8, 16, 91, 0.18);
  color: var(--navy);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(8, 16, 91, 0.04);
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

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

.site-header.scrolled {
  background: rgba(247, 249, 253, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(8, 16, 91, 0.08);
}

.site-header.on-dark:not(.scrolled) .brand-text,
.site-header.on-dark:not(.scrolled) .nav-links a,
.site-header.on-dark:not(.scrolled) .nav-toggle {
  color: var(--white);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.brand img,
.brand-logo {
  width: auto;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.brand-logo.full {
  height: 48px;
  max-width: min(260px, 48vw);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.15rem;
}

.site-header.on-dark:not(.scrolled) .brand-text span {
  color: rgba(255, 255, 255, 0.65);
}

/* When using full wordmark logo, hide redundant text */
.brand.has-wordmark .brand-text {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.55rem 0.9rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: rgba(8, 16, 91, 0.06);
}

.site-header.on-dark:not(.scrolled) .nav-links a:hover,
.site-header.on-dark:not(.scrolled) .nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  display: none;
}

.header-cta {
  display: inline-flex;
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 1.5rem) 0 clamp(2rem, 5vw, 4rem);
  color: var(--white);
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero {
    align-items: center;
    padding-bottom: 2.5rem;
  }

  .hero-meta {
    gap: 1rem 1.25rem !important;
  }

  .hero-meta strong {
    font-size: 1.25rem;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 56, 0.88) 0%, rgba(5, 8, 56, 0.55) 48%, rgba(5, 8, 56, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 8, 56, 0.35) 0%, transparent 35%, rgba(5, 8, 56, 0.75) 100%);
}

@media (max-width: 640px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5, 8, 56, 0.55) 0%, rgba(5, 8, 56, 0.25) 38%, rgba(5, 8, 56, 0.88) 100%);
  }

  .hero .hero-brand {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .hero h2 {
    font-size: 1.05rem;
    max-width: none;
  }

  .hero .hero-copy {
    font-size: 0.95rem;
  }

  .hero .btn-row {
    margin-top: 1.15rem;
  }

  .hero-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  max-width: 760px;
}

.hero .hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
  color: var(--white);
  max-width: none;
}

.hero .hero-brand em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-bright), #8ef0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h2 {
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 600;
  max-width: 22ch;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero .hero-copy {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  margin: 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--teal);
}

.hero-meta span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Intro strip */
.intro-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.intro-visual img,
.intro-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(5, 8, 56, 0.45));
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-item {
  padding: 1.6rem 1.35rem;
  border-top: 2px solid var(--teal);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45));
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.why-item:hover {
  transform: translateY(-6px);
  background: var(--white);
}

.why-item .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-deep);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.why-item h3 {
  margin-bottom: 0.65rem;
}

.why-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Products */
.product-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

.product-feature {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  background: var(--navy);
}

.product-feature img,
.product-feature video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-feature:hover img,
.product-feature:hover video {
  transform: scale(1.05);
}

.product-feature .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(transparent 35%, rgba(5, 8, 56, 0.88));
  color: var(--white);
}

.product-feature .overlay h3 {
  margin-bottom: 0.4rem;
}

.product-feature .overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28rem;
}

.product-stack {
  display: grid;
  gap: 1.25rem;
}

.product-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 248px;
  background: var(--navy-soft);
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.product-tile:hover img {
  transform: scale(1.06);
}

.product-tile .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(transparent 40%, rgba(5, 8, 56, 0.85));
  color: var(--white);
}

.product-tile .overlay h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.product-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  background: #dce4f2;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

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

.product-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(transparent 45%, rgba(5, 8, 56, 0.8));
  color: var(--white);
}

.product-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

/* Vision / Mission */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vm-panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.vm-panel h3 {
  color: var(--teal);
  margin-bottom: 1rem;
}

.vm-panel p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.vm-panel ul {
  display: grid;
  gap: 0.75rem;
}

.vm-panel li {
  padding-left: 1.1rem;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.vm-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-item {
  padding: 1.5rem 1.2rem;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

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

.value-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Factsheet */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fact-item {
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.fact-item dt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.fact-item dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.35;
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  color: var(--white);
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img,
.page-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 56, 0.9), rgba(5, 8, 56, 0.45)),
    linear-gradient(180deg, rgba(5, 8, 56, 0.2), rgba(5, 8, 56, 0.7));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.78);
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 1 / 1.05;
  box-shadow: var(--shadow);
}

.split-media img,
.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checklist {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  grid-column: span 4;
}

.gallery-item.wide {
  grid-column: span 8;
  min-height: 360px;
}

.gallery-item.tall {
  min-height: 420px;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  right: 1.1rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

/* CTA band */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 28px;
  background:
    radial-gradient(500px 200px at 100% 0%, rgba(42, 214, 184, 0.25), transparent 50%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-block {
  padding: 1.4rem 1.3rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.info-block p,
.info-block a {
  margin: 0;
  color: var(--ink-soft);
}

.info-block a:hover {
  color: var(--navy);
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 214, 184, 0.18);
}

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

.map-embed {
  margin-top: 1.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
  background: var(--surface-2);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: auto;
  height: 52px;
  max-width: 240px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.03em;
}

.footer-brand span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand.has-wordmark strong,
.footer-brand.has-wordmark span {
  display: none;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-soft {
  animation: float-y 6s ease-in-out infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-content > * {
  animation: fade-up 0.9s var(--ease) both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-content > *:nth-child(3) {
  animation-delay: 0.22s;
}
.hero-content > *:nth-child(4) {
  animation-delay: 0.32s;
}
.hero-content > *:nth-child(5) {
  animation-delay: 0.42s;
}

/* Responsive */
@media (max-width: 1100px) {
  .why-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 56, 0.96);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 1.35rem;
    padding: 0.85rem 1.25rem;
  }

  .nav-cta {
    display: inline-flex;
    margin-top: 1rem;
  }

  .header-cta {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .intro-strip,
  .product-showcase,
  .vm-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .product-feature {
    min-height: 420px;
  }

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

@media (max-width: 640px) {
  .brand-logo.full {
    height: 40px;
    max-width: min(200px, 58vw);
  }

  .why-grid,
  .values-grid,
  .product-list,
  .fact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 12;
    min-height: 240px;
  }

  .hero-meta {
    gap: 1.1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand img {
    height: 44px;
    max-width: 200px;
  }
}
