/* ==========================================================================
   M.DOOKHOO & CIE (NYLEX SHOES) — Premium B2B Leather Footwear Theme
   Colors: Black, Brown, Gold, White
   ========================================================================== */

:root {
  --black: #0d0b09;
  --black-soft: #1a1209;
  --brown-dark: #2e1f14;
  --brown: #5c4033;
  --brown-light: #8b6914;
  --gold: #c9a227;
  --gold-light: #d4af37;
  --gold-dark: #a6851f;
  --white: #ffffff;
  --cream: #f8f6f3;
  --cream-dark: #ebe6df;
  --text: #2a2218;
  --text-muted: #6b5d4f;
  --border: rgba(201, 162, 39, 0.2);
  --shadow: 0 20px 50px rgba(13, 11, 9, 0.15);
  --shadow-lg: 0 30px 70px rgba(13, 11, 9, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black-soft);
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

.text-gold { color: var(--gold) !important; }

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: none;
  color: var(--black-soft) !important;
  font-weight: 600;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.4);
  color: var(--black) !important;
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black-soft) !important;
  border-color: var(--gold);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--gold);
  animation: pulse 1.5s ease infinite;
}

.preloader-text {
  display: block;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  margin: 1.5rem auto 0;
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: loadBar 1.2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Header / Navbar */
.site-header {
  z-index: 1030;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header .navbar {
  transition: padding var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 11, 9, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.site-header.scrolled .navbar { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }

.site-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.site-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.site-logo-img--sm {
  height: 44px;
  max-width: 160px;
}

.site-logo-img--footer {
  height: 72px;
  max-width: 220px;
}

.site-header.scrolled .site-logo-img {
  height: 46px;
}

.offcanvas-logo {
  display: inline-flex;
  line-height: 0;
}

.navbar-dark .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.navbar-dark .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition), left var(--transition);
}

.navbar-dark .nav-link:hover::after,
.navbar-dark .nav-link:focus::after {
  width: 60%;
  left: 20%;
}

.offcanvas-nav {
  background: var(--black-soft);
}

.offcanvas-nav .nav-link { color: var(--cream) !important; }

.top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black-soft);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 1020;
  box-shadow: var(--shadow);
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-btn:hover { transform: translateY(-4px); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 11, 9, 0.88) 0%,
    rgba(26, 18, 9, 0.75) 50%,
    rgba(46, 31, 20, 0.85) 100%
  );
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; padding-top: var(--header-h); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-highlights {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-highlight-item:last-child { border-bottom: none; }

.highlight-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-soft);
  font-size: 1rem;
}

.highlight-text {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

.scroll-indicator i { font-size: 0.9rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-label-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
}

.section-text {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-header { margin-bottom: 3.5rem; }

/* About */
.section-about { background: var(--white); }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.badge-year {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-soft);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-dark);
}

.feature-mini-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-mini-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--black-soft);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.feature-mini-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-mini-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Products */
.section-products {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Image zoom on hover */
.img-zoom-wrap { overflow: hidden; }

.img-zoom {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.img-zoom-wrap:hover .img-zoom,
.product-card:hover .img-zoom,
.featured-card:hover .img-zoom,
.mfg-featured:hover .img-zoom {
  transform: scale(1.06);
}

.product-card:hover .product-image { transform: scale(1.1); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 11, 9, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

.product-body { padding: 1.5rem; }

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* Featured Products */
.section-featured {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}

.featured-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--black-soft);
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.featured-body {
  padding: 1.25rem;
  text-align: center;
}

.featured-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.featured-link:hover { color: var(--gold); }

/* Manufacturing */
.section-manufacturing {
  background: var(--black-soft);
  color: var(--cream);
}

.section-manufacturing .section-title,
.section-manufacturing .section-label { color: var(--cream); }

.section-manufacturing .section-label { color: var(--gold); }

.section-manufacturing .section-text { color: rgba(248, 246, 243, 0.75); }

.manufacturing-stats {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.mfg-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mfg-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-soft);
  font-size: 1.1rem;
}

.mfg-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mfg-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.raw-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

.raw-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.raw-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--cream);
}

.raw-list li i { color: var(--gold); font-size: 0.75rem; }

/* Our Facility — single featured image */
.mfg-featured {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: box-shadow var(--transition), transform var(--transition);
}

.mfg-featured:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.mfg-featured-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--brown-dark);
}

.mfg-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mfg-featured:hover .mfg-featured-img {
  transform: scale(1.06);
}

.mfg-featured-caption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border);
}

/* Why Choose */
.section-why { background: var(--white); }

.why-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  transition: height var(--transition);
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.why-card:hover::before { height: 100%; }

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--black-soft);
  color: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.why-check {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--gold);
  opacity: 0.3;
  font-size: 1.25rem;
}

.why-card:hover .why-check { opacity: 1; }

/* Markets */
.section-markets { background: var(--cream); }

.market-group { margin-bottom: 2rem; }

.market-group-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black-soft);
  margin-bottom: 1rem;
}

.market-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.market-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-weight: 600;
  color: var(--brown-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.market-tags li i { color: var(--gold-dark); }

.market-tags-target li {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
}

.world-map-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}

.world-map { width: 100%; height: auto; }

.map-pin { fill: var(--gold); }
.map-pin-target { fill: var(--gold-light); opacity: 0.8; }

.map-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  opacity: 0.4;
  animation: mapPulse 2s ease infinite;
}

@keyframes mapPulse {
  0% { r: 8; opacity: 0.6; }
  100% { r: 28; opacity: 0; }
}

.map-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legend-item { display: flex; align-items: center; gap: 0.5rem; }

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend-dot.active { background: var(--gold); }
.legend-dot.target { background: var(--gold-light); border: 2px solid var(--gold-dark); }

/* Stats */
.section-stats {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--brown-dark), var(--black-soft));
  position: relative;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.stat-card { padding: 1.5rem; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.counter-suffix { color: var(--gold-light); }

.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Gallery — 18 ExportersWay products, bento grid */
.section-gallery {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.gallery-bg-accent {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-header { margin-bottom: 2.5rem; }

.gallery-stats {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.gallery-stat {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(13, 11, 9, 0.06);
}

.gallery-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.gallery-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  background: var(--white);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.gallery-filter.active {
  background: var(--black-soft);
  border-color: var(--black-soft);
  color: var(--white);
}

.gallery-filter.active .filter-count {
  background: var(--gold);
  color: var(--black-soft);
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 50px;
  background: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Bento grid — 18 items */
.gallery-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.4s ease;
  box-shadow: 0 4px 20px rgba(13, 11, 9, 0.06);
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.gallery-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card--upper {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

.gallery-card--upper .gallery-card-tag {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--black-soft);
}

.gallery-card-media {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  background: var(--black-soft);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-card--featured .gallery-card-media {
  min-height: 280px;
}

.gallery-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-card-shine { opacity: 1; }

.gallery-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
}

.gallery-card-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}

.gallery-card-meta { flex: 1; min-width: 0; }

.gallery-card-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: var(--black-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--cream);
  color: var(--text-muted);
}

.gallery-card-zoom {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-soft);
  color: var(--gold);
  border-radius: 8px;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.gallery-card:hover .gallery-card-zoom {
  background: var(--gold);
  color: var(--black-soft);
}

.gallery-cta-bar {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.gallery-cta-bar p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.gallery-card:hover .img-zoom { transform: scale(1.08); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 11, 9, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-height: 75vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius);
}

.lightbox-counter {
  display: inline-block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lightbox-caption {
  color: var(--cream);
  margin-top: 1rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.lightbox-tag {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover { background: var(--gold); color: var(--black-soft); }

.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.25rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* FAQ */
.section-faq { background: var(--cream); }

.faq-accordion .accordion-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black-soft);
  background: var(--white);
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--cream);
  color: var(--brown-dark);
}

.faq-accordion .accordion-body {
  color: var(--text-muted);
  padding-top: 0;
}

/* CTA */
.section-cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13,11,9,0.9), rgba(46,31,20,0.85));
}

.cta-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(201, 162, 39, 0.03) 2px,
    rgba(201, 162, 39, 0.03) 4px
  );
}

.section-cta .container { z-index: 3; }

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  font-size: 1.1rem;
}

/* Contact */
.section-contact { background: var(--white); }

.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--cream-dark);
  height: 100%;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 1.5rem;
}

.contact-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--black-soft);
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.15rem;
}

.contact-role {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-details li:last-child { border-bottom: none; }

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--black-soft);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-details p { margin: 0; font-size: 0.95rem; }

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: var(--radius);
}

.contact-form {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.contact-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown-dark);
}

/* Footer */
.site-footer {
  background: var(--black-soft);
  color: rgba(255,255,255,0.7);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  line-height: 0;
}

.footer-brand:hover {
  opacity: 0.92;
}

.footer-about {
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black-soft);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links,
.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--gold); }

.footer-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-info li i { color: var(--gold); width: 18px; }

.footer-info strong { color: var(--white); }

.footer-bottom {
  background: #000000;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-copyright {
  margin: 0;
  flex: 1;
  min-width: min(100%, 280px);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #ffffff;
}

.footer-highlight,
.footer-copyright .footer-highlight {
  color: #c9a227;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-copyright a.footer-highlight:hover {
  color: #d4af37;
  text-decoration: underline;
}

.footer-partner-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-partner-logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .gallery-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-stats { justify-content: flex-start; }
}

@media (max-width: 991.98px) {
  .section { padding: 4rem 0; }

  .gallery-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-toolbar { flex-direction: column; align-items: flex-start; }

}

@media (max-width: 767.98px) {
  .hero-title { max-width: none; }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-partner-logo {
    align-self: flex-end;
  }

  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.75rem;
  }

  .gallery-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-card--featured .gallery-card-media { min-height: 200px; }

  .gallery-stats { width: 100%; }
  .gallery-stat { min-width: calc(33% - 0.75rem); }

  .scroll-indicator { display: none; }
  .top-btn { bottom: 1.25rem; right: 1.25rem; }
  .contact-form,
  .contact-info-card { padding: 1.5rem; }
}

@media (max-width: 575.98px) {
  .hero-btns .btn { width: 100%; }
  .site-logo-img { height: 42px; max-width: 160px; }
  .site-logo-img--footer { height: 60px; max-width: 180px; }

  .gallery-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-card-media { aspect-ratio: 4/3; }

  .gallery-filters { width: 100%; }
  .gallery-filter { flex: 1; justify-content: center; font-size: 0.8rem; padding: 0.5rem 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
