/* ============================================================
   MK Trading Company — stylesheet
   1. Tokens      2. Base       3. Buttons     4. Header
   5. Sections    6. Cards      7. Home        8. Pages
   9. Forms      10. Footer    11. Floaties   12. Responsive
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --cream: oklch(1 0 0);
  --cream-2: oklch(0.98 0 0);
  --paper: oklch(1 0 0);
  --sand: oklch(0.96 0 0);
  --line: oklch(0.9 0 0);
  --line-soft: oklch(0.94 0 0);

  --ink: oklch(0.18 0 0);
  --ink-deep: oklch(0.12 0 0);
  --muted: oklch(0.4 0 0);
  --muted-2: oklch(0.55 0 0);

  --brown: oklch(0.55 0.2 260);
  --brown-dk: oklch(0.45 0.2 260);
  --brown-lt: oklch(0.65 0.18 258);

  --gold: oklch(0.6 0.2 255);
  --gold-lt: oklch(0.7 0.16 250);
  --gold-dp: oklch(0.42 0.19 262);
  --gold-ink: oklch(0.35 0.15 262);

  /* Gradients — the through-line of the whole design */
  --grad-brown: linear-gradient(135deg, var(--brown-lt) 0%, var(--brown) 50%, var(--brown-dk) 100%);
  --grad-gold: linear-gradient(
    135deg,
    var(--gold-lt) 0%,
    var(--gold) 45%,
    var(--gold-dp) 100%
  );
  --grad-cta: linear-gradient(120deg, var(--brown-lt) 0%, var(--brown) 55%, var(--brown-dk) 100%);
  --grad-text: linear-gradient(100deg, var(--gold-dp), var(--gold));
  --grad-bg: linear-gradient(180deg, var(--paper) 0%, var(--cream-2) 100%);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.06);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.08);
  --shadow-lg: 0 18px 40px oklch(0 0 0 / 0.14);
  --shadow-gold: 0 10px 26px oklch(0.55 0.2 260 / 0.32);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1200px;
}

/* :root {
  --cream: oklch(0.98 0.006 85);
  --cream-2: oklch(0.95 0.014 82);
  --paper: oklch(0.99 0.005 85);
  --sand: oklch(0.93 0.03 85);
  --line: oklch(0.89 0.012 80);
  --line-soft: oklch(0.93 0.01 80);

  --ink: oklch(0.22 0.02 55);
  --ink-deep: oklch(0.2 0.03 55);
  --muted: oklch(0.45 0.03 55);
  --muted-2: oklch(0.55 0.03 55);

  --brown: oklch(0.3 0.05 45);
  --brown-dk: oklch(0.24 0.045 50);
  --brown-lt: oklch(0.36 0.045 50);

  --gold: oklch(0.72 0.14 85);
  --gold-lt: oklch(0.8 0.13 88);
  --gold-dp: oklch(0.55 0.1 60);
  --gold-ink: oklch(0.4 0.08 65);

  --grad-brown: linear-gradient(135deg, var(--brown) 0%, var(--brown-dk) 100%);
  --grad-gold: linear-gradient(
    135deg,
    var(--gold-lt) 0%,
    var(--gold) 45%,
    var(--gold-dp) 100%
  );
  --grad-cta: linear-gradient(120deg, var(--brown) 0%, var(--brown-dk) 100%);
  --grad-text: linear-gradient(100deg, var(--gold-dp), var(--gold));

  --shadow-sm: 0 1px 2px oklch(0.3 0.03 55 / 0.06);
  --shadow-md: 0 6px 18px oklch(0.3 0.03 55 / 0.08);
  --shadow-lg: 0 18px 40px oklch(0.3 0.03 55 / 0.14);
  --shadow-gold: 0 10px 26px oklch(0.55 0.1 60 / 0.32);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1200px;
} */


/* ---------- 2. Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "IBM Plex Sans",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="ta"] body,
html[lang="ta"] h1,
html[lang="ta"] h2,
html[lang="ta"] h3 {
  font-family: "Noto Sans Tamil", "IBM Plex Sans", system-ui, sans-serif;
}

h1,
h2,
h3,
.font-display {
  font-family: "Archivo", system-ui, sans-serif;
  color: var(--ink-deep);
  line-height: 1.12;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 24px;
}
.wrap-sm {
  max-width: 900px;
  margin: 0 auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--brown);
  color: var(--cream);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Gold gradient text — used on one key word per heading, never more */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow label above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
}

/* ---------- 3. Buttons (gradient + sheen sweep) ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    filter 0.35s var(--ease);
}

/* The sheen: a skewed light band that sweeps across on hover */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 20%,
    oklch(1 0 0 / 0.28) 45%,
    oklch(1 0 0 / 0.28) 55%,
    transparent 80%
  );
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.75s var(--ease);
  z-index: -1;
}
.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%) skewX(-18deg);
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
  transition-duration: 0.1s;
}

.btn-primary {
  background: var(--grad-brown);
  color: var(--cream);
  box-shadow: 0 6px 18px oklch(0.3 0.05 45 / 0.28);
}
.trust-item span {
  color: var(--primary);
}
.btn-primary:hover {
  box-shadow: 0 12px 30px oklch(0.3 0.05 45 / 0.4);
  filter: saturate(1.1);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink-deep);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  box-shadow: 0 16px 36px oklch(0.55 0.1 60 / 0.45);
  filter: brightness(1.04);
}

/* Ghost button: gradient border via a masked pseudo-element */
.btn-ghost {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(var(--cream), var(--cream)), var(--grad-gold);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.btn-ghost:hover {
  background-image: linear-gradient(var(--sand), var(--sand)), var(--grad-gold);
  box-shadow: var(--shadow-md);
}
.btn-ghost::after {
  background: none;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}
.btn-block {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Text link with an arrow that slides */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--brown);
  text-decoration: none;
  transition:
    gap 0.3s var(--ease),
    color 0.3s var(--ease);
}
.link-arrow:hover {
  gap: 12px;
  color: var(--gold-dp);
}

/* ---------- 4. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.99 0.005 85 / 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: oklch(0.99 0.005 85 / 0.96);
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--paper);
  box-shadow: var(--shadow-gold);
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .brand-name {
    font-size: 15px;
  }
}
.brand-tag {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  position: relative;
  padding: 9px 14px;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  color: oklch(0.32 0.03 55);
  white-space: nowrap;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease);
}
.nav-link:hover {
  background: var(--cream-2);
  color: var(--ink);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link.active {
  color: var(--ink);
}
.nav-link.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}

/* Desktop Switch */
.lang-switch {
  display: flex;
  border: 1px solid oklch(0.85 0.01 80);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-switch a {
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--muted-2);
  transition: 0.25s;
  white-space: nowrap;
}

.lang-switch a:hover {
  background: var(--cream-2);
}

.lang-switch a.active {
  background: var(--grad-gold);
  /* color: var(--ink-deep); */
  color: white;
}

/* Mobile dropdown */
.mobile-lang {
  display: none;
}

.mobile-lang select {
  height: 36px;
  border: 1px solid oklch(0.85 0.01 80);
  border-radius: 999px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
  outline: none;
}

/* Prevent button text from wrapping */
.header-cta {
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
  .desktop-lang {
    display: none;
  }

  .mobile-lang {
    display: block;
  }

  .header-actions {
    gap: 0px;
  }

  .mobile-lang select {
    width: 72px;
    padding: 0 8px;
  }

  .header-cta {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .header-actions {
    gap: 6px;
  }

  .mobile-lang select {
    width: 64px;
    font-size: 12px;
  }

  .header-cta {
    padding: 7px 10px;
    font-size: 12px;
  }
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid oklch(0.85 0.01 80);
  border-radius: 7px;
  background: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 18px;
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
}
.nav-mobile.open {
  display: flex;
  animation: slideDown 0.3s var(--ease);
}
.nav-mobile a {
  padding: 13px 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: oklch(0.28 0.03 55);
  border-bottom: 1px solid var(--line-soft);
}
.nav-mobile a.active {
  color: var(--gold-dp);
}
.nav-mobile .btn {
  margin-top: 14px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- 5. Sections ---------- */
.section {
  padding: 76px 0;
}
.section-tight {
  padding: 60px 0;
}
.section-alt {
  background: var(--cream-2);
}

.section-head {
  max-width: 660px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
}
.section-head .eyebrow {
  justify-content: center;
}

/* Dark page header (About / Products / Services / Factory / Terms / Contact) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-cta);
  padding: 72px 24px 60px;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      700px 320px at 15% 0%,
      oklch(0.72 0.14 85 / 0.2),
      transparent 65%
    ),
    radial-gradient(
      560px 280px at 88% 100%,
      oklch(0.72 0.14 85 / 0.14),
      transparent 60%
    );
  pointer-events: none;
}
.page-hero > * {
  position: relative;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 16px;
  color: oklch(0.85 0.02 80);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero .kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 15px;
  border-radius: var(--r-pill);
  background: oklch(0.72 0.14 85 / 0.18);
  border: 1px solid oklch(0.72 0.14 85 / 0.35);
  color: oklch(0.9 0.06 85);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- 6. Cards ---------- */
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
/* Gradient bar that wipes in across the top on hover */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: oklch(0.85 0.04 82);
}
.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--sand), oklch(0.9 0.05 85));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  transition: transform 0.4s var(--ease);
}
.card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.card h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Pills */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: var(--sand);
  color: var(--gold-ink);
}
.pill-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}

/* ---------- 7. Home ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}
/* Warm gradient mesh behind the hero */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  background:
    radial-gradient(
      620px 420px at 82% 18%,
      oklch(0.72 0.14 85 / 0.22),
      transparent 62%
    ),
    radial-gradient(
      520px 380px at 6% 82%,
      oklch(0.55 0.1 60 / 0.13),
      transparent 60%
    );
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 15px;
  border-radius: var(--r-pill);
  background: var(--sand);
  color: var(--gold-ink);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(33px, 4.7vw, 55px);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 30px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
}

/* Hero slider: tilted card with a gold glow ring */
.hero-media {
  position: relative;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 28px;
  background: var(--grad-gold);
  filter: blur(38px);
  opacity: 0.3;
  z-index: -1;
}

.hero-slider {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--grad-brown);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.4deg);
  transition: transform 0.6s var(--ease);
}
.hero-slider:hover {
  transform: rotate(0deg) scale(1.01);
}

.slides {
  position: relative;
  height: 460px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition:
    opacity 0.8s var(--ease),
    transform 1.2s var(--ease),
    visibility 0s linear 0.8s;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 0.8s var(--ease),
    transform 6s linear,
    visibility 0s;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption sits on a dark gradient scrim so text stays readable on any photo */
.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 46px 26px 22px;
  background: linear-gradient(to top, oklch(0.2 0.03 50 / 0.88), transparent);
  color: var(--cream);
  transform: translateY(14px);
  opacity: 0;
  transition:
    transform 0.7s var(--ease) 0.15s,
    opacity 0.7s var(--ease) 0.15s;
}
.slide.active .slide-caption {
  transform: translateY(0);
  opacity: 1;
}
.slide-caption strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 19px;
}
.slide-caption span {
  font-size: 13.5px;
  color: oklch(0.86 0.05 85);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: oklch(0.99 0.005 85 / 0.85);
  backdrop-filter: blur(6px);
  color: var(--ink-deep);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition:
    opacity 0.35s var(--ease),
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.hero-slider:hover .slider-arrow,
.slider-arrow:focus-visible {
  opacity: 1;
}
.slider-arrow:hover {
  background: var(--gold);
}
.slider-arrow.prev {
  left: 14px;
}
.slider-arrow.next {
  right: 14px;
}
/* Touch devices have no hover — keep the arrows permanently visible */
@media (hover: none) {
  .slider-arrow {
    opacity: 1;
  }
}

.slider-dots {
  position: absolute;
  right: 18px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: var(--r-pill);
  background: oklch(1 0 0 / 0.45);
  cursor: pointer;
  transition:
    width 0.4s var(--ease),
    background 0.3s var(--ease);
}
.dot:hover {
  background: oklch(1 0 0 / 0.75);
}
.dot.active {
  width: 26px;
  background: var(--grad-gold);
}
.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 16px;
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  animation: floaty 4s ease-in-out infinite;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.hero-badge-title {
  font-weight: 800;
  font-size: 14px;
  font-family: "Archivo", sans-serif;
}
.hero-badge-sub {
  font-size: 12px;
  color: var(--muted);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Trust strip */
.trust-strip {
  background: var(--grad-brown);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px 120px at 50% 0%,
    oklch(0.72 0.14 85 / 0.16),
    transparent 70%
  );
}
.trust-inner {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: oklch(0.95 0.01 85);
  font-size: 14px;
  font-weight: 600;
}
.trust-item span:first-child {
  font-size: 17px;
}

/* Product teaser cards */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-thumb {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.product-thumb img {
  width: 100%;
  /* height: 170px; */
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-thumb img {
  transform: scale(1.07);
}
.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(0.24 0.045 50 / 0.35),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.product-card:hover .product-thumb::after {
  opacity: 1;
}
.product-body {
  padding: 15px;
}
.product-body strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 4px;
}
.product-body span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* Split image + text block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media img {
  width: 100%;
  /* height: 500px; */
  object-fit: contain;
}

/* Final CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-cta);
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      500px 260px at 20% 0%,
      oklch(0.72 0.14 85 / 0.22),
      transparent 65%
    ),
    radial-gradient(
      420px 240px at 85% 100%,
      oklch(0.72 0.14 85 / 0.16),
      transparent 60%
    );
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  font-size: clamp(22px, 2.8vw, 31px);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 12px;
}
.cta-band p {
  font-size: 15px;
  color: oklch(0.85 0.02 80);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ---------- 8. Inner pages ---------- */
/* Products list rows */
.prod-row {
  display: grid;
  grid-template-columns: 270px 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.prod-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.prod-row .prod-img {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.prod-row .prod-img img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.prod-row:hover .prod-img img {
  transform: scale(1.06);
}
.prod-body {
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prod-body h2 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 8px;
}
.prod-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.prod-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* Service rows */
.service-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 32px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.service-row:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}
.service-row .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.service-row h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.service-row p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* Stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-band .num {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 42px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-band .lbl {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

/* People (leadership + contact) */
.person {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.person:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.avatar {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink-deep);
  box-shadow: var(--shadow-gold);
}
.person-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.person-role {
  font-size: 13.5px;
  color: var(--gold-dp);
  font-weight: 600;
  margin: 3px 0 8px;
}
.person-phone {
  font-size: 14.5px;
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
}
.person-phone:hover {
  color: var(--gold-dp);
}

/* Factory gallery placeholders */
.gallery-tile {
  position: relative;
  min-height: 220px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: repeating-linear-gradient(
    135deg,
    oklch(0.93 0.015 80),
    oklch(0.93 0.015 80) 14px,
    oklch(0.9 0.018 80) 14px,
    oklch(0.9 0.018 80) 28px
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.4s var(--ease);
}
.gallery-tile:hover {
  transform: scale(1.02);
}
.gallery-tile .g-icon {
  font-size: 30px;
  opacity: 0.5;
}
.gallery-tile .g-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Terms rows */
.term-row {
  display: flex;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
  transition:
    box-shadow 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.term-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.term-row .card-icon {
  width: 42px;
  height: 42px;
  font-size: 19px;
  margin: 0;
}
.term-row h3 {
  font-size: 16.5px;
  margin-bottom: 6px;
}
.term-row p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.note-box {
  margin-top: 32px;
  padding: 20px 26px;
  border-radius: var(--r-md);
  background: var(--sand);
  border: 1px solid oklch(0.8 0.04 80);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gold-ink);
}

/* ---------- Local SEO block + FAQ ---------- */
.local-points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.local-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.local-points li:last-child {
  border-bottom: none;
}
.local-points span {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--grad-gold);
  font-size: 16px;
}

.fssai-line {
  display: inline-block;
  margin: 0;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--paper);
  border: 1px dashed var(--gold);
  font-size: 13px;
  color: var(--muted);
}
.fssai-line strong {
  color: var(--ink);
  letter-spacing: 0.4px;
}

.areas-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.areas-label {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 14px;
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.faq-item:hover {
  border-color: oklch(0.85 0.04 82);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-deep);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
/* Chevron that rotates when the answer opens */
.faq-item summary::after {
  content: "⌄";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--gold-ink);
  font-size: 15px;
  line-height: 1;
  transition:
    transform 0.35s var(--ease),
    background 0.3s var(--ease);
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
  background: var(--grad-gold);
}
.faq-answer {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* ---------- 9. Forms ---------- */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-card h2 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-card > p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 15px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid oklch(0.85 0.015 80);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 14.5px;
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 4px oklch(0.72 0.14 85 / 0.16);
}
.field.has-error input,
.field.has-error textarea {
  border-color: oklch(0.55 0.19 25);
}
.field-error {
  font-size: 12.5px;
  color: oklch(0.52 0.19 25);
}

/* Honeypot — hidden from humans, catches naive bots */
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.form-note {
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
  margin-top: 12px;
}

.alert {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.alert-ok {
  background: oklch(0.94 0.06 150);
  color: oklch(0.35 0.12 150);
  border: 1px solid oklch(0.8 0.1 150);
}
.alert-err {
  background: oklch(0.95 0.04 25);
  color: oklch(0.45 0.16 25);
  border: 1px solid oklch(0.85 0.08 25);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.info-card {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 26px 28px;
  color: var(--gold-ink);
}
.info-card h2 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-ink);
}
.info-card p {
  font-size: 14.5px;
  line-height: 1.9;
  margin: 0;
}

.map-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 220px;
}
.map-frame iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 240px;
}

/* ---------- 10. Footer ---------- */
.site-footer {
  background: linear-gradient(
    180deg,
    oklch(0.26 0.035 50),
    oklch(0.22 0.03 50)
  );
  color: oklch(0.92 0.01 80);
}
.footer-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 60px 24px 30px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand .brand-mark {
  color: var(--ink-deep);
}
.footer-brand span {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 16.5px;
  color: oklch(0.97 0.006 85);
}
.footer-blurb {
  font-size: 14px;
  line-height: 1.7;
  color: oklch(0.82 0.015 80);
  max-width: 320px;
  margin: 0 0 14px;
}
.footer-est {
  font-size: 12.5px;
  color: oklch(0.68 0.02 80);
  letter-spacing: 0.3px;
}

.footer-heading {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  padding: 6px 0;
  color: oklch(0.85 0.015 80);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.25s var(--ease),
    padding-left 0.25s var(--ease);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-person {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.7;
}
.footer-person strong {
  display: block;
  color: oklch(0.95 0.006 85);
  font-weight: 600;
}
.footer-person em {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: oklch(0.68 0.02 80);
}
.footer-person a {
  color: oklch(0.85 0.015 80);
  text-decoration: none;
}
.footer-person a:hover {
  color: var(--gold);
}

.footer-promise {
  font-size: 14px;
  line-height: 1.9;
  color: oklch(0.85 0.015 80);
  font-style: italic;
}
.footer-pills {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-pills span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  border: 1px solid oklch(0.45 0.03 55);
  color: oklch(0.85 0.02 80);
}
.footer-bottom {
  border-top: 1px solid oklch(0.35 0.03 55);
  padding: 18px 24px;
  text-align: center;
  font-size: 12.5px;
  color: oklch(0.62 0.02 80);
}

/* Social buttons — each lights up in its own brand colour on hover */
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: oklch(0.32 0.03 55);
  border: 1px solid oklch(0.4 0.03 55);
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: oklch(0.88 0.02 80);
  transition: fill 0.3s var(--ease);
}
.social-btn:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.social-btn:hover svg {
  fill: #fff;
}

.social-facebook:hover {
  background: linear-gradient(135deg, #1877f2, #0c5dd6);
}
.social-instagram:hover {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
}
.social-youtube:hover {
  background: linear-gradient(135deg, #ff4e45, #cc0000);
}
.social-twitter:hover {
  background: linear-gradient(135deg, #3a3a3a, #000);
}
.social-linkedin:hover {
  background: linear-gradient(135deg, #0a91d6, #0a66c2);
}
.social-whatsapp:hover {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}
.social-maps:hover {
  background: linear-gradient(135deg, #ea4335, #c5221f);
}
.social-maps:hover svg,
.social-whatsapp:hover svg {
  fill: #fff;
}

/* ---------- 11. Floating actions ---------- */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.fab:hover {
  transform: scale(1.08) translateY(-2px);
}
.fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.fab-whatsapp {
  background: linear-gradient(135deg, #4ade80, #16a34a);
}
.fab-call {
  background: var(--grad-brown);
}
.fab-call svg {
  fill: var(--cream);
}

/* Back to top — hidden until the user has scrolled down a screenful */
.fab-top {
  background: var(--grad-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
}
.fab-top svg {
  fill: var(--ink-deep);
}
.fab-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.fab-top.show:hover {
  transform: scale(1.08) translateY(-2px);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
.reveal-d4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 12. Responsive ---------- */
@media (max-width: 1080px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .brand-tag {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding-top: 52px;
  }
  .hero-slider {
    transform: none;
  }
  .slides {
    height: 360px;
  }
  .hero-badge {
    left: 12px;
    bottom: 14px;
  }
  .grid-5,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-row {
    grid-template-columns: 1fr;
  }
  .prod-row .prod-img img {
    min-height: 220px;
    max-height: 260px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .section {
    padding: 60px 0;
  }
  .cta-band {
    padding: 44px 26px;
  }
}

@media (max-width: 640px) {
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2,
  .stat-band {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 24px;
  }
  .service-row {
    flex-direction: column;
    gap: 16px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .page-hero {
    padding: 52px 20px 44px;
  }
  .form-card {
    padding: 24px 20px;
  }
  .prod-body {
    padding: 24px 22px;
  }
  .fab-stack {
    right: 14px;
    bottom: 14px;
  }
}

/* Uploaded logo (replaces the MK monogram when one is set in the admin) */
.brand-logo {
  height: 46px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand-logo {
  transform: scale(1.04);
}
.footer-brand .brand-logo {
  height: 44px;
  background: oklch(1 0 0 / 0.06);
  padding: 3px 6px;
}

/* Real factory photos (uploaded via the admin) */
.gallery-photo {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.gallery-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-photo:hover img {
  transform: scale(1.06);
}
.gallery-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 16px 12px;
  background: linear-gradient(to top, oklch(0.2 0.03 50 / 0.85), transparent);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
}