/* ================================================
   MUKANSA — Premium Minimalist Corporate
   Palette: #0A0A0A · #FFFFFF · #8C7355 (Warm Gold)
   Fonts: Cormorant Garamond (serif) · Inter (sans)
   ================================================ */

/* Fonts loaded asynchronously via <link> in header.php for performance */

/* ─── Tokens ─────────────────────────────────── */
:root {
  --c-black:   #0A0A0A;
  --c-white:   #FFFFFF;
  --c-gray-1:  #F4F4F4;
  --c-gray-2:  #E0E0E0;
  --c-gray-3:  #9A9A9A;
  --c-gold:    #8C7355;
  --c-gold-lt: rgba(140, 115, 85, 0.18);

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  0.35s;

  --nav-h: 72px;
  --max-w: 1320px;
  --pad:   clamp(1.5rem, 5vw, 5rem);
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ─── Utilities ──────────────────────────────── */
.container   { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad); }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.grid-4      { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Typography ─────────────────────────────── */
.h-display {
  font-family: var(--f-serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.h-section {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.h-sub {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.body-lg  { font-size: 1.125rem; line-height: 1.8; color: #444; }
.body-sm  { font-size: 0.875rem; line-height: 1.6; color: var(--c-gray-3); }
.mono     { font-family: 'Courier New', monospace; font-size: 0.8rem; letter-spacing: 0.05em; }

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-gray-2);
  transition: background var(--dur) var(--ease);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-black);
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 1.25rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: max(1.5rem, 2vw);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-black);
  transition: color var(--dur) var(--ease);
  position: relative;
}
.nav__links a:hover,
.nav__links a.active { color: var(--c-gray-3); }

/* Dropdown styling */
.nav__item--dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-black);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid var(--c-gray-3);
}

.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__dropdown li:last-child {
  border-bottom: none;
}

.nav__dropdown a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.2s ease;
}

.nav__dropdown a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
}

/* Mega Menu for Products */
.nav__mega-menu {
  width: max-content;
  min-width: 650px;
  padding: 2rem 2.5rem;
  left: -150px; /* shift left so it doesn't clip right edge */
  top: 115%;    /* push slightly further down */
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.mega-row {
  display: flex;
  gap: 3rem;
}

.mega-col {
  flex: 1;
}

.mega-col h4 {
  color: var(--c-gold);
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(184, 115, 51, 0.3); /* gold subtle */
  padding-bottom: 0.75rem;
}

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

.nav__mega-menu li {
  border-bottom: none;
}

.nav__mega-menu a {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav__mega-menu a:hover {
  background: transparent;
  color: var(--c-gold);
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--c-black);
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--c-black);
  color: var(--c-white);
}
.nav__cta--catalog {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #111;
}
.nav__cta--catalog:hover {
  background: #b8944f;
  border-color: #b8944f;
  color: #111;
}
/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--c-black);
  color: var(--c-white);
  padding: 1rem 2.5rem;
}
.btn-primary:hover {
  background: var(--c-gold);
}

.btn-outline {
  background: transparent;
  color: var(--c-black);
  padding: 1rem 2.5rem;
  border: 1px solid var(--c-black);
}
.btn-outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.btn-text {
  background: transparent;
  color: var(--c-black);
  padding: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.btn-text:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ─── Divider ────────────────────────────────── */
.divider {
  display: block;
  height: 1px;
  background: var(--c-gray-2);
  margin: 0;
}

.divider-gold {
  display: block;
  height: 1px;
  width: 3rem;
  background: var(--c-gold);
}

/* ─── Section Spacing ────────────────────────── */
.section   { padding-block: clamp(4rem, 10vw, 8rem); }
.section-sm{ padding-block: clamp(3rem, 6vw, 5rem); }

/* ─── Page Header ────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--c-gray-2);
}

/* ─── Image Grid ─────────────────────────────── */
.img-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  gap: 3px;
  overflow: hidden;
}

.img-grid__col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  height: 100%;
  overflow: hidden;
}

.img-grid__col--stack .img-grid__cell {
  flex: 1;
  min-height: 0;
}

.img-grid__col--tall,
.img-grid__col--tall .img-grid__cell--full {
  height: 100%;
  flex: 1;
  min-height: 0;
}

.img-grid__cell {
  overflow: hidden;
  position: relative;
  min-height: 0;
}

.img-grid__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-grid__cell:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .img-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .img-grid__col { height: auto; }
  .img-grid__col--stack { flex-direction: row; height: 50vw; }
  .img-grid__col--tall .img-grid__cell--full { min-height: 60vw; }
}

/* ─── Split Feature (Image Left / Text Right) ─── */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--c-gray-1);
}

.split-feature__img {
  overflow: hidden;
  position: relative;
}

.split-feature__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.split-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  gap: 1.25rem;
}

.split-feature__tag {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

.split-feature__text {
  font-family: var(--f-sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: #2a2a2a;
}

@media (max-width: 768px) {
  .split-feature { grid-template-columns: 1fr; }
  .split-feature__img { min-height: 56vw; position: relative; }
}

/* ─── Lab Section ────────────────────────────── */

.lab-section {
  position: relative;
  overflow: hidden;
}

.lab-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lab-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  /* Very light white wash to keep legibility */
  filter: brightness(1.08) saturate(0.9);
}

/* Subtle white overlay for text clarity */
.lab-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  z-index: 1;
}

.lab-section__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6vw;
  padding: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 7rem);
}

.lab-section__label {
  font-family: var(--f-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-black);
  white-space: nowrap;
  min-width: 140px;
  flex-shrink: 0;
}

.lab-section__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 640px;
}

.lab-section__body p {
  font-family: var(--f-sans);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: #2a2a2a;
}

.lab-section__link {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-gray-3);
  margin-top: 0.5rem;
  transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease);
}

.lab-section__link:hover {
  color: var(--c-gold);
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .lab-section__content { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}

/* ─── Brand Statement ────────────────────────── */


.brand-statement {
  position: relative;
  background: #FFFFFF;
  border-top: 1px solid var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  padding: clamp(5rem, 10vw, 9rem) clamp(3rem, 10vw, 12rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-statement__tag {
  position: absolute;
  top: 2.25rem;
  left: 3rem;
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.brand-statement__body {
  text-align: center;
  max-width: 820px;
}

.brand-statement__body p {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  color: var(--c-black);
  letter-spacing: 0.01em;
}

.brand-statement__body p + p {
  margin-top: 0.25rem;
}

.brand-statement__link {
  position: absolute;
  bottom: 2.25rem;
  right: 3rem;
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gray-3);
  transition: color var(--dur) var(--ease), letter-spacing var(--dur) var(--ease);
}

.brand-statement__link:hover {
  color: var(--c-gold);
  letter-spacing: 0.26em;
}

/* ─── Hero Video (Full Screen) ───────────────── */

.hero-video {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--c-black);
}

.hero-video video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
  /* GPU compositing — prevents jank/freezing */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__content {
  padding: clamp(3rem, 8vw, 7rem) var(--pad) clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 8rem);
  max-width: 640px;
}

.hero__label {
  margin-bottom: 2rem;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__desc {
  margin-bottom: 3rem;
  max-width: 460px;
}

.hero__actions { display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center; }

.hero__visual {
  position: relative;
  height: 100svh;
  background: var(--c-gray-1);
  overflow: hidden;
}

.hero__visual img,
.hero__visual video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__visual-caption {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  writing-mode: vertical-rl;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── Tag / Badge ────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--c-gray-2);
  padding: 0.3rem 0.75rem;
  color: var(--c-gray-3);
}

/* ─── Product Card ───────────────────────────── */
/* ─── Certificates Marquee ───────────────────── */
.cert-section {
  background: var(--c-white);
  padding: 4rem 0 4.5rem;
  border-top: 1px solid var(--c-gray-2);
  border-bottom: 1px solid var(--c-gray-2);
}

.cert-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cert-header__tag {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.cert-header__sub {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-gray-3);
}

.cert-track-wrap {
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.cert-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.cert-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cert-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 0 1.5rem;
}

.cert-item img {
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.35);
  transition: filter 0.4s ease;
}

.cert-item:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ─── Products ───────────────────────────────── */
.product-card {

  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
}

.product-card__img {
  aspect-ratio: 3 / 4;
  background: var(--c-gray-1);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.25rem;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

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

.product-card__label {
  margin-bottom: 0.4rem;
}

.product-card__name {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── About strip ────────────────────────────── */
.about-strip {
  background: var(--c-black);
  color: var(--c-white);
}

.stat-block {
  padding: 3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-block:last-child { border-right: none; }

.stat-num {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* ─── Product Detail ─────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
}

.detail-visual {
  position: sticky;
  top: var(--nav-h);
  height: calc(100svh - var(--nav-h));
  background: var(--c-gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-visual img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}

.detail-visual:hover img { transform: scale(1.02); }

.detail-body {
  padding: 5rem var(--pad);
  border-left: 1px solid var(--c-gray-2);
}

.detail-body__header { margin-bottom: 3rem; }
.detail-body__header h1 {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
  margin-block: 1rem 1.5rem;
}

/* ─── Product Detail Tabs ─────────────────────────── */
.product-tabs {
  margin-top: 4rem;
  border-top: 1px solid var(--c-gray-2);
  padding-top: 3rem;
}

.product-tabs__header {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-gray-2);
}

.product-tab__btn {
  background: transparent;
  border: none;
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-gray-3);
  padding: 0 0 1rem 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.product-tab__btn:hover {
  color: var(--c-black);
}

.product-tab__btn.active {
  color: var(--c-black);
}

.product-tab__btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-gold);
}

.product-tab__content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.product-tab__content.active {
  display: block;
}

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

.spec-table {
  width: 100%;
  border-top: 1px solid var(--c-gray-2);
  margin-bottom: 3rem;
}

.spec-table tr {
  border-bottom: 1px solid var(--c-gray-2);
}

.spec-table td {
  padding: 1rem 0;
  font-size: 0.9rem;
  vertical-align: middle;
}

.spec-table td:first-child {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gray-3);
  width: 40%;
}

/* .spec-label — re-used for PHP data binding, styled in context */

/* Swatches */
.swatch-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.swatch {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.swatch:hover, .swatch.active {
  border-color: var(--c-gold);
  transform: scale(1.12);
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--c-black);
  color: rgba(255,255,255,0.5);
  padding-block: 5rem 3rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1.25rem;
  display: block;
}

.footer__col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--c-white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.78rem;
}

/* ─── Animations ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.anim-fade-up.delay-1 { animation-delay: 0.15s; }
.anim-fade-up.delay-2 { animation-delay: 0.30s; }
.anim-fade-up.delay-3 { animation-delay: 0.45s; }

/* Scroll-triggered fade (via .is-visible set by JS) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__visual { height: 60vw; min-height: 320px; }
  .hero__content { max-width: 100%; padding-block: 5rem 3rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-visual { position: relative; height: 60vw; min-height: 320px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .about-strip .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ref-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ─── References Grid ────────────────────────── */
.ref-section {
  padding: 10rem 0 6rem;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

/* Soft shadow/light beam background effect */
.ref-section::before {
  content: "";
  position: absolute;
  top: -20%; left: -20%;
  width: 80%; height: 160%;
  background: linear-gradient(135deg, rgba(240,240,240,0.8) 0%, rgba(255,255,255,0) 80%);
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.ref-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 1;
}

.ref-title {
  font-family: var(--f-sans);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--c-black);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .ref-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .ref-grid { grid-template-columns: repeat(7, 1fr); }
}

.ref-item {
  background: #ffffff;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ref-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(120%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.ref-item:hover img {
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
}

/* ─── Contact Page ────────────────────────── */
.contact-page {
  padding-top: var(--nav-h);
}

.contact-map {
  width: 100%;
  height: clamp(300px, 40vw, 500px);
  background: var(--c-gray-2);
  filter: grayscale(100%) contrast(110%);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  padding: 5rem 0;
  background: var(--c-gray-1);
}

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

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-title {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.contact-block { margin-bottom: 2rem; }

.contact-label {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-gray-3);
  margin-bottom: 0.5rem;
}

.contact-text, .contact-text a {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--c-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover { color: var(--c-gray-3); }

.contact-form-wrapper {
  background: #ffffff;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.contact-form-title {
  font-family: var(--f-sans);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--c-black);
}

.contact-form .form-group { margin-bottom: 1.5rem; }

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 1px solid var(--c-gray-2);
  background: transparent;
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-black);
  transition: border-color 0.3s ease;
  outline: none;
}

.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--c-gray-3); }
.contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--c-black); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 1rem; }

/* ─── Design Team Layout ─────────────────────── */
.dt-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

/* Background Soft Flow */
.dt-section::before {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 120%; height: 120%;
  background: radial-gradient(circle at 30% 20%, rgba(240,240,240,0.8) 0%, rgba(255,255,255,0) 60%),
              radial-gradient(circle at 70% 80%, rgba(245,245,245,0.8) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 0;
}

.dt-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  position: relative;
  z-index: 1;
}

.dt-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
}

.dt-h2 {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--c-black);
}

.dt-intro {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--c-gray-3);
  margin-bottom: 1.5rem;
}

/* 3-Column Complex Grid */
.dt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dt-grid {
    grid-template-columns: 250px 1fr 250px;
    gap: 3rem;
  }
}

/* Oval Portraits (Outer Columns) */
.dt-col-side {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.dt-portrait-wrapper {
  text-align: center;
}

.dt-oval {
  width: 200px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  background: var(--c-gray-2);
  display: flex;
  align-items: flex-end; /* To let shoulders ground the oval */
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dt-oval:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.dt-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.dt-oval:hover img {
  filter: grayscale(0%);
}

.dt-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-black);
  margin-bottom: 0.25rem;
}

.dt-role {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  color: var(--c-gray-3);
}

/* Center Column (Overlapping Cards) */
.dt-col-center {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 50px rgba(0,0,0,0.04);
  position: relative;
}

.dt-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}

.dt-card:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .dt-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

.dt-card-oval {
  width: 120px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-gray-2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.dt-card-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.dt-card-content {
  flex-grow: 1;
}

.dt-card-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-black);
}

.dt-card-role {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  color: var(--c-gray-3);
  margin-bottom: 1rem;
}

.dt-card-desc {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--c-gray-3);
  margin-bottom: 1.5rem;
}

.dt-awards-title {
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-black);
  margin-bottom: 0.75rem;
}

.dt-awards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dt-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: #f8f8f8;
  border-radius: 20px;
  font-size: 0.75rem;
  font-family: var(--f-sans);
  color: var(--c-gray-3);
}

.dt-award-badge img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* ─── Application Form (Smart Partner) ───────────── */
.app-form-section {
  padding: 6rem 0;
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}

.app-form-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(240,240,240,1) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.app-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.app-form-title {
  text-align: center;
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--c-black);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.app-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.app-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--f-sans);
  font-size: 1rem;
  color: var(--c-black);
  background: #ffffff;
  border: 1px solid var(--c-gray-2);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.app-input:focus {
  border-color: var(--c-gray-3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.app-input::placeholder {
  color: var(--c-gray-3);
}

select.app-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  cursor: pointer;
}

textarea.app-input {
  resize: vertical;
  min-height: 150px;
}

.app-submit {
  align-self: flex-start;
  padding: 1rem 3rem;
  background: var(--c-black);
  color: var(--c-white);
  border: none;
  border-radius: 4px;
  font-family: var(--f-sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
}

.app-submit:hover {
  opacity: 0.8;
}

.app-input-group {
  display: flex;
  flex-direction: column;
}

.app-input-group label {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--c-black);
  font-weight: 500;
}

.app-radio-group {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.app-radio-label {
  position: relative;
  cursor: pointer;
}

.app-radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.app-radio-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--c-gray-2);
  border-radius: 4px;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  color: var(--c-black);
  background: #ffffff;
  transition: all 0.3s ease;
}

.app-radio-label input[type="radio"]:checked + .app-radio-btn,
.app-checkbox-label input[type="checkbox"]:checked + .app-radio-btn {
  border-color: var(--c-black);
  background: var(--c-black);
  color: var(--c-white);
}

.app-checkbox-label {
  position: relative;
  cursor: pointer;
}

.app-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.app-file-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f8f8f8;
  border: 1px dashed var(--c-gray-3);
  border-radius: 4px;
}

.app-file-input input[type="file"] {
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--c-gray-3);
  width: 100%;
}

/* ─── Product Sidebar & Layout ───────────── */
.products-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .products-layout {
    flex-direction: row;
    gap: 4rem;
  }
}

.product-sidebar {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .product-sidebar {
    width: 260px;
    position: sticky;
    top: 6rem;
  }
}

.filter-group {
  margin-bottom: 1rem;
}

.filter-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--c-black);
  padding: 1.25rem 0;
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid var(--c-gray-2);
  border-radius: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-btn:hover {
  color: var(--c-gold);
}

.filter-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.filter-group.active .filter-icon {
  transform: rotate(180deg);
}

.filter-content {
  display: none;
  background: transparent;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-gray-2);
}

.filter-group.active .filter-content {
  display: block;
}

.filter-check {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c-gray-3);
  transition: all 0.2s ease;
}

.filter-check:hover {
  color: var(--c-black);
}

.filter-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: transparent;
  border: 1px solid var(--c-gray-3);
  border-radius: 0;
  margin-right: 0.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.filter-check:hover .checkmark {
  border-color: var(--c-black);
}

.filter-check input:checked ~ .checkmark {
  background-color: transparent;
  border-color: var(--c-gold);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.filter-check input:checked ~ .checkmark:after {
  display: block;
}

.filter-check .checkmark:after {
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--c-gold);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.filter-submit-btn {
  width: 100%;
  background: transparent;
  color: var(--c-black);
  border: 1px solid var(--c-black);
  padding: 1rem;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 0.85rem;
  border-radius: 0;
  cursor: pointer;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.filter-submit-btn:hover {
  background: var(--c-black);
  color: var(--c-white);
}

.filter-clear-btn {
  width: 100%;
  background: transparent;
  color: var(--c-gray-3);
  border: none;
  padding: 0.5rem;
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.filter-clear-btn:hover {
  color: var(--c-black);
}

/* ================================================
   RESPONSIVE DESIGN — MUKANSA
   Breakpoints: 1024px (tablet), 768px (mobile)
   ================================================ */

/* ─── Hamburger Button ────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-black);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Mobile Nav Overlay ─────────────────── */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.5);
  z-index: 149;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav__mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ─── Mobile Nav Drawer ──────────────────── */
.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 85vw);
  height: 100svh;
  background: var(--c-white);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.nav__mobile-links > li {
  border-bottom: 1px solid var(--c-gray-2);
}

.nav__mobile-links > li > a {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-black);
  padding: 1rem 0;
}

/* Mobile accordion for sub-menus */
.nav__mobile-accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-black);
  padding: 1rem 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.nav__mobile-accordion svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav__mobile-accordion.open svg {
  transform: rotate(180deg);
}

.nav__mobile-submenu {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.nav__mobile-submenu.open {
  max-height: 600px;
}

.nav__mobile-submenu li {
  border-bottom: none;
}

.nav__mobile-submenu a {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #555;
  padding: 0.6rem 0;
}

.nav__mobile-submenu a:hover {
  color: var(--c-gold);
}

.nav__mobile-submenu .mega-col-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 0.75rem 0 0.25rem;
  display: block;
}

.nav__mobile-cta {
  margin-top: auto;
}

.nav__mobile-cta a {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem;
  border: 1px solid var(--c-black);
  transition: all 0.3s ease;
}

.nav__mobile-cta a:hover {
  background: var(--c-black);
  color: var(--c-white);
}

/* ─── Laptop (≤1400px) ────────────────────── */
@media (max-width: 1400px) {
  .nav__links {
    gap: max(1rem, 1.5vw);
  }
  .nav__cta {
    padding: 0.6rem 1rem;
    font-size: 0.70rem;
  }
}

/* ─── Tablet (≤1024px) ────────────────────── */
@media (max-width: 1024px) {
  .nav__links,
  .nav__actions,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  /* Product detail layout */
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-visual {
    position: relative;
    top: 0;
    height: 60vw;
    min-height: 320px;
    max-height: 560px;
  }
  .detail-body {
    border-left: none;
    border-top: 1px solid var(--c-gray-2);
    padding: 3rem var(--pad);
  }

  /* Products layout */
  .products-layout {
    flex-direction: column;
  }
  .product-sidebar {
    width: 100%;
  }

  /* Split feature */
  .split-feature {
    grid-template-columns: 1fr;
  }
  .split-feature__img {
    min-height: 56vw;
    position: relative;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ─── Mobile (≤768px) ────────────────────── */
@media (max-width: 768px) {
  :root {
    --pad: 1.25rem;
  }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Hero video */
  .hero-video {
    min-height: 70svh;
  }

  /* Sections */
  .section {
    padding-block: 4rem;
  }

  /* Page header */
  .page-header {
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 2.5rem;
  }

  /* Image grid */
  .img-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .img-grid__col { height: auto; }
  .img-grid__col--stack { flex-direction: row; height: 50vw; }
  .img-grid__col--tall .img-grid__cell--full { min-height: 60vw; }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Product detail */
  .detail-visual {
    height: 75vw;
  }
  .product-tabs__header {
    gap: 1rem;
  }
  .product-tab__btn {
    font-size: 0.85rem;
  }

  /* Buttons */
  .btn-primary {
    padding: 0.9rem 1.75rem;
  }

  /* Form layouts */
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  /* References grid */
  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Professional page */
  .professional-hero {
    padding: 8rem var(--pad) 4rem;
  }

  /* Lab section */
  .lab-section__content {
    padding: 3rem var(--pad);
  }
}

/* ─── Small Mobile (≤480px) ──────────────── */
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .detail-visual {
    height: 85vw;
  }
}

/* ─── Mega Menu Category Thumbnails ────────────────── */
.mega-cat-link {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  padding: 0.4rem 0 !important;
  transition: color var(--dur) var(--ease);
}
.mega-cat-link:hover { color: var(--c-gold) !important; background: transparent !important; }

.mega-cat-thumb {
  flex-shrink: 0 !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color .2s;
  display: block;
}
.mega-cat-link:hover .mega-cat-thumb { border-color: var(--c-gold); }

.mega-cat-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: grayscale(20%) brightness(.85);
  transition: filter .25s, transform .3s;
  padding: 0 !important;
  margin: 0 !important;
}
.mega-cat-link:hover .mega-cat-thumb img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}
.mega-cat-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}
.mega-cat-link:hover .mega-cat-thumb::after { opacity: 1; }

.mega-cat-thumb__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2218, #1a1208);
}


/* ─── Mukansa Lab Page ─────────────────────────────── */

.mukansa-lab-body {
  margin: 0;
  padding: 0;
  background-color: #050505;
  color: #fff;
  font-family: var(--f-sans, sans-serif);
  overflow: hidden; /* Hide main body scrollbar */
}

/* Custom minimal header overlay for Lab */
.lab-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2.5rem 5rem;
  pointer-events: none; /* Let clicks pass through empty spaces */
}
.lab-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto; /* Re-enable clicks on header items */
}
.lab-header__logo img {
  height: 24px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.lab-header__logo:hover img { opacity: 1; }

.lab-header__right {
  display: flex;
  gap: 3rem;
}
.lab-nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s, transform 0.3s;
}
.lab-nav-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Scroll Snap Container */
.lab-scroll-container {
  height: 100vh;
  width: 100vw;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  /* Hide scrollbar for a cleaner look */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.lab-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Individual Sections */
.lab-section {
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image handling */
.lab-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.lab-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* Fully bright background */
}

/* Content layout */
.lab-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5rem;
}

/* Left side text */
.lab-content__text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 1rem;
}

.lab-top-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lab-overline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--c-gold, #C9A96E);
}
.lab-top-text p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.lab-title {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.lab-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.lab-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-weight: 600;
}

/* Optional Right side media */
.lab-content__media {
  width: 45vw;
  max-width: 700px;
  height: 60vh;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transform: translateX(50px);
  opacity: 0;
  animation: labFadeInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.3s;
}
.lab-content__media img,
.lab-content__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animations */
@keyframes labFadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .lab-header { padding: 1.5rem 2rem; }
  .lab-content { padding: 0 2rem; flex-direction: column; justify-content: center; gap: 3rem; }
  .lab-title { font-size: 3.5rem; }
  .lab-content__media { width: 100%; height: 40vh; transform: none; animation: none; opacity: 1; }
}
@media (max-width: 768px) {
  .lab-header__right { display: none; }
  .lab-title { font-size: 3rem; }
  .lab-desc { font-size: 0.9rem; }
}


/* ─── Language Switcher ─────────────────────────────── */
.nav__lang {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

.nav__lang-current {
  background: none;
  border: none;
  color: var(--c-primary, #050505);
  font-family: var(--f-sans, sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
}
.nav__lang-current:hover {
  opacity: 0.7;
}
.nav__lang-current img {
  border-radius: 2px;
  object-fit: cover;
}

.nav__lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 120px;
  background-color: #fff;
  border-top: 2px solid var(--c-gold, #c9a96e);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 0;
  z-index: 100;
}
.nav__lang:hover .nav__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}
.nav__lang-dropdown a img {
  border-radius: 2px;
  object-fit: cover;
}
.nav__lang-dropdown a:hover {
  background-color: #f7f7f7;
  color: var(--c-gold, #c9a96e);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 1024px) {
  .nav__actions {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .nav__lang {
    margin-left: 0;
  }
}

/* ─── Inline style replacements ─────────────────────────────── */

/* SVG icons inside nav buttons (flex-shrink:0) */
.icon--no-shrink {
  flex-shrink: 0;
}

/* Footer tagline paragraph */
.footer__tagline {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

/* Footer address list item */
.footer__address-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
  line-height: 1.5;
}

/* Mobile nav language switcher block */
.mob-lang {
  padding: 1rem;
  border-top: 1px solid #f0f0f0;
  margin-top: 1rem;
}

.mob-lang__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}

.mob-lang__list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mob-lang__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

.mob-lang__flag {
  border-radius: 2px;
}

/* Initially hidden elements (shown by JS) */
.js-hidden {
  display: none;
}

/* ─── Preloader ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
#preloader.pre-exit {
  opacity: 0;
  transform: scale(1.12);
  pointer-events: none;
}
.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.pre-logo-wrap {
  position: relative;
  width: clamp(160px, 30vw, 280px);
}
.pre-logo-dim {
  width: 100%;
  display: block;
  opacity: 0.1;
}
.pre-logo-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  display: block;
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.pre-logo-fill.pre-filled {
  clip-path: inset(0 0% 0 0);
}
.pre-bar {
  width: clamp(160px, 30vw, 280px);
  height: 1px;
  background: rgba(140, 115, 85, 0.2);
  border-radius: 1px;
  overflow: hidden;
}
.pre-bar-track {
  height: 100%;
  width: 0%;
  background: #8C7355;
  border-radius: 1px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.pre-bar-track.pre-filled {
  width: 100%;
}
body.pre-loading {
  overflow: hidden;
}

/* ─── Cookie Banner ──────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  animation: ckUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes ckUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.ck-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ck-text { flex: 1; min-width: 260px; }
.ck-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.4rem;
}
.ck-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0;
}
.ck-link { color: #c9a96e; text-decoration: underline; }
.ck-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.ck-btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.ck-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
}
.ck-btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.ck-btn--solid { background: #c9a96e; border-color: #c9a96e; color: #111; }
.ck-btn--solid:hover { background: #b8944f; }
@media (max-width: 600px) {
  .ck-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ck-actions { width: 100%; }
  .ck-btn { flex: 1; text-align: center; }
}

/* ─── Page Header Variants (replaces inline padding/bg styles) ─── */
.page-header--tall     { padding-top: 15rem; padding-bottom: 5rem; }
.page-header--gray     { background: var(--c-gray-1); }
.page-header--dark     { background: var(--c-black); }
.page-header--padded   { padding-top: 12rem; padding-bottom: 4rem; }

/* ─── Heading utility overrides ─────────────────────────────────── */
.h-sub--spaced         { margin-bottom: 1.25rem; }
.h-display--lg         { max-width: 980px; font-size: 3.5rem; }
.section--tight        { padding-top: 2rem; padding-bottom: 4rem; }
.section--flush        { padding: 0; }

/* ─── Image utilities ───────────────────────────────────────────── */
.img-cover-full        { width: 100%; height: auto; display: block; object-fit: cover; }
.img-rounded           { width: 100%; border-radius: 12px; overflow: hidden; }
.img-rounded img       { width: 100%; height: auto; display: block; object-fit: cover; }

/* ─── Form feedback messages ────────────────────────────────────── */
.form-success {
  color: green;
  padding: 1rem;
  background: #f0fdf4;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
  margin: 1.5rem 0;
}
.form-error            { color: red; margin-bottom: 1rem; }

/* ─── Form utilities ─────────────────────────────────────────────── */
.input--narrow         { max-width: 200px; }
.btn--mt               { margin-top: 2rem; }

/* ─── Additional utility classes ──────────────────────────────────── */
.h-section--md         { margin-bottom: 2rem; font-size: 2rem; }
.divider-gold--spaced  { margin-bottom: 2rem; }
.body-lg--spaced       { margin-bottom: 1.5rem; }
.body-lg--gold         { font-weight: 600; color: var(--c-gold); }
.app-section-label     { font-size: 1.1rem; margin-bottom: 1rem; display: block; }
.form-label            { font-size: 0.85rem; color: var(--c-gray-3); display: block; margin-bottom: 0.5rem; }
.reveal-offset         { padding-top: 5rem; }

/* ─── Square image box (1:1 aspect ratio, cover) ────────────────── */
.img-square-box        { background: var(--c-gray-2); aspect-ratio: 1/1; overflow: hidden; }
.img-fill              { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER FEATURE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Archive Grid ────────────────────────────────────────────────────────── */
.nl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2.5rem;
}

.nl-card {
  background: var(--c-white);
  border: 1px solid var(--c-gray-2);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.nl-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-3px);
}

/* Visual */
.nl-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--c-gray-1);
}
.nl-card__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1208, #2a2218);
}
.nl-card__date-badge {
  color: var(--c-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nl-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.nl-card:hover .nl-card__media { transform: scale(1.04); }

/* Body */
.nl-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.nl-card__meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.nl-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1.35;
  margin: 0;
}
.nl-card__excerpt {
  font-size: 0.88rem;
  color: var(--c-gray-3);
  line-height: 1.7;
}

/* Toggle / Accordion */
.nl-card__toggle {
  margin-top: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s;
}
.nl-card__toggle:hover { opacity: 0.7; }
.nl-card__toggle-icon { display: inline-block; transition: transform 0.3s; }

.nl-card__full {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-gray-2);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--c-gray-3);
  animation: nlFadeIn 0.3s ease;
}
.nl-card__full p  { margin: 0 0 1em; }
.nl-card__full h2,
.nl-card__full h3 { color: var(--c-black); margin: 1.25em 0 0.6em; }
.nl-card__full img { max-width: 100%; border-radius: 4px; }

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

/* Empty state */
.newsletter-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--c-gray-3);
}
.nl-empty-icon { font-style: normal; font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ─── Page Subscription Banner ────────────────────────────────────────────── */
.nl-subscribe-section {
  background: var(--c-black);
  padding: 6rem 0;
}
.nl-subscribe-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.nl-subscribe-text { flex: 1; min-width: 260px; }

.nl-subscribe-form { flex: 1; min-width: 300px; max-width: 480px; }
.nl-subscribe-field {
  display: flex;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  overflow: hidden;
}
.nl-subscribe-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1.25rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
}
.nl-subscribe-input::placeholder { color: rgba(255,255,255,.35); }
.nl-subscribe-btn {
  background: var(--c-gold);
  border: none;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-black);
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.nl-subscribe-btn:hover { background: #b8944f; }
.nl-subscribe-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.nl-subscribe-msg {
  font-size: 0.8rem;
  margin: 0.6rem 0 0;
  min-height: 1.2em;
}
.nl-subscribe-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,.3);
  margin: 0.75rem 0 0;
  line-height: 1.5;
}
.nl-subscribe-legal a { color: rgba(255,255,255,.4); text-decoration: underline; }

/* ─── Footer Widget ───────────────────────────────────────────────────────── */
.nl-footer-widget {
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0;
}
.nl-footer-widget__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.nl-footer-widget__overline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}
.nl-footer-widget__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.2;
}
.nl-footer-widget__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin: 0;
}

.nl-footer-widget__form { flex: 1; min-width: 280px; max-width: 440px; }
.nl-footer-widget__field {
  display: flex;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 3px;
  overflow: hidden;
}
.nl-footer-widget__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}
.nl-footer-widget__input::placeholder { color: rgba(255,255,255,.3); }
.nl-footer-widget__btn {
  background: var(--c-gold);
  border: none;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  transition: background 0.25s;
  white-space: nowrap;
}
.nl-footer-widget__btn:hover { background: #b8944f; }
.nl-footer-widget__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.nl-footer-widget__msg {
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  margin: 0.5rem 0 0;
  min-height: 1.1em;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nl-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nl-subscribe-inner { flex-direction: column; }
  .nl-subscribe-form { max-width: 100%; width: 100%; }
  .nl-footer-widget__inner { flex-direction: column; gap: 1.5rem; }
  .nl-footer-widget__form { max-width: 100%; width: 100%; }
  .nl-subscribe-section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .nl-subscribe-field,
  .nl-footer-widget__field { flex-direction: column; border-radius: 4px; }
  .nl-subscribe-btn,
  .nl-footer-widget__btn { width: 100%; }
}

/* ─── Archive Card: Link button ────────────────────────────────────────────── */
.nl-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-decoration: none;
  transition: gap 0.2s ease, opacity 0.2s;
}
.nl-card__link:hover { gap: 0.75rem; opacity: 0.8; }
.nl-card__link-arrow { transition: transform 0.2s; }
.nl-card__link:hover .nl-card__link-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER DETAIL PAGE (newsletter-detail.php)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Hero Visual ─────────────────────────────────────────────────────────── */
.nld-hero {
  position: relative;
  width: 100%;
  height: 72vh;
  min-height: 420px;
  max-height: 700px;
  overflow: hidden;
  background: #111;
}
.nld-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.nld-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.15) 55%, transparent 100%);
}
.nld-hero__caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 3.5rem;
  width: 100%;
}
.nld-issue-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}
.nld-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0;
  max-width: 800px;
}

/* ─── Back link ───────────────────────────────────────────────────────────── */
.nld-back {
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
}
.nld-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gray-3);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.nld-back-link:hover { color: var(--c-black); gap: 0.65rem; }
.nld-back-link svg { flex-shrink: 0; }

/* ─── Article body ────────────────────────────────────────────────────────── */
.nld-article {
  padding-top: 3rem;
  padding-bottom: 5rem;
  max-width: 840px;
}
.nld-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333;
}
.nld-content p  { margin: 0 0 1.4em; }
.nld-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-black); margin: 2em 0 .75em; }
.nld-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-black); margin: 1.75em 0 .6em; }
.nld-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
  display: block;
}
.nld-content a { color: var(--c-gold); text-decoration: underline; }
.nld-content ul,
.nld-content ol { padding-left: 1.5rem; margin: 0 0 1.4em; }
.nld-content li { margin-bottom: 0.5em; }
.nld-content blockquote {
  border-left: 3px solid var(--c-gold);
  margin: 1.75rem 0;
  padding: 0.75rem 1.5rem;
  color: var(--c-gray-3);
  font-style: italic;
}

/* ─── Prev / Next nav ────────────────────────────────────────────────────── */
.nld-nav {
  padding-bottom: 5rem;
  border-top: 1px solid var(--c-gray-2);
  padding-top: 3rem;
  max-width: 840px;
}
.nld-nav__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.nld-nav__item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nld-nav__item:hover { opacity: 0.7; }
.nld-nav__item--next { text-align: right; }
.nld-nav__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.nld-nav__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-black);
  line-height: 1.4;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nld-hero { height: 55vw; min-height: 300px; }
  .nld-nav__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .nld-nav__item--next { text-align: left; }
  .nld-article { padding-top: 2rem; padding-bottom: 3rem; }
  .nld-content { font-size: 0.97rem; }
}
