/* ═════════════════════════════════════════════════════════════
   CHOCOLATE JEANS — HIGH-LUXURY COUTURE & ATELIER DESIGN SYSTEM
   ═════════════════════════════════════════════════════════════ */
:root {
  /* Color Palette — Midnight Chocolate & Raw Okayama Indigo */
  --bg-primary: #F8F6F0;           /* Warm Unbleached Cotton Canvas / Parchment */
  --bg-secondary: #EDE8DF;         /* Textured Stone / Raw Weft Gray */
  --bg-dark: #000000;              /* Obsidian Selvedge Black */
  --bg-dark-card: #0A0A0A;         /* Deep Smoked Indigo Ash */
  
  --text-dark: #121214;            /* Deep Graphite Black for ultra readability */
  --text-muted: #5A585C;           /* Warm Slate Gray for subtitles */
  --text-light: #FDFCFA;           /* Pure Soft White */
  --text-light-muted: #B2B0B6;     /* Muted Silver Gray */

  --accent-chocolate: #8C533E;     /* Rich Terrakotta / Saddle Leather Patch */
  --accent-gold: #C5A059;          /* Antique Metallic Gold / Brass Rivets */
  --accent-gold-light: #E5C885;
  --accent-denim: #14233C;         /* Deep Japanese Indigo Selvedge */
  --accent-denim-light: #26436E;
  --accent-selvedge-red: #D94432;  /* Japanese Red Selvedge ID Stitch Line */

  --border-color: rgba(18, 18, 20, 0.08);
  --border-color-dark: rgba(253, 252, 250, 0.1);
  --glass-bg: rgba(248, 246, 240, 0.85);
  --glass-bg-dark: rgba(0, 0, 0, 0.88);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --header-height: 88px;
  --header-shrink-height: 72px;
  --max-width: 1420px;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --transition-fast: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ═════════════════════════════════════════════════════════════
   DARK MODE OVERRIDES
   ═════════════════════════════════════════════════════════════ */
body.dark-mode {
  --bg-primary: #000000;           /* Pure Matte Black */
  --bg-secondary: #0A0A0A;         /* Charcoal Indigo Ash */
  --text-dark: #FDFCFA;            /* Soft Light Canvas Text */
  --text-muted: #A6A4AA;           /* Silver Gray Subtitles */
  --border-color: rgba(253, 252, 250, 0.1);
  --glass-bg: var(--glass-bg-dark);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  transition: background-color 0.45s ease, color 0.45s ease;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

img, video, canvas, iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 44px);
  padding-left: calc(clamp(16px, 5vw, 44px) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(16px, 5vw, 44px) + env(safe-area-inset-right, 0px));
}

.container-full {
  max-width: 100%;
  padding: 0 44px;
}

.container-small {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common */
section {
  padding: 130px 0;
  position: relative;
}

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

.section-header.center {
  text-align: center;
}

.section-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent-chocolate);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

body.dark-mode .section-eyebrow {
  color: var(--accent-gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 18px;
  font-weight: 400;
  max-width: 620px;
}

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Custom Buttons & Couture Interactions */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 18px 40px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--bg-dark);
  border-radius: 4px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 12px 30px rgba(10, 10, 13, 0.15);
}

body.dark-mode .btn-primary {
  background-color: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
  box-shadow: 0 12px 30px rgba(253, 252, 250, 0.12);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--accent-chocolate);
  z-index: -1;
  transition: var(--transition-smooth);
}

body.dark-mode .btn-primary::before {
  background-color: var(--accent-gold);
}

.btn-primary:hover {
  color: var(--text-light);
  border-color: var(--accent-chocolate);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(140, 83, 62, 0.25);
}

body.dark-mode .btn-primary:hover {
  color: var(--bg-dark);
  border-color: var(--accent-gold);
  box-shadow: 0 18px 40px rgba(197, 160, 89, 0.25);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: transparent;
  color: var(--text-dark);
  padding: 16px 32px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1.5px solid rgba(18, 18, 20, 0.35);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

body.dark-mode .btn-secondary {
  border-color: rgba(253, 252, 250, 0.4);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--text-dark);
  color: var(--bg-primary);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

body.dark-mode .btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
}

.moq-tag {
  font-size: 0.72rem;
  background-color: var(--accent-selvedge-red);
  color: #fff;
  padding: 3px 8px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ═════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(76px + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background-color: rgba(253, 252, 250, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  transition: var(--transition-smooth);
}

body.dark-mode #header {
  background-color: rgba(18, 18, 18, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#header.scrolled {
  height: calc(70px + env(safe-area-inset-top, 0px));
  background-color: rgba(253, 252, 250, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

body.dark-mode #header.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 44px);
  padding-left: calc(clamp(16px, 5vw, 44px) + env(safe-area-inset-left, 0px));
  padding-right: calc(clamp(16px, 5vw, 44px) + env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
}

body.dark-mode .brand-logo img {
  filter: invert(1) hue-rotate(180deg);
}

#header.scrolled .brand-logo img {
  height: 36px;
}

/* Inline Heading Logo (e.g. inside section titles) */
.heading-inline-logo {
  height: 0.88em;
  width: auto;
  vertical-align: middle;
  margin-left: 14px;
  display: inline-block;
}

body.dark-mode .heading-inline-logo {
  filter: invert(1) hue-rotate(180deg);
}

.brand-tagline {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--accent-chocolate);
  border-left: 1px solid var(--border-color);
  padding-left: 14px;
  transition: var(--transition-fast);
}

body.dark-mode .brand-tagline {
  color: var(--accent-gold);
}

#header.scrolled .brand-tagline {
  opacity: 0;
  width: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  opacity: 0.85;
  position: relative;
  padding: 8px 0;
  transition: var(--transition-smooth);
}

body.dark-mode .nav-link {
  color: var(--text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-selvedge-red);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-chocolate);
}

body.dark-mode .nav-link:hover {
  color: var(--accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

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

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

.btn-minimal-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1.5px solid var(--accent-chocolate);
  padding: 8px 20px;
  border-radius: 40px;
  background: transparent;
  transition: var(--transition-smooth);
  color: var(--accent-chocolate);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.04);
}

body.dark-mode .btn-minimal-cta {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-minimal-cta:hover {
  background-color: var(--accent-chocolate);
  border-color: var(--accent-chocolate);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.22);
}

body.dark-mode .btn-minimal-cta:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.22);
}



/* Dark Mode Toggle Button */
.dark-mode-toggle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.dark-mode-toggle:hover {
  border-color: var(--accent-chocolate);
  background-color: var(--bg-primary);
  transform: rotate(15deg);
}

body.dark-mode .dark-mode-toggle:hover {
  border-color: var(--accent-gold);
}

.dark-mode-toggle .sun-icon {
  display: none;
  font-size: 1.15rem;
  color: var(--accent-gold);
}

.dark-mode-toggle .moon-icon {
  display: block;
  font-size: 1.15rem;
  color: var(--text-dark);
}

body.dark-mode .dark-mode-toggle .sun-icon {
  display: block;
}

body.dark-mode .dark-mode-toggle .moon-icon {
  display: none;
}

/* Mobile Hamburger Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* Drawer Menu (Mobile Layout) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: clamp(100svh, 100dvh, 100%);
  max-height: 100dvh;
  overflow-y: auto;
  background-color: var(--bg-primary);
  z-index: 1010;
  box-shadow: -20px 0 50px rgba(0,0,0,0.15);
  padding: calc(44px + env(safe-area-inset-top, 0px)) calc(32px + env(safe-area-inset-right, 0px)) calc(44px + env(safe-area-inset-bottom, 0px)) calc(32px + env(safe-area-inset-left, 0px));
  display: flex;
  flex-direction: column;
  gap: 36px;
  transition: right 0.45s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.45s ease;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
}

.drawer-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.drawer-logo {
  height: 34px;
  width: auto;
  border-radius: 4px;
}

body.dark-mode .drawer-logo {
  filter: invert(1) hue-rotate(180deg);
}

.close-drawer-btn {
  font-size: 1.6rem;
  color: var(--text-dark);
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.drawer-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.drawer-link:hover {
  color: var(--accent-chocolate);
  padding-left: 8px;
}

body.dark-mode .drawer-link:hover {
  color: var(--accent-gold);
}

.drawer-cta {
  margin-top: 15px;
  background-color: var(--bg-dark);
  color: var(--text-light) !important;
  padding: 16px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 4px;
}

body.dark-mode .drawer-cta {
  background-color: var(--text-light);
  color: var(--bg-dark) !important;
}

/* ═════════════════════════════════════════════════════════════
   HERO SECTION — COUTURE EDITORIAL SHOWCASE
   ═════════════════════════════════════════════════════════════ */
.hero-section {
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 24px) 0 80px 0;
  min-height: clamp(100svh, 100dvh, 100vh);
  overflow: hidden;
  background: 
    radial-gradient(circle at 85% 25%, rgba(140, 83, 62, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(20, 35, 60, 0.05) 0%, transparent 55%);
  position: relative;
}

body.dark-mode .hero-section {
  background-color: #0a0a0a;
  background-image: 
    radial-gradient(circle at 85% 25%, rgba(197, 160, 89, 0.08) 0%, transparent 65%),
    radial-gradient(circle at 10% 75%, rgba(140, 83, 62, 0.04) 0%, transparent 50%);
}

.hero-background-decor {
  position: absolute;
  right: -3%;
  top: 12%;
  font-family: var(--font-serif);
  font-size: 26vw;
  font-weight: 700;
  color: rgba(18, 18, 20, 0.025);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

body.dark-mode .hero-background-decor {
  color: rgba(253, 252, 250, 0.02);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 44px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-text-block {
  padding-top: 0;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-chocolate);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

body.dark-mode .hero-eyebrow-pill {
  background-color: rgba(197, 160, 89, 0.12);
  border-color: rgba(197, 160, 89, 0.35);
  color: var(--accent-gold);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-eyebrow-pill .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-selvedge-red);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 4.4vw, 4.8rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 26px;
}

body.dark-mode .hero-title {
  color: #FDFCFA;
}

.hero-title .serif-title {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-chocolate);
  display: block;
}

body.dark-mode .hero-title .serif-title {
  color: var(--accent-gold-light);
  text-shadow: 0 0 40px rgba(197, 160, 89, 0.3);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 520px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 36px;
}

body.dark-mode .hero-description {
  color: #C0BEC4;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Hero Media Block & Uncropped Natural Portrait Support */
.hero-media-block {
  position: relative;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
  height: clamp(340px, calc(100dvh - 180px), 640px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 35px 70px rgba(10, 10, 13, 0.12);
  background-color: #E6E4E0;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.dark-mode .hero-image-wrapper {
  background-color: #000000;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.selvedge-ribbon-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: var(--bg-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 10;
  border-left: 3px solid var(--accent-selvedge-red);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Auto Slide layout — display toggle for natural sizing */
.hero-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.hero-slide.active {
  display: block;
  width: 100%;
  height: 100%;
  animation: heroFadeIn 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.hero-image-badge {
  position: absolute;
  bottom: 80px; /* Moved up to avoid overlap with slide indicators */
  left: 20px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-dark);
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  transition: var(--transition-fast);
}

body.dark-mode .hero-image-badge {
  background-color: rgba(10, 10, 10, 0.85);
  color: var(--text-light);
  border-color: rgba(253, 252, 250, 0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.hero-image-badge .badge-accent {
  color: var(--accent-selvedge-red);
}

/* Hero Indicator Bars */
.hero-slide-indicators {
  position: absolute;
  bottom: 22px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 15;
}

.hero-indicator-dot {
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--text-dark);
  opacity: 0.22;
  cursor: pointer;
  transition: var(--transition-fast);
}

body.dark-mode .hero-indicator-dot {
  background-color: var(--text-light);
}

.hero-indicator-dot.active {
  opacity: 1;
  width: 38px;
  background-color: var(--accent-chocolate);
}

body.dark-mode .hero-indicator-dot.active {
  background-color: var(--accent-gold);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 2;
}

.indicator-line {
  width: 1px;
  height: 48px;
  background-color: rgba(18, 18, 20, 0.18);
  position: relative;
  overflow: hidden;
}

body.dark-mode .indicator-line {
  background-color: rgba(253,252,250,0.22);
}

.indicator-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  background-color: var(--accent-chocolate);
  animation: scroll-line-anim 2.2s infinite ease-in-out;
}

body.dark-mode .indicator-line::after {
  background-color: var(--accent-gold);
}

.indicator-text {
  font-size: 0.70rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--text-muted);
  font-weight: 700;
}

body.dark-mode .indicator-text {
  color: rgba(253, 252, 250, 0.6);
}

@keyframes scroll-line-anim {
  0% { transform: translateY(-22px); }
  50% { transform: translateY(44px); }
  100% { transform: translateY(44px); }
}

/* ═════════════════════════════════════════════════════════════
   INFINITE MARQUEE STRIP
   ═════════════════════════════════════════════════════════════ */
.marquee-wrapper {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 26px 0;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 3;
  border-top: 2px solid var(--accent-selvedge-red);
  border-bottom: 2px solid var(--accent-selvedge-red);
}

body.dark-mode .marquee-wrapper {
  background-color: #000000;
  color: var(--text-dark);
  border-top-color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.marquee-content {
  display: inline-flex;
  animation: marquee-anim 38s linear infinite;
  padding-right: 50px;
}

.marquee-content span {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  display: flex;
  align-items: center;
}

.marquee-separator {
  margin: 0 44px;
  color: var(--accent-selvedge-red);
}

body.dark-mode .marquee-separator {
  color: var(--accent-gold);
}

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

/* ═════════════════════════════════════════════════════════════
   COLLECTION GRID — THE SS26 DROP
   ═════════════════════════════════════════════════════════════ */
.collection-section {
  background-color: var(--bg-primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px 32px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--bg-secondary);
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 22px;
  border: 1px solid var(--border-color);
}

.product-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.75s cubic-bezier(0.19, 1, 0.22, 1), transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-img.back {
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-img.front {
  opacity: 0;
  transform: scale(0.97);
}

.product-card:hover .product-img.back {
  opacity: 1;
  transform: scale(1);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 5;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

body.dark-mode .product-badge {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  transform: translateY(102%);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 5;
}

.product-card:hover .product-actions {
  transform: translateY(0);
}

.btn-quick-view {
  background-color: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-dark);
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
  transition: var(--transition-fast);
}

.btn-quick-view:hover {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

body.dark-mode .btn-quick-view:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  border-color: var(--text-light);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
}

.product-moq-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-chocolate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--accent-chocolate);
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
}

body.dark-mode .product-moq-label {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.product-specs {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ═════════════════════════════════════════════════════════════
   LOOKBOOK GRID — EDITORIAL COUTURE
   ═════════════════════════════════════════════════════════════ */
.lookbook-section {
  background-color: var(--bg-secondary);
}

.lookbook-gallery {
  display: flex;
  gap: 24px;
}

.lookbook-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lookbook-column.col-main {
  flex: 1.35;
}

.lookbook-column.col-split {
  flex: 1;
}

.lookbook-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(10, 10, 13, 0.06);
  border: 1px solid var(--border-color);
}

.lookbook-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.lookbook-card.large .lookbook-img-wrap {
  aspect-ratio: 3/3.8;
}

.lookbook-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Prevent model heads from ever being cut off */
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.lookbook-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 13, 0.75) 0%, rgba(10, 10, 13, 0.2) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
  opacity: 0.95;
  transition: opacity 0.5s ease;
}

.lookbook-num {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 700;
}

.lookbook-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.lookbook-card:hover .lookbook-img {
  transform: scale(1.06);
}

/* ═════════════════════════════════════════════════════════════
   THE CRAFT SECTION
   ═════════════════════════════════════════════════════════════ */
.craft-section {
  background-color: var(--bg-primary);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
}

.craft-media {
  position: relative;
}

.craft-image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
}

.craft-img-large {
  width: 86%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 35px 70px rgba(10, 10, 13, 0.1);
  border: 1px solid var(--border-color);
}

.craft-img-small {
  position: absolute;
  bottom: -44px;
  right: 0;
  width: 52%;
  height: auto;
  border: 12px solid var(--bg-primary);
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(10, 10, 13, 0.15);
  object-fit: cover;
  transition: border-color 0.45s ease;
}

.craft-text {
  font-size: 1.12rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.75;
  margin-top: 26px;
}

.craft-specs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 54px;
  border-top: 1px solid var(--border-color);
  padding-top: 44px;
}

.spec-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-chocolate);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

body.dark-mode .spec-number {
  color: var(--accent-gold);
}

.spec-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  line-height: 1.45;
}

/* ═════════════════════════════════════════════════════════════
   INSTAGRAM FEED / REELS SHOWCASE
   ═════════════════════════════════════════════════════════════ */
.instagram-feed-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.insta-inline-link {
  color: var(--accent-chocolate);
  font-weight: 700;
  text-decoration: underline;
}

body.dark-mode .insta-inline-link {
  color: var(--accent-gold);
}

.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 44px;
  margin-bottom: 56px;
}

.reel-card {
  background-color: var(--bg-secondary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(10, 10, 13, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.reel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(10, 10, 13, 0.12);
  border-color: var(--accent-chocolate);
}

body.dark-mode .reel-card:hover {
  border-color: var(--accent-gold);
}

.reel-media {
  position: relative;
  aspect-ratio: 9/13;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Ensure models in reel covers have full heads shown */
  transition: transform 0.8s ease;
}

.reel-card:hover .reel-thumbnail {
  transform: scale(1.06);
}

.reel-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 13, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.9;
  transition: var(--transition-fast);
}

.reel-card:hover .reel-play-overlay {
  background-color: rgba(10, 10, 13, 0.2);
  opacity: 1;
}

.reel-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(253, 252, 250, 0.95);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  transition: transform 0.35s ease;
}

.reel-card:hover .reel-play-icon {
  transform: scale(1.12);
  background-color: var(--accent-chocolate);
  color: #fff;
}

body.dark-mode .reel-card:hover .reel-play-icon {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.reel-views {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.reel-caption {
  padding: 22px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  flex: 1;
}

.reel-caption strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}

.center-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* ═════════════════════════════════════════════════════════════
   SGE / AI OVERVIEWS B2B WHOLESALE FAQ SECTION
   ═════════════════════════════════════════════════════════════ */
.b2b-faq-section {
  padding: 110px 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.faq-header {
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.faq-grid {
  max-width: 880px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-card {
  background-color: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px 28px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.faq-card[open] {
  border-color: var(--accent-chocolate);
  box-shadow: 0 12px 32px rgba(140, 83, 62, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  min-height: 44px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-toggle-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-chocolate);
  transition: transform 0.35s ease;
  min-width: 28px;
  text-align: right;
}

.faq-card[open] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-color);
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.faq-answer strong {
  color: var(--text-dark);
  font-weight: 600;
}

.faq-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

body.dark-mode .faq-card {
  background-color: var(--bg-dark-card);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .faq-card[open] {
  border-color: var(--accent-gold);
}

body.dark-mode .faq-question {
  color: var(--text-light);
}

body.dark-mode .faq-toggle-icon {
  color: var(--accent-gold);
}

body.dark-mode .faq-answer strong {
  color: var(--text-light);
}

/* ═════════════════════════════════════════════════════════════
   LOCATION / MAP SECTION
   ═════════════════════════════════════════════════════════════ */
.location-section {
  background-color: var(--bg-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
}

.location-description {
  font-size: 1.14rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 26px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 44px;
  border-left: 3px solid var(--accent-chocolate);
  padding-left: 28px;
}

body.dark-mode .address-details {
  border-left-color: var(--accent-gold);
}

.address-block strong, .contact-block strong {
  display: block;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-chocolate);
  margin-bottom: 10px;
  font-weight: 700;
}

body.dark-mode .address-block strong, body.dark-mode .contact-block strong {
  color: var(--accent-gold);
}

.address-block p, .contact-block p {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.65;
}

.contact-link {
  font-weight: 600;
  border-bottom: 1px dashed var(--text-dark);
}

.contact-link:hover {
  color: var(--accent-chocolate);
  border-bottom-color: var(--accent-chocolate);
}

body.dark-mode .contact-link:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.location-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 10, 13, 0.1);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.map-iframe-container {
  position: relative;
  width: 100%;
  height: 460px;
}

.map-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: filter 0.45s ease;
}

body.dark-mode .map-iframe-container iframe {
  filter: grayscale(1) invert(0.92) contrast(1.25);
}

/* ═════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═════════════════════════════════════════════════════════════ */
.testimonials-section {
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-slider-container {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 24px 44px;
  text-align: center;
}

.testimonial-stars {
  font-size: 1.3rem;
  color: var(--accent-gold);
  margin-bottom: 28px;
  letter-spacing: 0.24em;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1.45;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 34px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.author-location {
  font-size: 0.86rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 44px;
}

.slider-btn {
  font-size: 1.3rem;
  color: var(--text-dark);
  opacity: 0.45;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-dark);
  opacity: 0.2;
  border-radius: 50%;
  transition: var(--transition-fast);
  cursor: pointer;
}

.slider-dot.active {
  opacity: 1;
  background-color: var(--accent-chocolate);
  transform: scale(1.4);
}

body.dark-mode .slider-dot.active {
  background-color: var(--accent-gold);
}

/* ═════════════════════════════════════════════════════════════
   NEWSLETTER DROPS SECTION
   ═════════════════════════════════════════════════════════════ */
.newsletter-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

body.dark-mode .newsletter-section {
  background-color: #000000;
}

.newsletter-decor-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 30vw;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.newsletter-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.color-light {
  color: var(--accent-gold);
}

.newsletter-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.newsletter-desc {
  font-size: 1.14rem;
  color: var(--text-light-muted);
  max-width: 640px;
  margin: 0 auto 44px auto;
  font-weight: 400;
  line-height: 1.7;
}

.newsletter-form {
  max-width: 620px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.22);
  padding-bottom: 12px;
}

body.dark-mode .input-group {
  border-bottom-color: var(--border-color);
}

.input-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-light);
  font-size: clamp(1rem, 1.08rem, 1.2rem);
  min-height: 44px;
  line-height: 1.4;
  padding: 10px 14px;
  font-weight: 400;
}

body.dark-mode .input-field {
  color: var(--text-dark);
}

.input-field::placeholder {
  color: rgba(255,255,255,0.38);
}

body.dark-mode .input-field::placeholder {
  color: rgba(255,255,255,0.55);
}

.btn-submit {
  background-color: var(--text-light);
  color: var(--bg-dark);
  padding: 16px 32px;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  border-radius: 4px;
  transition: var(--transition-fast);
}

body.dark-mode .btn-submit {
  background-color: var(--text-dark);
  color: var(--bg-primary);
}

.btn-submit:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

body.dark-mode .btn-submit:hover {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
}

.form-feedback {
  display: block;
  margin-top: 18px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.form-feedback.success {
  color: #88C070;
}

/* ═════════════════════════════════════════════════════════════
   FOOTER
   ═════════════════════════════════════════════════════════════ */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 90px 0 calc(44px + env(safe-area-inset-bottom, 0px)) 0;
  border-top: 1px solid var(--border-color-dark);
}

body.dark-mode .footer {
  background-color: var(--bg-primary);
  border-top-color: var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 64px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  margin-bottom: 26px;
  border-radius: 4px;
}

.footer-about-text {
  font-size: 0.96rem;
  color: var(--text-light-muted);
  max-width: 340px;
  line-height: 1.68;
  font-weight: 400;
}

.footer-heading {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 28px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-light-muted);
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 6px;
}

body.dark-mode .footer-links a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding-top: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.dark-mode .footer-bottom {
  border-top-color: var(--border-color);
}

.copyright {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

body.dark-mode .copyright {
  color: rgba(18, 18, 20, 0.55);
}

.signature {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

body.dark-mode .signature {
  color: rgba(18, 18, 20, 0.55);
}

/* ═════════════════════════════════════════════════════════════
   MODAL / LIGHTBOX
   ═════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 13, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-primary);
  width: 100%;
  max-width: 980px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transform: translateY(35px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  border: 1px solid var(--border-color);
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 26px;
  right: 26px;
  font-size: 1.4rem;
  color: var(--text-dark);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--glass-bg);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: rotate(90deg);
}

body.dark-mode .modal-close:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-media {
  background-color: var(--bg-secondary);
  position: relative;
  border-right: 1px solid var(--border-color);
}

.modal-slider-wrap {
  width: 100%;
  aspect-ratio: 9/12;
  overflow: hidden;
  position: relative;
}

.modal-img-active {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}

.modal-media-nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 5;
}

.modal-nav-btn {
  background-color: var(--glass-bg);
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  font-weight: 700;
  transition: var(--transition-fast);
  border: 1px solid var(--border-color);
}

.modal-nav-btn:hover {
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: scale(1.1);
}

.modal-content {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-tag {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-chocolate);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

body.dark-mode .modal-tag {
  color: var(--accent-gold);
}

.modal-product-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 14px;
}

.modal-product-moq {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-selvedge-red);
  margin-bottom: 28px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.dark-mode .modal-product-moq {
  color: var(--accent-gold);
}

.modal-desc-box {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 32px;
  font-weight: 400;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 22px 0;
  margin-bottom: 34px;
}

.modal-spec-cell strong {
  display: block;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.modal-spec-cell span {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 400;
}

.size-selector-row {
  margin-bottom: 38px;
}

.size-title {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.size-options {
  display: flex;
  gap: 12px;
}

.size-btn {
  border: 1px solid var(--border-color);
  width: 48px;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  font-weight: 600;
  transition: var(--transition-fast);
  color: var(--text-dark);
  background: var(--bg-secondary);
}

.size-btn.active, .size-btn:hover {
  border-color: var(--text-dark);
  background-color: var(--text-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

body.dark-mode .size-btn.active, body.dark-mode .size-btn:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* Info helper card styling */
.info-card {
  max-width: 520px;
  padding: 44px;
}

.info-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.info-body {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.info-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

.info-body th, .info-body td {
  border: 1px solid var(--border-color);
  padding: 12px;
  text-align: center;
}

.info-body th {
  background-color: var(--bg-secondary);
  font-weight: 700;
}

/* ═════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ═════════════════════════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 18px 32px;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.22);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translateY(20px);
  opacity: 0;
  animation: toast-in 0.45s forwards cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border-color-dark);
}

body.dark-mode .toast {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

@keyframes toast-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ═════════════════════════════════════════════════════════════
   B2B COMMUNITY & QR CONNECT SECTION
   ═════════════════════════════════════════════════════════════ */
.qr-connect-section {
  padding: 120px 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

body.dark-mode .qr-connect-section {
  background-color: #121212;
  border-color: rgba(255, 255, 255, 0.05);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.qr-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.dark-mode .qr-card {
  background-color: #1c1c1e;
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.qr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(210, 105, 30, 0.08);
  border-color: var(--accent-chocolate);
}

body.dark-mode .qr-card:hover {
  box-shadow: 0 20px 40px rgba(218, 165, 32, 0.08);
  border-color: var(--accent-gold);
}

.qr-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  background-color: rgba(210, 105, 30, 0.08);
  color: var(--accent-chocolate);
}

body.dark-mode .qr-badge {
  background-color: rgba(218, 165, 32, 0.1);
  color: var(--accent-gold);
}

.qr-badge.insta {
  background-color: rgba(225, 48, 108, 0.08);
  color: #e1306c;
}

.qr-badge.wa {
  background-color: rgba(34, 197, 94, 0.08);
  color: #22c55e;
}

.qr-image-wrapper {
  width: 180px;
  height: 180px;
  margin: 20px 0 30px 0;
  border-radius: 16px;
  padding: 10px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
}

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

.qr-scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(210, 105, 30, 0.04);
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-card:hover .qr-scan-overlay {
  opacity: 1;
}

.qr-scan-icon {
  font-size: 2rem;
  animation: pulseDot 2s infinite;
}

.qr-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

body.dark-mode .qr-card-title {
  color: var(--text-light);
}

.qr-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.qr-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-chocolate);
  transition: var(--transition-fast);
  margin-top: auto;
}

body.dark-mode .qr-card-link {
  color: var(--accent-gold);
}

.qr-card-link:hover {
  letter-spacing: 0.14em;
}

/* Responsive grid adjustment */
@media (max-width: 991px) {
  .qr-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 500px;
    margin: 40px auto 0 auto;
  }
  .qr-card {
    padding: 30px 24px;
  }
}

/* ═════════════════════════════════════════════════════════════
   RESPONSIVENESS (MEDIA QUERIES)
   ═════════════════════════════════════════════════════════════ */
@media (max-width: 1150px) {
  .brand-tagline {
    display: none !important;
  }
  .nav-menu {
    gap: 20px;
  }
  .header-actions {
    gap: 12px;
  }
  .btn-minimal-cta {
    padding: 8px 16px;
    font-size: 0.72rem;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .instagram-reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .lookbook-gallery {
    flex-wrap: wrap;
  }
  .lookbook-column.col-main {
    flex: 100%;
  }
  .lookbook-card.large .lookbook-img-wrap {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 991px) {
  section {
    padding: 90px 0;
  }
  .hero-section {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 50px;
  }
  .hero-text-block {
    padding-top: 0;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta-group {
    justify-content: center;
    gap: 16px;
  }
  .hero-image-wrapper {
    max-width: 440px;
    margin: 0 auto;
  }
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .craft-img-large {
    width: 100%;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .modal-body-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 34px;
  }
}

@media (max-width: 768px) {
  /* Note: Fluid container and safe-area padding are governed by base styles */
  .nav-menu {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.08;
  }
  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 16px;
  }
  .instagram-reels-grid {
    grid-template-columns: 1fr;
  }
  .lookbook-column {
    flex: 100% !important;
  }
  .newsletter-title {
    font-size: 2.5rem;
  }
  .input-group {
    flex-direction: column;
    border-bottom: none;
    gap: 12px;
  }
  .input-field {
    border-bottom: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 4px;
  }
  .testimonial-quote {
    font-size: 1.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(1.9rem, 9.5vw, 2.5rem);
  }
  .section-title {
    font-size: clamp(1.7rem, 8.5vw, 2.3rem);
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  .hero-cta-group a, .hero-cta-group button {
    width: 100%;
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-actions {
    gap: 12px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(1.7rem, 9vw, 2.1rem);
    word-break: break-word;
  }
  .section-title {
    font-size: clamp(1.5rem, 8vw, 1.9rem);
    word-break: break-word;
  }
  .btn-primary {
    padding: 16px 20px;
    letter-spacing: 0.12em;
  }
  .brand-logo img {
    height: 38px;
  }
}

@media (max-width: 330px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .btn-primary {
    padding: 14px 16px;
    font-size: 0.78rem;
  }
}
