/* ===========================================
   MWM WORLDWIDE — Global Stylesheet
   Aesthetic: Editorial heritage × industrial premium
   Breakpoints:
     sm: ≤ 480px   (phones)
     md: ≤ 640px   (large phones)
     lg: ≤ 900px   (tablet portrait)
     xl: ≤ 1024px  (tablet landscape / small laptop)
   =========================================== */

/* -------- Reset & Base -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea, button { font-family: inherit; }

/* -------- Design Tokens -------- */
:root {
  --paper: #f5f1ea;
  --paper-soft: #faf7f1;
  --ink: #141414;
  --ink-soft: #2b2b2b;
  --muted: #6b6863;
  --line: #1c1c1c1a;
  --red: #c1121f;
  --red-deep: #8f0a15;
  --red-soft: #e8d5d7;
  --gold: #b8935a;
  --container: 1280px;
  --nav-h: 88px;

  --f-display: 'Playfair Display', 'Times New Roman', serif;
  --f-body: 'Manrope', -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------- Typography -------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 6vw, 5.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
.italic-serif { font-style: italic; font-family: var(--f-display); }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px; background: var(--red);
}

/* -------- Layout helpers -------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.grid { display: grid; gap: 2rem; }

@media (max-width: 900px) { .container { padding: 0 1.5rem; } }
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  :root { --nav-h: 72px; }
}

/* -------- NAV -------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

/* Transparent nav over hero video (home page only, until scrolled) */
.nav.nav-over-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav.nav-over-hero .nav-links a { color: var(--paper); }
.nav.nav-over-hero .nav-links a.active { color: var(--red); }
.nav.nav-over-hero .nav-toggle span { background: var(--paper); }
.nav.nav-over-hero .nav-cta { background: var(--red); color: var(--ink); }
.nav.nav-over-hero .nav-cta:hover { background: var(--red); color: var(--paper); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; transition: opacity .3s var(--ease); }
/* Logo swap when over hero video: primary logo fades out, light variant shows through */
.nav-logo { position: relative; display: inline-block; }
.nav-logo .logo-light {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.nav.nav-over-hero .nav-logo .logo-primary { opacity: 0; }
.nav.nav-over-hero .nav-logo .logo-light { opacity: 1; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--red);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--red); }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: .75rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .3s var(--ease);
  font-weight: 600;
}
.nav-cta:hover { background: var(--red); }

.nav-toggle {
  display: none;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: all .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span { background: var(--paper); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 9px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 9px; }

@media (max-width: 900px) {
  .nav-inner { padding: 0 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 88%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 2rem 2.5rem;
    transition: right .4s var(--ease);
    box-shadow: -20px 0 40px rgba(0,0,0,0.25);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    color: var(--paper);
    font-size: 1.75rem;
    font-family: var(--f-display);
    font-weight: 400;
  }
  .nav-links a.active { color: var(--red); }
  .nav-links a::after { display: none; }
  .nav-cta { background: var(--red); padding: .85rem 1.75rem; font-size: .85rem; }
  .nav-cta:hover { background: var(--paper); color: var(--ink); }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 1.25rem; }
  .nav-logo img { height: 36px; }
  .nav-links { width: 100%; max-width: 100%; padding: 2rem 1.75rem; }
  .nav-links a { font-size: 1.5rem; }
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
}
.btn-primary { background: var(--red); color: var(--paper); }
.btn-primary:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--red); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--red); color: var(--paper); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

@media (max-width: 480px) {
  .btn { padding: 1rem 1.5rem; font-size: .8rem; gap: .5rem; width: 100%; justify-content: center; }
}

/* -------- HERO (full-screen video) -------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  background: #0a0a0a;
}

/* Video element — object-fit fills viewport, centered */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.7) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle noise layer on top of overlay */
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}

/* Hero content sits above all layers */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.75);
  margin-bottom: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  opacity: 0;
  animation: riseIn .9s var(--ease) .1s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px; background: var(--red);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 1.75rem;
  max-width: 1100px;
}
.hero-title .accent { color: var(--red); font-style: italic; }
.hero-title .line { display: block; opacity: 0; animation: riseIn 1s var(--ease) forwards; }
.hero-title .line:nth-child(1) { animation-delay: .2s; }
.hero-title .line:nth-child(2) { animation-delay: .35s; }
.hero-title .line:nth-child(3) { animation-delay: .5s; }

.hero-lede {
  max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  color: rgba(245,241,234,0.85);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: riseIn .9s var(--ease) .65s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: riseIn .9s var(--ease) .8s forwards;
}

/* Light-variant buttons look better over dark video */
.hero .btn-ghost {
  color: var(--paper);
  border-color: rgba(245,241,234,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* Scroll-down indicator at bottom of hero */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  color: rgba(245,241,234,0.65);
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s var(--ease);
  opacity: 0;
  animation: riseIn 1s var(--ease) 1.1s forwards;
}
.hero-scroll:hover { color: var(--paper); }
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent 0%, rgba(245,241,234,0.6) 30%, rgba(245,241,234,0.6) 70%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Corner labels — editorial touch, hidden on mobile */
.hero-corner {
  position: absolute;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.55);
}
.hero-corner-tl { top: calc(var(--nav-h) + 1.5rem); left: 2rem; }
.hero-corner-tr { top: calc(var(--nav-h) + 1.5rem); right: 2rem; text-align: right; }
.hero-corner-bl { bottom: 2rem; left: 2rem; }
.hero-corner-br { bottom: 2rem; right: 2rem; text-align: right; }
.hero-corner span { display: block; color: var(--red); margin-bottom: .25rem; font-size: .65rem; }

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

/* Hero responsive */
@media (max-width: 1024px) {
  .hero-corner-tl, .hero-corner-tr { top: calc(var(--nav-h) + 1rem); }
  .hero-corner-bl, .hero-corner-br { bottom: 1.5rem; }
}
@media (max-width: 900px) {
  .hero-corner { display: none; }
  .hero-inner { padding: 0 1.5rem; }
  .hero-eyebrow { margin-bottom: 1.25rem; letter-spacing: .2em; }
  .hero-title { margin-bottom: 1.25rem; }
}
@media (max-width: 640px) {
  .hero { min-height: 520px; }
  .hero-eyebrow { font-size: .7rem; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
  .hero-lede { margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: .75rem; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { bottom: 1.5rem; font-size: .65rem; }
  .hero-scroll-line { height: 28px; }
}
@media (max-width: 480px) {
  .hero-inner { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2.25rem, 11vw, 3.5rem); }
}

/* Save mobile data — optionally hide video on small screens and show poster instead.
   Enable by adding class="hero-no-video-mobile" on the video element if you want this behavior. */
@media (max-width: 640px) {
  .hero-no-video-mobile { display: none; }
}

/* -------- SECTION HEADERS -------- */
.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}
@media (max-width: 900px) {
  .section-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
}
@media (max-width: 480px) { .section-header { margin-bottom: 2.25rem; } }
.section-title { max-width: 720px; }
.section-desc { color: var(--muted); max-width: 480px; font-size: 1.05rem; }
@media (max-width: 480px) { .section-desc { font-size: 1rem; } }

/* -------- STATS -------- */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .stats .container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; } }
@media (max-width: 480px) { .stats .container { grid-template-columns: 1fr; gap: 1.75rem; } }

.stat-block {
  border-left: 1px solid rgba(245, 241, 234, 0.15);
  padding-left: 1.75rem;
}
.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--paper);
  margin-bottom: .5rem;
  letter-spacing: -0.02em;
}
.stat-number sup { font-size: 1.75rem; color: var(--red); vertical-align: super; }
.stat-label {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.65);
}
@media (max-width: 480px) {
  .stat-block { padding-left: 1.25rem; }
  .stat-number sup { font-size: 1.25rem; }
}

/* -------- SERVICES PREVIEW -------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 2.5rem;
  background: var(--paper);
  transition: all .5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-card:hover { background: var(--ink); color: var(--paper); }
.service-card:hover h3, .service-card:hover .service-num { color: var(--paper); }
.service-card:hover .service-desc { color: rgba(245, 241, 234, 0.75); }
.service-card:hover .service-link { color: var(--red); }
.service-card:hover .service-link .arrow { transform: translate(4px, -4px); }

@media (max-width: 900px) { .service-card { min-height: auto; padding: 2.5rem 2rem; } }
@media (max-width: 480px) { .service-card { padding: 2rem 1.5rem; gap: 1rem; } }

.service-num {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--red);
  letter-spacing: .15em;
  font-weight: 600;
  transition: color .5s var(--ease);
}
.service-card h3 { transition: color .5s var(--ease); }
.service-desc { color: var(--muted); transition: color .5s var(--ease); flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .5s var(--ease);
  font-weight: 600;
}
.service-link .arrow { transition: transform .3s var(--ease); display: inline-block; }

/* -------- PROCESS -------- */
.process { background: var(--paper-soft); }
.process-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr 2fr 120px;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding .4s var(--ease);
}
.process-item:hover { padding-left: 1.5rem; }
.process-item:hover .process-num { color: var(--red); }

@media (max-width: 1024px) {
  .process-item { grid-template-columns: 60px 1.2fr 2fr 100px; gap: 1.5rem; }
}
@media (max-width: 900px) {
  .process-item {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "num title"
      "num desc"
      "num meta";
    gap: .5rem 1rem;
    padding: 1.75rem 0;
  }
  .process-item:hover { padding-left: .75rem; }
  .process-num { grid-area: num; align-self: start; padding-top: .25rem; }
  .process-title { grid-area: title; }
  .process-desc { grid-area: desc; margin-top: .25rem; }
  .process-meta { grid-area: meta; text-align: left; margin-top: .5rem; }
}
@media (max-width: 480px) {
  .process-item { grid-template-columns: 48px 1fr; gap: .25rem .75rem; }
}

.process-num {
  font-family: var(--f-mono);
  font-size: 1rem;
  color: var(--muted);
  transition: color .4s var(--ease);
  font-weight: 600;
}
.process-title {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
}
.process-desc { color: var(--muted); font-size: .95rem; }
.process-meta {
  font-family: var(--f-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  text-align: right;
}

/* -------- CLIENTS -------- */
.clients-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .clients-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .clients-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .clients-list { grid-template-columns: 1fr; } }

.client-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.client-item:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 640px) {
  .client-item { min-height: 110px; padding: 1.5rem 1rem; font-size: 1.1rem; }
}

/* -------- CTA BANNER -------- */
.cta-banner {
  background: var(--red);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem; }
}
@media (max-width: 480px) { .cta-inner { padding: 0 1.25rem; gap: 1.75rem; } }

.cta-title {
  color: var(--paper);
  font-size: clamp(1.75rem, 5vw, 4rem);
  line-height: 1.05;
}
.cta-title em { font-style: italic; color: rgba(255,255,255,0.75); }

/* -------- FOOTER -------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; margin-bottom: 3rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand img { height: 48px; margin-bottom: 1.5rem; }
.footer-brand p {
  color: rgba(245, 241, 234, 0.65);
  max-width: 360px;
  font-size: .95rem;
}
.footer h4 {
  font-family: var(--f-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: .75rem; }
.footer a {
  color: rgba(245, 241, 234, 0.75);
  font-size: .925rem;
  transition: color .25s ease;
}
.footer a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  font-family: var(--f-mono);
  font-size: .75rem;
  color: rgba(245, 241, 234, 0.5);
  letter-spacing: .05em;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; font-size: .7rem; }
}

/* -------- PAGE HEADER -------- */
.page-header {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%;
  background: var(--ink);
}
@media (max-width: 1024px) { .page-header::before { display: none; } }
@media (max-width: 900px) { .page-header { padding: calc(var(--nav-h) + 3rem) 0 3.5rem; } }
@media (max-width: 480px) { .page-header { padding: calc(var(--nav-h) + 2rem) 0 2.5rem; } }

.page-header-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: end;
}
@media (max-width: 1024px) { .page-header-inner { gap: 3rem; padding: 0 1.5rem; } }
@media (max-width: 900px) { .page-header-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
@media (max-width: 480px) { .page-header-inner { padding: 0 1.25rem; gap: 2rem; } }

.page-breadcrumb {
  font-family: var(--f-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 2rem;
}
.page-breadcrumb a:hover { color: var(--red); }
.page-breadcrumb span { color: var(--red); }

.page-title {
  font-size: clamp(2.25rem, 7vw, 5.5rem);
  margin-bottom: 1.5rem;
  line-height: 0.98;
}
.page-title .italic { font-style: italic; color: var(--red); }
.page-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
}
@media (max-width: 480px) {
  .page-breadcrumb { margin-bottom: 1.25rem; font-size: .7rem; }
  .page-sub { font-size: 1rem; }
}

.page-header-side {
  position: relative;
  color: var(--paper);
  padding: 2rem 0;
}
.page-header-side .eyebrow { color: var(--red); }
.page-header-side p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 1rem;
  max-width: 380px;
}
@media (max-width: 1024px) {
  .page-header-side { color: var(--ink); padding: 0; border-top: 1px solid var(--line); padding-top: 2rem; }
  .page-header-side p { font-size: 1.25rem; }
}
@media (max-width: 480px) { .page-header-side p { font-size: 1.15rem; } }

/* -------- SERVICE HERO BANNER -------- */
.service-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--paper);
  background: #0a0a0a;
}
.service-hero-2 {
  position: relative;
  height: 90vh;
  min-height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--paper);
  background: #0a0a0a;
}
.service-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  display: block;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.82) 100%);
  z-index: 1;
  pointer-events: none;
}
.service-hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 2;
}
.service-hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-hero-breadcrumb {
  font-family: var(--f-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(245,241,234,0.6);
  margin-bottom: 1.75rem;
}
.service-hero-breadcrumb a { color: rgba(245,241,234,0.6); }
.service-hero-breadcrumb a:hover { color: var(--red); }
.service-hero-breadcrumb span { color: var(--red); }
.service-hero-label {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.service-hero-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--red);
}
.service-hero-title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.98;
  margin-bottom: 1.5rem;
  color: var(--paper);
}
.service-hero-title .italic { font-style: italic; color: var(--red); }
.service-hero-sub {
  font-size: 1.05rem;
  color: rgba(245,241,234,0.75);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.service-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(245,241,234,0.4);
  padding: .75rem 1.5rem;
  transition: border-color .2s, color .2s;
}
.service-hero-cta:hover { border-color: var(--red); color: var(--red); }
@media (max-width: 900px) {
  .service-hero { height: 60vh; min-height: 420px; }
  .service-hero-inner { padding: calc(var(--nav-h) + 1.5rem) 1.5rem 3rem; }
}
@media (max-width: 480px) {
  .service-hero { height: auto; min-height: 360px; }
  .service-hero-inner { padding: calc(var(--nav-h) + 1.25rem) 1.25rem 2.5rem; }
  .service-hero-title { font-size: clamp(2.25rem, 11vw, 3.5rem); }
}

/* -------- SERVICE DETAIL -------- */
.service-intro { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.service-intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
@media (max-width: 900px) { .service-intro-inner { grid-template-columns: 1fr; gap: 2rem; padding: 0 1.5rem; } }
@media (max-width: 480px) { .service-intro-inner { padding: 0 1.25rem; } }

.service-intro h2 { font-size: clamp(1.75rem, 4vw, 3.25rem); }
.service-intro p { margin-top: 1.25rem; font-size: 1.05rem; color: var(--ink-soft); }
.service-intro p + p { margin-top: 1rem; }
@media (max-width: 480px) { .service-intro p { font-size: 1rem; } }

.benefit-list { list-style: none; margin-top: 2rem; }
.benefit-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list .num {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--red);
  letter-spacing: .1em;
  font-weight: 600;
  padding-top: .25rem;
}
.benefit-list h4 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  margin-bottom: .4rem;
  letter-spacing: -0.01em;
}
.benefit-list p { color: var(--muted); font-size: .95rem; margin-top: 0; }
@media (max-width: 480px) {
  .benefit-list li { grid-template-columns: 32px 1fr; gap: 1rem; }
  .benefit-list h4 { font-size: 1.15rem; }
}

.service-capabilities {
  background: var(--paper-soft);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .capability-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .capability-grid { grid-template-columns: 1fr; } }

.capability-item {
  background: var(--paper);
  padding: 2.25rem 2rem;
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.capability-item:hover { border-color: var(--red); transform: translateY(-4px); }
.capability-item .icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--ink);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.capability-item h4 { font-size: 1.2rem; margin-bottom: .5rem; }
.capability-item p { color: var(--muted); font-size: .925rem; }
@media (max-width: 480px) { .capability-item { padding: 1.75rem 1.5rem; } }

/* -------- SERVICES HUB -------- */
.service-hub-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 4rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding .4s var(--ease);
}
.service-hub-card:hover { padding-left: 2rem; }
.service-hub-card:last-child { border-bottom: none; }
@media (max-width: 1024px) { .service-hub-card { grid-template-columns: 1fr 1.5fr; gap: 2.5rem; } }
@media (max-width: 900px) {
  .service-hub-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 3rem 0; }
  .service-hub-card:hover { padding-left: .75rem; }
}
@media (max-width: 480px) { .service-hub-card { padding: 2.5rem 0; } }

.service-hub-label {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--red);
  letter-spacing: .15em;
  font-weight: 600;
}
.service-hub-title {
  font-size: clamp(1.75rem, 5vw, 4rem);
  margin: .5rem 0 1rem;
  line-height: 0.98;
}
.service-hub-title .accent { color: var(--red); font-style: italic; }
.service-hub-body p { color: var(--ink-soft); margin-bottom: 1.5rem; font-size: 1.05rem; }
@media (max-width: 480px) { .service-hub-body p { font-size: 1rem; } }

.service-hub-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--f-mono);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--ink);
  transition: all .3s var(--ease);
}
.service-hub-link:hover { color: var(--red); border-color: var(--red); gap: 1.25rem; }

/* -------- TEAM -------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 1024px) { .team-grid { gap: 2.5rem 1.75rem; } }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; } }
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; gap: 2.25rem; }
}

.team-card { display: flex; flex-direction: column; gap: 1rem; }
.team-photo {
  aspect-ratio: 4/5;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-style: italic;
}
.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(193, 18, 31, 0.25) 100%);
  pointer-events: none;
  z-index: 2;
}
.team-photo .initials { position: relative; z-index: 1; letter-spacing: -0.04em; }
.team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
}
/* Placeholder — replace with real photo when ready */
.team-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: repeating-linear-gradient(
    45deg,
    #1e1e1e,
    #1e1e1e 8px,
    #252525 8px,
    #252525 16px
  );
  z-index: 1;
}
.team-photo-placeholder svg { opacity: .3; }
.team-photo-placeholder span {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.4);
  text-align: center;
  padding: 0 1rem;
}
.team-card h3 { font-size: 1.5rem; margin-top: .5rem; }
.team-role {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--red);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}
.team-bio { color: var(--muted); font-size: .95rem; margin-top: .25rem; }

.team-values {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.team-values h2 { color: var(--paper); }
.team-values .section-desc { color: rgba(245, 241, 234, 0.65); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; } }

.value-item { padding-top: 2rem; border-top: 1px solid rgba(245, 241, 234, 0.2); }
.value-item .num {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--red);
  letter-spacing: .15em;
}
.value-item h4 {
  font-family: var(--f-display);
  font-size: 1.75rem;
  color: var(--paper);
  margin: .75rem 0;
  letter-spacing: -0.02em;
}
.value-item p { color: rgba(245, 241, 234, 0.7); font-size: .95rem; }
@media (max-width: 480px) {
  .value-item { padding-top: 1.5rem; }
  .value-item h4 { font-size: 1.5rem; }
}

/* -------- CONTACT -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
}
@media (max-width: 1024px) { .contact-grid { gap: 3.5rem; } }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-form .btn { width: auto; }
@media (max-width: 480px) {
  .contact-form { gap: 1.5rem; }
  .contact-form .btn { width: 100%; }
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; gap: 1.5rem; } }

.field { display: flex; flex-direction: column; gap: .5rem; position: relative; }
.field label {
  font-family: var(--f-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  font-weight: 600;
}
.field input, .field select, .field textarea {
  padding: .85rem 0;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 1rem;
  font-family: var(--f-body);
  color: var(--ink);
  transition: all .3s var(--ease);
  width: 100%;
  min-height: 44px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.field textarea { resize: vertical; min-height: 120px; padding: .85rem 0; }
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23141414' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 1.5rem;
}

.contact-block { padding: 2rem 0; border-bottom: 1px solid var(--line); }
.contact-block:first-child { padding-top: 2rem; }
.contact-block:last-child { border-bottom: none; }
.contact-block h4 {
  font-family: var(--f-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 1rem;
}
.contact-block p {
  font-family: var(--f-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  word-break: break-word;
}
.contact-block a { color: var(--ink); transition: color .25s ease; }
.contact-block a:hover { color: var(--red); }
@media (max-width: 480px) {
  .contact-block { padding: 1.5rem 0; }
  .contact-block p { font-size: 1.1rem; }
}

.map-embed {
  margin-top: 3rem;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  filter: grayscale(100%) contrast(1.1);
  transition: filter .4s ease;
}
.map-embed:hover { filter: grayscale(0); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) {
  .map-embed { aspect-ratio: 4/3; margin-top: 2rem; }
}

/* -------- SCROLL-TO-TOP -------- */
.scroll-indicator {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
}
@media (min-width: 901px) { .scroll-indicator { bottom: 2rem; right: 2rem; } }
.scroll-indicator a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.scroll-indicator.visible a { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-indicator a:hover { background: var(--red); }
@media (min-width: 901px) { .scroll-indicator a { width: 48px; height: 48px; } }

/* -------- REVEAL -------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* -------- UTILITIES -------- */
.text-center { text-align: center; }
.max-w-prose { max-width: 640px; }
.divider { height: 1px; background: var(--line); margin: 4rem 0; }

/* -------- TEXTILE / FABRICS GRID -------- */
.fabrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) { .fabrics-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (max-width: 720px)  { .fabrics-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px)  { .fabrics-grid { grid-template-columns: 1fr; } }

.fabric-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: default;
}
.fabric-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
  filter: saturate(0.9);
}
.fabric-card:hover img { transform: scale(1.05); filter: saturate(1.05); }
.fabric-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 20, 20, 0.75) 100%);
  pointer-events: none;
}
.fabric-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.25rem 1.25rem;
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: .5rem;
}
.fabric-label h4 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--paper);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.fabric-label span {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.7);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .fabric-label { padding: 1rem; }
  .fabric-label h4 { font-size: 1.1rem; }
  .fabric-label span { font-size: .6rem; }
}

.fabrics-note {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.fabrics-note::before {
  content: '+';
  font-size: 2.5rem;
  color: var(--red);
  font-style: normal;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .fabrics-note { font-size: 1rem; padding: 1.25rem; }
  .fabrics-note::before { font-size: 2rem; }
}

/* -------- WHY CHOOSE US -------- */
.why-choose {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.why-choose .section-header h2 { color: var(--paper); }
.why-choose .section-desc { color: rgba(245, 241, 234, 0.7); }
.why-choose .eyebrow { color: var(--red); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) { .why-layout { gap: 3rem; } }
@media (max-width: 900px)  { .why-layout { grid-template-columns: 1fr; gap: 3rem; } }

.why-reasons { list-style: none; }
.why-reasons li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(245, 241, 234, 0.12);
  align-items: start;
}
.why-reasons li:first-child { padding-top: 0; }
.why-reasons li:last-child { border-bottom: none; padding-bottom: 0; }
.why-reasons .num {
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--red);
  letter-spacing: .15em;
  font-weight: 600;
  padding-top: .4rem;
}
.why-reasons h4 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--paper);
  margin-bottom: .5rem;
  letter-spacing: -0.01em;
}
.why-reasons p { color: rgba(245, 241, 234, 0.7); font-size: .95rem; }
@media (max-width: 480px) {
  .why-reasons li { grid-template-columns: 40px 1fr; gap: 1rem; padding: 1.25rem 0; }
  .why-reasons h4 { font-size: 1.3rem; }
}

/* Gallery — mosaic of factory photos */
.why-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: .75rem;
  aspect-ratio: 4 / 5;
  position: relative;
}
.why-gallery a {
  display: block;
  overflow: hidden;
  position: relative;
  background: #222;
}
.why-gallery a:nth-child(1) { grid-column: span 2; }
.why-gallery a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  filter: grayscale(0.3);
}
.why-gallery a:hover img { transform: scale(1.08); filter: grayscale(0); }
.why-gallery a::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.why-gallery-tag {
  position: absolute;
  bottom: .75rem; left: .75rem;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(193, 18, 31, 0.9);
  padding: .3rem .65rem;
}
@media (max-width: 900px) {
  .why-gallery { aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
  .why-gallery { gap: .5rem; aspect-ratio: 1 / 1; }
  .why-gallery-tag { font-size: .6rem; padding: .25rem .5rem; }
}

/* -------- SPECIALTY / WE ARE SPECIALIST IN -------- */
.specialty {
  background: var(--paper-soft);
}
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) { .specialty-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 480px)  { .specialty-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }

.specialty-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.specialty-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.specialty-card:hover img { transform: scale(1.06); filter: brightness(.85); }
.specialty-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 20, 20, 0.78) 100%);
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.specialty-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.75rem;
  color: var(--paper);
  transform: translateY(0);
  transition: transform .4s var(--ease);
}
.specialty-info .num {
  font-family: var(--f-mono);
  font-size: .7rem;
  color: rgba(245, 241, 234, 0.7);
  letter-spacing: .2em;
  margin-bottom: .5rem;
  display: block;
}
.specialty-info h4 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.specialty-info .cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease);
}
.specialty-card:hover .cta { opacity: 1; transform: translateY(0); }
@media (max-width: 480px) {
  .specialty-info { padding: 1.25rem; }
  .specialty-info h4 { font-size: 1.3rem; }
  .specialty-info .cta { opacity: 1; transform: translateY(0); }
}

/* -------- BUSINESS FLOW -------- */
.flow {
  background: var(--paper);
}
.flow-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.flow-track::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 15%, var(--line) 85%, transparent);
  z-index: 0;
}
.flow-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .5rem;
}
.flow-icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--ink);
  transition: all .4s var(--ease);
  position: relative;
}
.flow-step:hover .flow-icon {
  background: var(--red);
  border-color: var(--red);
  color: var(--paper);
  transform: translateY(-4px);
}
.flow-icon svg { width: 32px; height: 32px; }
.flow-num {
  position: absolute;
  top: -8px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: .7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step:hover .flow-num { background: var(--paper); color: var(--red); }
.flow-step h4 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  margin-bottom: .4rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.flow-step p {
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Flow: stack to 2-col grid on tablet, vertical on mobile */
@media (max-width: 1024px) {
  .flow-track { grid-template-columns: repeat(4, 1fr); gap: 2rem 1rem; }
  .flow-track::before { display: none; }
}
@media (max-width: 720px) {
  .flow-track { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}
@media (max-width: 420px) {
  .flow-track { grid-template-columns: 1fr; gap: 1.75rem; max-width: 320px; margin-left: auto; margin-right: auto; }
  .flow-step { flex-direction: row; text-align: left; gap: 1.25rem; align-items: center; }
  .flow-step > div:last-child { flex: 1; }
  .flow-icon { margin-bottom: 0; width: 64px; height: 64px; flex-shrink: 0; }
  .flow-icon svg { width: 24px; height: 24px; }
}

/* -------- CLIENTS — LOGO GRID (replaces text version) -------- */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 3rem;
}
@media (max-width: 900px) { .clients-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .clients-logos { grid-template-columns: repeat(2, 1fr); } }

.client-logo {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  background: var(--paper);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.client-logo img {
  max-width: 75%;
  max-height: 65%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  opacity: 0.7;
  transition: all .3s var(--ease);
}
.client-logo:hover {
  background: var(--paper-soft);
}
.client-logo:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: scale(1.04);
}
@media (max-width: 480px) {
  .client-logo { padding: 1.25rem; }
}



/* -------- PRINT -------- */
@media print {
  .nav, .footer, .cta-banner, .scroll-indicator, .hero-marquee, .hero-video, .hero-scroll { display: none; }
  body { color: #000; background: #fff; }
  .hero { min-height: auto; padding: 2rem 0; }
}
