/* =========================================
   MMATEMA MRS G — Official Website
   Rebrand 2026 · Black · Silver · Gold
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --black: #080808;
  --dark: #111111;
  --charcoal: #1E1E1E;
  --silver-dark: #3A3A3A;
  --silver: #7A7A7A;
  --silver-light: #B0B0B0;
  --silver-pale: #D8D8D8;
  --white: #F5F5F5;
  --pure-white: #FFFFFF;
  --gold: #AAAAAA;
  --gold-light: #CCCCCC;
  --gold-dark: #777777;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.77, 0, 0.18, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* =========================================
   SHARED NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 18px 60px;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--white);
  text-transform: uppercase;
}

.nav-logo em {
  font-style: normal;
  color: var(--gold);
}

.nav-back {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}

.nav-back svg {
  transition: transform 0.3s;
}

.nav-back:hover {
  color: var(--gold);
}

.nav-back:hover svg {
  transform: translateX(-4px);
}

.nav-contact {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-contact:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger — mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.38s var(--ease-in-out), opacity 0.25s ease;
}

/* =========================================
   LANDING PAGE — INTRO HERO
   ========================================= */
.landing-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.landing-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  height: fit-content;
}

.landing-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
  filter: grayscale(30%);
  will-change: transform;
  top: -190px;
  position: relative;
}

.landing-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.85) 70%, var(--black) 100%);
}

.landing-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.landing-eyebrow {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.landing-eyebrow::before,
.landing-eyebrow::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.landing-name {
  font-family: var(--font-head);
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 900;
  line-height: 0.88;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 0;
  overflow: hidden;
}

.landing-name-line {
  display: block;
  overflow: hidden;
}

.landing-name-line .word {
  display: block;
  will-change: transform;
}

.landing-name .gold {
  color: var(--gold);
}

.landing-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: 14px;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-top: 20px;
  margin-bottom: 0;
}

.landing-title strong {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 16px;
}

.landing-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 40px auto;
  opacity: 0.6;
}

.landing-intro {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
}

.landing-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.landing-scroll span {
  font-family: var(--font-head);
  font-size: 8px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

/* =========================================
   LANDING — 4 CATEGORY PANELS
   ========================================= */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100vh;
  min-height: 600px;
}

.cat-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.cat-panel-img {
  position: absolute;
  inset: 0;
}

.cat-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s var(--ease), filter 0.6s;
  filter: grayscale(20%);
  will-change: transform;
}

.cat-panel:hover .cat-panel-img img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.cat-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(8, 8, 8, 0.97) 0%,
      rgba(8, 8, 8, 0.65) 40%,
      rgba(8, 8, 8, 0.2) 70%,
      rgba(8, 8, 8, 0.05) 100%);
  transition: background 0.6s;
}

.cat-panel:hover .cat-panel-overlay {
  background: linear-gradient(to top,
      rgba(8, 8, 8, 0.98) 0%,
      rgba(8, 8, 8, 0.72) 45%,
      rgba(8, 8, 8, 0.3) 75%,
      rgba(8, 8, 8, 0.1) 100%);
}

/* Gold border reveal on hover */
.cat-panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.cat-panel:hover::after {
  transform: scaleX(1);
}

/* Divider between panels */
.cat-panel:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-panel-body {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
}

.cat-panel:hover .cat-panel-body {
  transform: translateY(0);
}

.cat-num {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 12px;
  display: block;
}

.cat-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.cat-subtitle {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 22px;
  max-width: 220px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s;
}

.cat-panel:hover .cat-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.cat-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s 0.15s, transform 0.4s 0.15s;
}

.cat-arrow svg {
  transition: transform 0.3s;
}

.cat-panel:hover .cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

.cat-panel:hover .cat-arrow svg {
  transform: translateX(4px);
}

/* =========================================
   LANDING — TICKER STRIP
   ========================================= */
.ticker {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
}

.ticker-track .dot {
  color: rgba(0, 0, 0, 0.25);
  padding: 0;
  letter-spacing: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   SHARED PAGE — FULL SITE NAV
   ========================================= */
.page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 60px;
  transition: all 0.4s var(--ease);
  gap: 24px;
}

.page-nav.scrolled {
  padding: 14px 60px;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Full nav menu — desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.75);
  transition: all 0.35s var(--ease-in-out);
  transform-origin: center;
}

/* Mobile overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.99);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--font-head);
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 48px;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.nav-mobile-close:hover {
  color: var(--gold);
}

/* =========================================
   BOTTOM CROSS-NAVIGATION (Explore More)
   ========================================= */
.explore-more {
  background: #0D0D0D;
  padding: 72px 60px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.explore-label {
  display: block;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 28px;
}

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

.explore-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 3 / 4;
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.45);
  transition: transform 0.8s var(--ease), filter 0.4s;
}

.explore-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.explore-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.explore-card-eyebrow {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}

.explore-card-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  line-height: 1.15;
}

/* Glem card — coming soon image */
.explore-card--glem {
  background: url('../images/coming-soon.jpg') center center / cover no-repeat;
}

.explore-card--glem .explore-card-body {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.coming-soon-tag {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

/* =========================================
   SHARED PAGE HERO
   ========================================= */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.page-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.page-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      var(--black) 0%,
      rgba(8, 8, 8, 0.75) 40%,
      rgba(8, 8, 8, 0.25) 80%,
      rgba(8, 8, 8, 0.1) 100%);
}

.page-hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--black) 0%,
      transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 70px;
  max-width: 600px;
}

.page-category-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-category-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero-title em {
  font-style: normal;
  color: var(--gold);
}

.page-hero-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 32px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 38px;
  background: var(--gold);
  color: var(--black);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.btn-outline {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section {
  padding: 110px 0;
  background: var(--black);
}

.section--silver {
  background: var(--charcoal);
}

.section--dark {
  background: var(--dark);
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

.section-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-subtitle {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
}

/* =========================================
   BIO / TEXT + IMAGE LAYOUT
   ========================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.bio-image-wrap {
  position: relative;
}

.bio-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(10%);
}

.bio-image-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: -1;
}

.bio-content {}

.bio-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--silver-light);
  font-weight: 300;
  margin-bottom: 20px;
}

.bio-highlights {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bio-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

.bio-highlight-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.bio-highlight-text strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

/* =========================================
   STATS ROW
   ========================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.stat-block {
  padding: 50px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark);
}

.stat-block:first-child {
  border-left: none;
}

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}

/* =========================================
   IMAGE GALLERY STRIP
   ========================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

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

/* =========================================
   QUOTE BLOCK
   ========================================= */
.quote-block {
  padding: 100px 80px;
  text-align: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
  letter-spacing: -0.5px;
}

.quote-text em {
  font-style: normal;
  color: var(--gold);
}

.quote-attr {
  margin-top: 28px;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--silver);
}

/* =========================================
   CONTACT / BOOKING CTA
   ========================================= */
.booking-cta {
  padding: 120px 80px;
  text-align: center;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.booking-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 0.95;
  margin: 16px 0 22px;
}

.booking-title em {
  font-style: normal;
  color: var(--gold);
}

.booking-desc {
  font-size: 15px;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 44px;
}

.booking-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

/* Outline button on light/white backgrounds */
.btn-outline--light {
  border-color: rgba(0, 0, 0, 0.18);
  color: #555;
}

.btn-outline--light:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  background: transparent;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  padding: 60px 80px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 28px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.footer-brand em {
  font-style: normal;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--gold);
}

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

.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.4);
}

/* =========================================
   PRODUCT LINE — SPECIFIC
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.product-card {
  background: var(--dark);
  padding: 48px 40px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

.product-card:hover {
  border-bottom-color: var(--gold);
  background: var(--charcoal);
}

.product-card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.product-card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.product-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.75;
  font-weight: 300;
}

/* =========================================
   SPEAKER — TOPICS LIST
   ========================================= */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}

.topic-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 40px;
  background: var(--dark);
  transition: background 0.3s;
}

.topic-item:hover {
  background: var(--charcoal);
}

.topic-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.5;
  min-width: 28px;
  margin-top: 2px;
}

.topic-content {}

.topic-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.topic-desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  font-weight: 300;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-hero-bg img {
    top: -80px;
  }

  .section-inner,
  .booking-cta,
  .quote-block,
  .footer {
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-hero-content {
    padding: 0 40px 60px;
  }

  .page-nav,
  .nav {
    padding: 22px 40px;
  }

  .page-nav.scrolled,
  .nav.scrolled {
    padding: 16px 40px;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    min-height: auto;
  }

  .cat-panel {
    height: 60vw;
    min-height: 340px;
  }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bio-image {
    aspect-ratio: 4/3;
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .landing-hero-bg {
    height: 100vh;
  }

  .nav-contact,
  .nav-back {
    display: none;
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-more {
    padding: 52px 24px 60px;
  }

  .nav-mobile-close {
    right: 28px;
  }

  .landing-hero-bg img {
    top: 0;
  }

  .section-inner,
  .booking-cta,
  .quote-block,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-nav,
  .nav {
    padding: 20px 24px;
  }

  .page-nav.scrolled,
  .nav.scrolled {
    padding: 14px 24px;
  }

  .page-hero-content {
    padding: 0 24px 50px;
  }

  .page-hero-title {
    letter-spacing: -1px;
  }

  .categories {
    grid-template-columns: 1fr;
    height: auto;
  }

  .cat-panel {
    height: 80vw;
    min-height: 300px;
  }

  .cat-panel:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cat-panel::after {
    left: 0;
    right: auto;
    width: 3px;
    height: 0;
    bottom: 0;
    top: 0;
    transform: scaleY(0);
    transform-origin: bottom;
  }

  .cat-panel:hover::after {
    transform: scaleY(1);
  }

  .cat-panel-body {
    padding: 30px 28px;
    transform: none;
  }

  .cat-subtitle,
  .cat-arrow {
    opacity: 1;
    transform: none;
  }

  .landing-name {
    letter-spacing: -2px;
  }

  .landing-title {
    letter-spacing: 6px;
    font-size: 14px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-block {
    padding: 36px 28px;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-img-wrap {
    aspect-ratio: 1/1;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta {
    padding: 80px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================================
   LIGHT SECTION VARIANTS
   For brand-ambassador, product-line, speaker pages
   ========================================= */
.section--white {
  background: #FFFFFF;
}

.section--pearl {
  background: #F7F6F4;
}

.section--light-gray {
  background: #F0EFED;
}

/* Text colour overrides on light backgrounds */
.section--white .section-label,
.section--pearl .section-label,
.section--light-gray .section-label {
  color: var(--gold-dark);
}

.section--white .section-title,
.section--pearl .section-title,
.section--light-gray .section-title {
  color: #111111;
}

.section--white .section-subtitle,
.section--pearl .section-subtitle,
.section--light-gray .section-subtitle {
  color: #666666;
}

.section--white .bio-text,
.section--pearl .bio-text,
.section--light-gray .bio-text {
  color: #555555;
}

.section--white .bio-highlight,
.section--pearl .bio-highlight {
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.section--white .bio-highlight-text,
.section--pearl .bio-highlight-text {
  color: #555555;
}

.section--white .bio-highlight-text strong,
.section--pearl .bio-highlight-text strong {
  color: #111111;
}

/* Light stats row */
.stats-row--light {
  background: #F7F6F4;
}

.stats-row--light .stat-block {
  background: #FFFFFF;
  border-left: 1px solid #E8E8E8;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s;
}

.stats-row--light .stat-block:first-child {
  border-left: none;
}

.stats-row--light .stat-block:hover {
  border-bottom-color: var(--gold);
}

.stats-row--light .stat-num {
  color: #111111;
}

.stats-row--light .stat-label {
  color: #888888;
}

/* Light quote block */
.quote-block--light {
  background: #FFFFFF;
  border-top: 1px solid #EBEBEB;
  border-bottom: 1px solid #EBEBEB;
}

.quote-block--light::before {
  color: rgba(0, 0, 0, 0.04);
}

.quote-block--light .quote-text {
  color: #111111;
}

.quote-block--light .quote-attr {
  color: #AAAAAA;
}

/* Light gallery */
.gallery-strip--light {
  background: #F0EFED;
  padding: 4px;
}

/* =========================================
   EDITORIAL LIST  (brand-ambassador)
   ========================================= */
.editorial-list {
  margin-top: 60px;
}

.editorial-item {
  display: grid;
  grid-template-columns: 70px 1fr 32px;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid #EBEBEB;
  transition: border-color 0.3s;
  cursor: default;
}

.editorial-item:first-child {
  border-top: 1px solid #EBEBEB;
}

.editorial-item:hover {
  border-bottom-color: var(--gold);
}

.editorial-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  letter-spacing: -2px;
}

.editorial-body {}

.editorial-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.editorial-desc {
  font-size: 14px;
  color: #777777;
  line-height: 1.75;
  max-width: 600px;
}

.editorial-arrow {
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  font-size: 20px;
}

.editorial-item:hover .editorial-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .editorial-item {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .editorial-arrow {
    display: none;
  }

  .editorial-num {
    font-size: 28px;
  }
}

/* =========================================
   CLOTHING / FASHION CATALOG  (product-line)
   ========================================= */
.shop-header {
  background: #FFFFFF;
  padding: 100px 80px 50px;
  border-bottom: 1px solid #EBEBEB;
}

.shop-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1.5px solid #DDDDDD;
  background: transparent;
  color: #888888;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s;
}

.filter-tab:hover {
  border-color: #111;
  color: #111;
}

.filter-tab.active {
  background: #111111;
  border-color: #111111;
  color: #FFFFFF;
}

.clothing-section {
  background: #FFFFFF;
  padding: 60px 80px 100px;
}

.clothing-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.clothing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.clothing-item {
  cursor: pointer;
}

.clothing-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: #F5F5F5;
  margin-bottom: 16px;
}

.clothing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
  filter: grayscale(8%);
}

.clothing-item:hover .clothing-img-wrap img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.clothing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.clothing-item:hover .clothing-overlay {
  opacity: 1;
}

.clothing-overlay-btn {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 2px;
  transform: translateY(10px);
  transition: transform 0.4s;
}

.clothing-item:hover .clothing-overlay-btn {
  transform: translateY(0);
}

.clothing-tag {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 5px;
}

.clothing-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lookbook feature (full-width editorial) */
.lookbook-feature {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.lookbook-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lookbook-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.3) 50%, transparent 100%);
}

.lookbook-feature-text {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
}

.lookbook-feature-text .section-label {
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.lookbook-feature-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 0.95;
}

.lookbook-feature-title em {
  font-style: normal;
  color: var(--gold);
}

@media (max-width: 1100px) {

  .shop-header,
  .clothing-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .clothing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lookbook-feature-text {
    padding: 40px;
  }
}

@media (max-width: 768px) {

  .shop-header,
  .clothing-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .clothing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .lookbook-feature-text {
    padding: 30px 24px;
  }
}

/* =========================================
   SPEAKER MINIMAL TOPIC LIST
   ========================================= */
.topic-list {
  margin-top: 70px;
}

.topic-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid #EBEBEB;
  align-items: flex-start;
  transition: background 0.3s;
}

.topic-row:first-child {
  border-top: 1px solid #EBEBEB;
}

.topic-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.topic-big-num {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
  letter-spacing: -3px;
  padding-top: 4px;
}

.topic-row-content {}

.topic-row-title {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.topic-row-desc {
  font-size: 14px;
  color: #777777;
  line-height: 1.8;
  max-width: 620px;
}

.topic-row-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 12px;
  margin-top: 14px;
}

/* Speaker event type tiles (simple, 3-column) */
.event-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.event-tile {
  padding: 44px 40px;
  background: #F7F6F4;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.event-tile:hover {
  border-bottom-color: var(--gold);
  background: #FFFFFF;
}

.event-tile-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--gold);
  opacity: 0.7;
}

.event-tile-icon svg {
  width: 100%;
  height: 100%;
}

.event-tile-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.event-tile-desc {
  font-size: 13px;
  color: #888888;
  line-height: 1.7;
}

/* Speaker pull quote (large, on white) */
.pull-quote {
  padding: 120px 80px;
  text-align: center;
  background: #111111;
}

.pull-quote-text {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -1px;
}

.pull-quote-text em {
  font-style: normal;
  color: var(--gold);
}

.pull-quote-attr {
  margin-top: 36px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1100px) {
  .event-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .pull-quote {
    padding: 80px 40px;
  }
}

@media (max-width: 768px) {
  .topic-row {
    grid-template-columns: 70px 1fr;
    gap: 24px;
  }

  .topic-big-num {
    font-size: 48px;
  }

  .event-tiles {
    grid-template-columns: 1fr;
  }

  .pull-quote {
    padding: 70px 24px;
  }

  .topic-row-title {
    font-size: 16px;
  }
}

/* =========================================
   AMBASSADOR — SPLIT INTRO BLOCK
   ========================================= */
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-intro-image {
  overflow: hidden;
  position: relative;
}

.split-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(8%);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.split-intro-image:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.split-intro-content {
  background: #FFFFFF;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-intro-content .section-label {
  color: var(--gold-dark);
}

.split-intro-content .section-title {
  color: #111111;
}

.split-intro-content .bio-text {
  color: #555555;
}

.split-intro-eyebrow {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.split-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.split-stat {
  padding: 60px 50px;
  background: #111111;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

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

.split-stat-num {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.split-stat-label {
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1100px) {
  .split-intro {
    grid-template-columns: 1fr;
  }

  .split-intro-image {
    height: 460px;
  }

  .split-intro-content {
    padding: 60px 40px;
  }

  .split-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .split-intro-content {
    padding: 44px 24px;
  }

  .split-stats-row {
    grid-template-columns: 1fr;
  }

  .split-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 24px;
  }

  .split-stat:last-child {
    border-bottom: none;
  }
}

/* ==========================================
   PAGE LOADER
   ========================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  display: block;
}

.loader-bar {
  width: clamp(100px, 14vw, 160px);
  height: 2px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
}

/* ==========================================
   LOGO IMAGE (nav & footer)
   ========================================== */
.nav-logo img,
.page-nav .nav-logo img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.page-nav.scrolled .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav--light .nav-logo img {
  filter: none;
}

.boutique-nav .nav-logo img {
  height: 28px;
  filter: none;
}

.footer-brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* ==========================================
   HOMEPAGE SPLIT LAYOUT
   ========================================== */
.home-split {
  display: flex;
  min-height: 100vh;
}

.home-left {
  width: 38%;
  min-height: 100vh;
  background: #fff;
  border-right: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 52px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.home-left-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.home-logo {
  width: clamp(160px, 70%, 260px);
  height: auto;
  display: block;
}

.home-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #ebebeb;
}

.home-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 15px);
  color: #777;
  line-height: 1.8;
  margin: 0;
  max-width: 300px;
}

.home-left-footer {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.04em;
}

.home-right {
  width: 62%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50vh 50vh;
}

.home-cat {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.home-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-cat:hover .home-cat-img {
  transform: scale(1.07);
}

.home-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.18) 55%, transparent 100%);
  transition: background 0.4s;
}

.home-cat:hover .home-cat-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.home-cat-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 30px;
  color: #fff;
}

.home-cat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.home-cat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.home-cat-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  transition: color 0.3s;
  text-transform: uppercase;
}

.home-cat:hover .home-cat-link {
  color: var(--gold);
}

@media (max-width: 960px) {
  .home-split {
    flex-direction: column;
  }

  .home-left {
    width: 100%;
    height: auto;
    min-height: auto;
    position: static;
    padding: 52px 36px;
  }

  .home-right {
    width: 100%;
    grid-template-rows: 50vw 50vw;
  }
}

@media (max-width: 600px) {
  .home-right {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 72vw);
  }

  .home-left {
    padding: 44px 24px;
  }
}

@media (max-width: 768px) {
  .landing-hero-overlay {
    background: radial-gradient(ellipse at center, rgba(8, 8, 8, 0.1) 0%, rgba(8, 8, 8, 0.55) 70%, rgba(8, 8, 8, 0.75) 100%);
  }
}