/* ======================================================
   RESET & TOKENS
====================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink:    #0d0d0d;
  --off:    #f5f4f1;
  --white:  #ffffff;
  --orange: #ff5c1a;
  --teal:   #00c4a1;
  --mid:    #6b6b6b;
  --border: rgba(13,13,13,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--off);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ======================================================
   NAVIGATION
====================================================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  transition: background 0.3s, box-shadow 0.3s;
}

#nav.nav-scrolled {
  background: rgba(245,244,241,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #fff;
  transition: color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

#nav.nav-scrolled .nav-logo { color: var(--ink); text-shadow: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  transition: color 0.2s;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.nav-links a:hover { color: #fff; }

#nav.nav-scrolled .nav-links a       { color: var(--mid); text-shadow: none; }
#nav.nav-scrolled .nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 100px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  transition: background 0.2s, border-color 0.2s !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.28) !important;
  border-color: #fff !important;
}

#nav.nav-scrolled .nav-cta {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #fff !important;
}

#nav.nav-scrolled .nav-cta:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

#nav.nav-scrolled .nav-toggle span { background: var(--ink); }

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

/* Products dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 14px 10px 10px;
  list-style: none;
  background: var(--ink);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown-menu li + li { margin-top: 2px; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255,255,255,0.8) !important;
  text-shadow: none !important;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff !important;
}


/* ======================================================
   HERO
   Layout:
   - Full viewport height
   - Image: cover, anchored top-center so faces are never cropped
   - Overlay: diagonal — heavy on left+bottom, clear on right
   - Content: left column, max 45% width, vertically centred
     with enough bottom padding to clear the stats strip (80px)
   - Stats: separate strip below hero (NOT overlapping)
====================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: #111;
}

/* ── Slider ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor to top so subjects' faces/heads are never cropped */
  object-position: center top;
}

/* ── Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  /* Strong dark band on left 40% for text legibility; clear on right */
  background:
    linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.15) 60%, transparent 80%),
    linear-gradient(to top,   rgba(0,0,0,0.40) 0%, transparent 40%);
}

/* ── Hero body: anchored left, vertically centered, clears stats ── */
.hero-body {
  position: absolute;
  /* sit within left 48% so text never overlaps subjects */
  left: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 48px 80px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.hero-headline {
  /* Constrained so it never bleeds into image area */
  font-size: clamp(2.4rem, 3.6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 14px 32px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,92,26,0.45);
}

.btn-hero-ghost {
  padding: 12px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.50);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-hero-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.10);
}

/* ── Slide dots: vertical bar on right edge ── */
.hero-dots {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-dot {
  width: 3px;
  height: 24px;
  border: none;
  border-radius: 3px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: background 0.3s, height 0.3s;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  height: 42px;
}

/* ── Stats: BELOW the hero as its own strip, not overlapping ── */
.hero-stats {
  display: flex;
  align-items: stretch;
  background: var(--ink);
  border-bottom: 1px solid #1a1a1a;
}

.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 16px;
}

.stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-align: center;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin: 14px 0;
}


/* ======================================================
   TICKER
====================================================== */
.ticker {
  overflow: hidden;
  background: #161616;
  padding: 12px 0;
  white-space: nowrap;
  border-bottom: 1px solid #222;
}

.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 0 6px;
}

.ticker-sep {
  display: inline;
  font-size: 11px;
  color: var(--orange);
  padding: 0 4px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ======================================================
   SHARED SECTION STYLES
====================================================== */
.section-light { padding: 112px 0; background: var(--off); }
.section-dark  { padding: 112px 0; background: var(--ink); }

.section-head  { margin-bottom: 64px; }

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.eyebrow-light { color: rgba(255,255,255,0.45); }
.section-sub-light { color: rgba(255,255,255,0.55); }

.section-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title-light { color: #fff !important;}
.section-title span  { color: var(--orange); }
.accent-teal         { color: var(--teal) !important; }

.section-sub {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }


/* ======================================================
   PRODUCTS
====================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.product-card:hover { box-shadow: inset 0 0 0 2px var(--orange); }

.product-img-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
  cursor: pointer;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap { transform: scale(1.04); }
.product-img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.product-info {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  background: var(--off);
  border-top: 2px solid var(--border);
  gap: 0;
}

.product-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.read-more-btn {
  flex-shrink: 0;
  display: inline-block;
  background: var(--ink);
  border: none;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.read-more-btn:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.product-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--mid);
  margin-top: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ======================================================
   WHY
====================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.why-card {
  padding: 36px 28px;
  background: #141414;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}

.why-card:hover { background: #1a1a1a; }

.why-icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 2px;
}

.why-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.why-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}


/* ======================================================
   PROCESS
====================================================== */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.process-line {
  position: absolute;
  top: 27px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--ink) 0, var(--ink) 6px, transparent 6px, transparent 14px);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--off);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  transition: background 0.25s, transform 0.25s, border-color 0.25s, color 0.25s;
}

.process-step:hover .step-num {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.08);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--mid);
}


/* ======================================================
   CONTACT
====================================================== */
.section-cta {
  padding: 112px 0;
  background: var(--orange);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: 'LETS WORK';
  position: absolute;
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 380px;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f2f2f2;
}

.contact-item:last-of-type { border-bottom: none; margin-bottom: 20px; }

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.contact-btns { display: flex; flex-direction: column; gap: 10px; }

.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 100px;
  background: #25D366; color: #fff;
  font-size: 13px; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

.btn-email {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; border-radius: 100px;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}
.btn-email:hover { transform: translateY(-2px); background: #222; }


/* ======================================================
   FOOTER
====================================================== */
footer { background: var(--ink); padding: 26px 0; border-top: 1px solid #1e1e1e; }

.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

.footer-logo { font-size: 14px; font-weight: 900; letter-spacing: 0.06em; color: #fff; }
.footer-mid, .footer-right { font-size: 12px; color: #555; }


/* ======================================================
   FLOATING WHATSAPP
====================================================== */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }


/* ======================================================
   RESPONSIVE — Tablet (≤1100px)
====================================================== */
@media (max-width: 1100px) {
  .container { padding: 0 36px; }
  #nav { padding: 0 36px; }

  .hero-body {
    width: 55%;
    padding: 80px 48px 40px 48px;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
  .process-step { align-items: flex-start; text-align: left; }

  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-left p { max-width: 100%; }

  .section-light,
  .section-dark,
  .section-cta { padding: 88px 0; }
}


/* ======================================================
   RESPONSIVE — Mobile (≤768px)
====================================================== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav */
  #nav { padding: 0 20px; height: 60px; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(245,244,241,0.98);
    backdrop-filter: blur(16px);
    padding: 8px 20px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  #nav.nav-open .nav-links { display: flex; }

  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block; padding: 13px 0;
    color: var(--mid) !important; font-size: 13px;
  }
  .nav-links a:hover { color: var(--ink) !important; }
  .nav-cta {
    display: inline-block !important; margin-top: 8px !important;
    background: var(--ink) !important; border-color: var(--ink) !important;
    color: #fff !important;
  }

  /* Products dropdown becomes a tap-to-expand inline list on mobile */
  .nav-dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin: 0 0 4px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-dropdown.nav-dropdown-open .nav-dropdown-menu { display: block; }

  .nav-dropdown-open .nav-dropdown-arrow { transform: rotate(180deg); }

  .nav-dropdown-menu a {
    padding: 11px 0 11px 16px;
    font-size: 12.5px;
    color: var(--mid) !important;
  }

  .nav-dropdown-menu a:hover { background: transparent; color: var(--ink) !important; }

  /* Hero: full-viewport, text anchored to bottom-left like Nike mobile */
  .hero { height: 100svh; min-height: 100svh; }

  .hero-slide img { object-position: center top; }

  /* Overlay: heavier at bottom so bottom text is always legible */
  .hero-overlay {
    background:
      linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.30) 40%, transparent 70%),
      linear-gradient(to right, rgba(0,0,0,0.30) 0%, transparent 60%);
  }

  .hero-body {
    width: 100%;
    padding: 0 28px 48px;
    justify-content: flex-end;
  }

  .hero-eyebrow { display: none; }
  .hero-sub     { display: none; }

  .hero-headline {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 28px;
  }

  /* Only show primary CTA on mobile */
  .hero-actions { flex-direction: column; }
  .btn-hero-ghost { display: none; }
  .btn-hero-primary { width: fit-content; padding: 14px 32px; }

  /* Dots: horizontal, bottom-center */
  .hero-dots {
    flex-direction: row;
    top: unset;
    bottom: 20px;
    right: auto;
    left: 28px;
    transform: none;
  }
  .hero-dot { width: 20px; height: 3px; }
  .hero-dot.active { width: 36px; height: 3px; }

  /* Stats: 2x2 grid on mobile */
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 48%; padding: 20px 12px; }
  .hero-stat-divider { display: none; }
  .stat-num { font-size: 1.4rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; border-radius: 16px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; border-radius: 16px; }
  .why-card { padding: 22px 18px; }

  /* Process */
  .process-track { grid-template-columns: 1fr; gap: 24px; }
  .process-step { align-items: flex-start; text-align: left; }

  /* Contact */
  .contact-card { padding: 24px 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }

  .section-light,
  .section-dark,
  .section-cta { padding: 68px 0; }
  .section-head { margin-bottom: 44px; }
}


/* ======================================================
   SMALL MOBILE (≤420px)
====================================================== */
@media (max-width: 420px) {
  .hero-headline { font-size: 1.9rem; }
  .hero-stat { flex: 1 1 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 20px 16px; }
}


/* ======================================================
   DESKTOP ONLY (≥1100px) — scale up all text
====================================================== */
@media (min-width: 1100px) {

  html { font-size: 18px; }

  /* Nav */
  #nav { height: 68px; }
  .nav-links a   { font-size: 12.5px; letter-spacing: 0.06em; }
  .nav-logo      { font-size: 16px; letter-spacing: 0.08em; }
  .nav-cta       { font-size: 11.5px !important; padding: 8px 20px !important; }

  /* Hero */
  .hero-eyebrow  { font-size: 18px; letter-spacing: 0.24em; margin-bottom: 24px; }
  .hero-headline { font-size: clamp(2.2rem, 4.5vw, 5rem); line-height: 0.98; }
  .hero-sub      { font-size: 1.2rem; line-height: 1.85; margin-bottom: 44px; }
  .btn-hero-primary { font-size: 16px; padding: 20px 48px; }
  .btn-hero-ghost   { font-size: 16px; padding: 18px 44px; }

  /* Stats strip */
  .hero-stat  { padding: 32px 20px; }
  .stat-num   { font-size: 2.4rem; }
  .stat-label { font-size: 12px; letter-spacing: 0.12em; }

  /* Ticker */
  .ticker-item { font-size: 13px; }

  /* Section headings */
  .eyebrow       { font-size: 13px; letter-spacing: 0.22em; margin-bottom: 18px; }
  .section-title { font-size: clamp(3rem, 4.2vw, 4.4rem); }
  .section-sub   { font-size: 1.15rem; margin-top: 20px; }

  /* Products */
.product-name    { font-size: 1.3rem; }
.product-desc    { font-size: 17px; line-height: 1.85; }
  .read-more-btn   { font-size: 13px; padding: 9px 18px; }
  .product-info    { padding: 24px 28px 28px; }

  /* Why */
  /* Why */
.why-title { font-size: 1.3rem; }
.why-desc  { font-size: 17px; line-height: 1.85; }
  .why-icon  { font-size: 32px; }
  .why-card  { padding: 44px 36px; gap: 14px; }
.why-card  { padding: 48px 40px; gap: 16px; }
  /* Process */
.step-title { font-size: 1.3rem; }
.step-desc  { font-size: 17px; line-height: 1.85; }
  .step-num   { width: 64px; height: 64px; font-size: 16px; }

  /* Contact */
  .contact-left h2  { font-size: clamp(2.8rem, 4.2vw, 4rem); }
  .contact-left p   { font-size: 1.15rem; line-height: 1.85; }
  .contact-value    { font-size: 16px; }
  .contact-label    { font-size: 12px; }
  .btn-wa,
  .btn-email        { font-size: 15px; padding: 18px; }

  /* Footer */
  .footer-logo  { font-size: 17px; }
  .footer-mid,
  .footer-right { font-size: 14px; }
}
/* ======================================================
   LIGHTBOX
====================================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open {
display: none;}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  cursor: default;
  animation: lb-in 0.25s ease;
}

@keyframes lb-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { background: rgba(255,255,255,0.22); }
/* ===== WORK STRIP (static 4-category teaser) ===== */
.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.btn-work-portfolio {
  display: inline-block;
  flex-shrink: 0;
  padding: 14px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  color: #f5f5f3;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-work-portfolio:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
}

.work-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.work-card {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  border-radius: 2px;
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: zoom-in;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: grayscale(30%);
}

.work-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.work-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f5f3;
}

.card-expand-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 14, 17, 0.85);
  border: 1px solid rgba(255,255,255,0.15);
  color: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease;
  pointer-events: none;
}

.card-expand-btn svg { width: 16px; height: 16px; }

.work-card:hover .card-expand-btn { background: var(--orange); border-color: var(--orange); }

@media (max-width: 900px) {
  .work-card { height: 420px; }
}

@media (max-width: 560px) {
  .work-strip { grid-template-columns: 1fr; gap: 16px; }
  .work-card { height: 360px; }
  .btn-work-portfolio { width: 100%; text-align: center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .work-card, .work-card img { transition: none; }
}

/* Visible keyboard focus */
.work-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ===== PORTFOLIO PAGE (work.html) ===== */
.portfolio-header { padding-bottom: 48px; }
.portfolio-section { padding-top: 0; }

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.portfolio-filter-btn {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.portfolio-filter-btn:hover {
  color: #fff;
  border-color: var(--orange);
}

.portfolio-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.portfolio-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: grayscale(30%);
}

.portfolio-card:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.portfolio-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f5f3;
}

.portfolio-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* Portfolio lightbox */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px 20px;
}

.portfolio-lightbox.open { display: flex; }

.portfolio-lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.portfolio-lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.portfolio-lightbox-close,
.portfolio-lightbox-prev,
.portfolio-lightbox-next {
  position: absolute;
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.18s ease;
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-prev:hover,
.portfolio-lightbox-next:hover { background: var(--orange); color: #111; }

.portfolio-lightbox-close { top: 24px; right: 24px; }
.portfolio-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.portfolio-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 600px) {
  .portfolio-lightbox-prev { left: 8px; }
  .portfolio-lightbox-next { right: 8px; }
  .portfolio-lightbox-close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card, .portfolio-card img, .portfolio-filter-btn { transition: none; }
}

  .contact-icon:hover {
  transform: translateY(-2px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-img {
  height: 32px; /* adjust to your logo's aspect ratio */
  width: auto;
}

.nav-logo-text {
  font-weight: 700;
  /* keep your existing text styling here */
}
/* ===== QUOTE PAGE (quote.html) ===== */
.quote-header { padding-bottom: 48px; }
.quote-section { padding-top: 64px; padding-bottom: 96px; }

.quote-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px;
}

.quote-group + .quote-group {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.quote-group-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 24px;
}

.quote-field { display: flex; flex-direction: column; gap: 8px; }
.quote-field-full { grid-column: 1 / -1; }

.quote-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.req { color: var(--orange); }

.quote-field input[type="text"],
.quote-field input[type="email"],
.quote-field input[type="tel"],
.quote-field select,
.quote-field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.quote-field input[type="file"] {
  font-family: inherit;
  font-size: 13.5px;
  color: var(--mid);
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}

.quote-field textarea { resize: vertical; min-height: 90px; }

.quote-phone-group {
  display: flex;
  gap: 8px;
}

.quote-phone-group select {
  flex: 0 0 108px;
  min-width: 0;
}

.quote-phone-group input {
  flex: 1;
  min-width: 0;
}

@media (max-width: 480px) {
  .quote-phone-group select { flex-basis: 92px; }
}

.quote-hint {
  font-size: 12px;
  color: var(--mid);
}

.quote-checkbox-group,
.quote-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-checkbox,
.quote-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.quote-checkbox:has(input:checked),
.quote-radio:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255,92,26,0.08);
}

.quote-checkbox input,
.quote-radio input { accent-color: var(--orange); }

.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.quote-submit-btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,26,0.35);
}

.quote-wa-btn {
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 16px 32px;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.quote-wa-btn:hover {
  border-color: #25d366;
  color: #128c46;
  transform: translateY(-2px);
}

.quote-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--mid);
}

@media (max-width: 720px) {
  .quote-form { padding: 28px 22px; }
  .quote-grid { grid-template-columns: 1fr; }
}

/* ===== STORY / ABOUT PAGE (about.html) ===== */
.story-hero { padding-bottom: 56px; }
.story-hero .section-title { max-width: 760px; }

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  aspect-ratio: 4 / 5;
}

.about-image-front {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  filter: grayscale(25%);
  transition: filter 0.3s ease;
  box-shadow: 0 20px 50px rgba(13,13,13,0.14);
}

.about-image-stack:hover .about-image-front {
  filter: grayscale(0%);
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 28px;
  max-width: 56ch;
}

.about-copy strong { color: var(--ink); font-weight: 600; }
.about-copy p:last-of-type { margin-bottom: 0; }

.story-line {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  max-width: 48ch;
}

.story-line span { color: var(--orange); }

/* CTA banner */
.about-cta {
  background: var(--ink);
  padding: 88px 0;
  text-align: center;
}

.about-cta-inner { max-width: 560px; margin: 0 auto; }

.about-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.about-cta p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 32px;
}

.about-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.about-cta-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,26,0.35);
}

.about-cta-ghost {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.about-cta-ghost:hover {
  border-color: #25d366;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-image-stack { max-width: 420px; margin: 0 auto; }
  .about-copy p { max-width: none; }
  .story-line { max-width: none; }
}

@media (max-width: 480px) {
  .story-hero { padding-bottom: 40px; }
  .about-cta { padding: 64px 0; }
  .story-line {
    margin-top: 32px;
    padding-top: 28px;
    font-size: 1.05rem;
    line-height: 1.5;
  }
} 

/* ===== CATEGORY / PRODUCT LANDING PAGES (e.g. streetwear.html) ===== */
.cat-hero { padding-bottom: 56px; }
.cat-hero-sub { max-width: 620px; margin-top: 18px; }
.cat-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
 
/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
 
.feature-card {
  padding: 32px 28px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 4px;
}
 
.feature-num {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
 
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
 
.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mid);
}
 
.tag-cloud-note {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  max-width: 640px;
}
 
/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
 
.process-step { position: relative; padding-top: 8px; }
 
.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 20px;
}
 
.process-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
 
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--mid);
}
 
 
/* Finishing options grid */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
 
.finish-card {
  overflow: hidden;
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
}
 
.finish-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.5s ease, filter 0.3s ease;
}
 
.finish-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
 
.finish-card h3 {
  margin: 16px 20px 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
 
.finish-card p {
  margin: 0 20px 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
}
 
/* UK/EU positioning block */
.uk-eu-block { max-width: 800px; }
.uk-eu-block p {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 22px;
}
.uk-eu-block p:last-child { margin-bottom: 0; }
 
/* FAQ accordion */
.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.faq-item {
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 4px 24px;
}
 
.faq-item summary {
  padding: 20px 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 
.faq-item summary::-webkit-details-marker { display: none; }
 
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
 
.faq-item[open] summary::after { transform: rotate(45deg); }
 
.faq-item p {
  padding-bottom: 22px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}
 
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .finish-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .finish-grid { grid-template-columns: 1fr; }
  .cat-hero-btns { flex-direction: column; }
  .cat-hero-btns a { text-align: center; }
}
 
/* ── Hero split layout with image ── */
.cat-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
 
.cat-hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(15%);
}
 
/* ── Why-us image + compact feature grid ── */
.why-us-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
 
.why-us-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(20%);
}
 
.feature-grid-compact {
  grid-template-columns: repeat(2, 1fr);
}
 
/* ── Product shot grid (What We Manufacture) ── */
.product-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
 
.product-shot {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 2px;
  background: #14181c;
  border: 1px solid rgba(255,255,255,0.08);
}
 
.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.5s ease, filter 0.3s ease;
}
 
.product-shot:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
 
.product-shot-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(11, 14, 17, 0.85);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f5f3;
}
 
/* ── UK/EU layout with image ── */
.uk-eu-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}
 
.uk-eu-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(20%);
}
 
@media (max-width: 900px) {
  .cat-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .cat-hero-media { order: -1; }
  .cat-hero-media img { height: 260px; }
 
  .why-us-layout { grid-template-columns: 1fr; }
  .why-us-image img { min-height: 240px; }
 
  .product-shot-grid { grid-template-columns: repeat(2, 1fr); }
 
  .uk-eu-layout { grid-template-columns: 1fr; gap: 28px; }
  .uk-eu-image { order: -1; }
  .uk-eu-image img { height: 240px; }
}
 
@media (max-width: 560px) {
  .feature-grid-compact { grid-template-columns: 1fr; }
  .product-shot-grid { grid-template-columns: 1fr; }
}
.quote-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.quote-submit-btn.is-loading {
  position: relative;
  color: transparent;
}
.quote-submit-btn.is-loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: quote-spin 0.6s linear infinite;
}
@keyframes quote-spin {
  to { transform: rotate(360deg); }
}
.quote-status {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.quote-status.show {
  display: block;
}
.quote-status.success {
  background: #e6f7ed;
  color: #1a7f4b;
  border: 1px solid #b6e6c9;
}
.quote-status.error {
  background: #fdecea;
  color: #b3261e;
  border: 1px solid #f6c6c2;
}
