/* BABA ECOPACK — red accents, black text, white backgrounds */

:root {
  --red: #e31e24;
  --red-dark: #c4191f;
  --red-soft: rgba(227, 30, 36, 0.08);
  --red-glow: rgba(227, 30, 36, 0.18);
  --black: #111111;
  --white: #ffffff;
  --bg: #fafafa;
  --bg-alt: #f5f5f5;
  --text: #111111;
  --text-muted: #5c5c5c;
  --border: #e5e5e5;
  --radius: 10px;
  --radius-lg: 16px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Montserrat", system-ui, sans-serif;
  --header-h: 76px;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Typography */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 28px var(--red-glow);
}

.btn-outline {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.brand-tagline {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 15ch;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
}

.main-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--red);
  color: var(--red);
  background: var(--white);
  flex-shrink: 0;
  overflow: visible;
  transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease);
}

.social-links__item svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.social-links__item svg[fill="none"] {
  fill: none;
  stroke: currentColor;
}

.social-links__item:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.social-links--footer {
  margin-top: 0.25rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  transition: var(--ease);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  overflow: hidden;
}

.hero-copy--solo {
  max-width: 720px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-blob--1 {
  top: -60px;
  right: -40px;
  width: 420px;
  height: 420px;
  background: rgba(227, 30, 36, 0.07);
}

.hero-blob--2 {
  bottom: -80px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: rgba(227, 30, 36, 0.06);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 999px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.stat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-icon svg circle {
  fill: var(--red);
  stroke: none;
}

.hero-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--black);
}

.hero-points li > div > span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  animation: fadeIn 0.7s ease-out 0.15s both;
}

.hero-copy {
  animation: fadeIn 0.7s ease-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 20px 50px rgba(0, 0, 0, 0.07);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 0 0 4px 4px;
}

.hero-card-logo {
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.hero-card h3 {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sample-tile {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.sample-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.25));
}

.sample-tile--1 { background: linear-gradient(145deg, #c4a882, #9a7d5c); }
.sample-tile--2 { background: linear-gradient(145deg, #8a9a8e, #5e6e62); }
.sample-tile--3 { background: linear-gradient(145deg, #a89b8c, #7a6d60); }
.sample-tile--4 { background: linear-gradient(145deg, #d4d4d4, #a8a8a8); }

.hero-card-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Image gallery scroller */
.gallery-scroll {
  background: var(--bg);
  border-block: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
}

.gallery-scroll__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-scroll__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: galleryScroll 35s linear infinite;
}

.gallery-scroll:hover .gallery-scroll__track {
  animation-play-state: paused;
}

.gallery-scroll__item {
  flex-shrink: 0;
  margin: 0;
  width: 240px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.gallery-scroll__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section--compact {
  padding: 2.75rem 0;
}

.section--gray {
  background: var(--bg);
}

.section-head {
  max-width: 620px;
  margin-bottom: 2rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

/* Cards */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.work-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  background: var(--red-soft);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}

.card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.feature-list p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.feature-list--wide {
  max-width: 720px;
  margin-inline: auto;
}

.visual-panel {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.visual-panel img {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.spec-list {
  position: relative;
  z-index: 1;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list span:first-child {
  color: var(--text-muted);
}

.spec-list span:last-child {
  font-weight: 600;
  text-align: right;
  color: var(--black);
}

/* Sizes */
.sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.size-card {
  position: relative;
  text-align: center;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--ease);
}

.size-card:hover {
  border-color: var(--red);
}

.size-card--featured {
  border-color: var(--red);
  box-shadow: 0 16px 40px var(--red-glow);
}

.size-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
}

.size-dim {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--red);
  margin: 0.5rem 0 0.75rem;
}

.size-card p:last-child {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* CTA */
.cta {
  background: var(--bg);
  color: var(--black);
  padding: 2.75rem 0;
  text-align: center;
  border-block: 1px solid var(--border);
}

.cta h2 {
  color: var(--black);
  margin-bottom: 0.75rem;
}

.cta p {
  max-width: 520px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info address {
  font-style: normal;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: var(--red);
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--black);
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-row {
  margin-bottom: 1.15rem;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--black);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-status--success {
  color: #0d7a3e;
}

.form-status--error {
  color: var(--red);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

/* About & Vision */
.about-quote {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.what-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.what-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.what-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.what-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.what-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.what-card .stat-icon {
  margin-bottom: 1rem;
}

.industry-list {
  list-style: none;
}

.industry-item {
  border-bottom: 1px solid var(--border);
}

.industry-item:first-child {
  border-top: 1px solid var(--border);
}

.industry-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  transition: color var(--ease);
}

.industry-link:hover {
  color: var(--red);
}

.industry-link:hover .industry-dot {
  background: var(--red);
  transform: scale(1.3);
}

.industry-name {
  flex: 1;
}

.industry-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background var(--ease), transform var(--ease);
}

.industry-num {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Industry gallery page */
.industry-page {
  padding-top: calc(var(--header-h) + 2rem);
}

.industry-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.industry-nav {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.industry-nav__title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.industry-nav__list {
  list-style: none;
}

.industry-nav__list li + li {
  margin-top: 0.35rem;
}

.industry-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.industry-nav__link:hover {
  color: var(--red);
  background: var(--red-soft);
}

.industry-nav__link.is-active {
  color: var(--red);
  background: var(--red-soft);
  border-color: rgba(227, 30, 36, 0.2);
}

.industry-nav__num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  min-width: 1.25rem;
}

.industry-nav__link.is-active .industry-nav__num {
  color: var(--red);
}

.industry-nav__name {
  flex: 1;
  line-height: 1.35;
}

.industry-nav__home {
  display: inline-block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
}

.industry-nav__home:hover {
  color: var(--red);
}

.industry-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
}

.industry-back:hover {
  color: var(--red);
}

.industry-lead {
  margin-bottom: 2rem;
}

.industry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.industry-gallery__item {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.industry-gallery__item:hover {
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.industry-gallery__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg);
}

.industry-gallery__item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  border-top: 1px solid var(--border);
}

.industry-page-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.industry-page-cta p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.industry-empty .lead {
  margin-bottom: 0;
}

.vision-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.about-stat .stat-icon {
  margin-bottom: 0.25rem;
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
}

.about-stat > span:last-child {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vision-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.vision-card:hover {
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.vision-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: var(--white);
  color: var(--text-muted);
  padding: 2.5rem 0 0;
  border-top: 3px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 1.75rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-wrap {
  display: inline-block;
  width: fit-content;
}

.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  max-width: 28ch;
}

.footer-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-contact li {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.footer-contact strong {
  color: var(--black);
  font-weight: 700;
}

.footer-copy {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  text-align: center;
}

.footer-copy p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .vision-grid,
  .industry-layout {
    grid-template-columns: 1fr;
  }

  .industry-nav {
    position: static;
  }

  .industry-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .industry-nav__list li + li {
    margin-top: 0;
  }

  .industry-nav__link {
    padding: 0.55rem 0.85rem;
    white-space: nowrap;
  }

  .industry-nav__num {
    display: none;
  }

  .header-actions .social-links {
    display: none;
  }

  .about-highlights,
  .what-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    order: -1;
    min-height: auto;
  }

  .cards-4,
  .work-grid,
  .industry-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .sizes {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .header-inner .btn-sm {
    display: none;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--ease);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 600px) {
  .about-highlights,
  .what-cards {
    grid-template-columns: 1fr;
  }

  .brand-logo img {
    height: 52px;
  }

  .hero-card-logo {
    width: min(100%, 300px);
  }

  .cards-4,
  .work-grid,
  .industry-gallery {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

}
