:root {
  color-scheme: light only;
  /* Brand palette — high contrast for visibility */
  --espresso: #1A0F06;       /* near-black espresso, max contrast */
  --bark: #2A1808;            /* very deep brown */
  --copper: #7A4A1F;          /* deep copper, fully visible */
  --copper-deep: #5C3815;
  --cream: #F8F2E5;           /* warm ivory background */
  --paper: #EFE5CC;           /* secondary cream */
  --sand: #E5D9BE;            /* mid-tone divider */
  --whisper: rgba(26, 15, 6, 0.15);
  --hairline: rgba(26, 15, 6, 0.28);
  --whatsapp: #25D366;
}

/* Force light mode — never let browser dark mode invert this */
html {
  color-scheme: light only;
  background-color: #F8F2E5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream) !important;
  background-color: #F8F2E5 !important;
  color: var(--espresso);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

::selection { background: var(--copper); color: var(--cream); }

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(248, 242, 229, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-links a {
  color: var(--espresso);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--copper); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 24px;
  border: 1px solid var(--bark);
  color: var(--bark);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--bark);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--espresso);
  cursor: pointer;
  padding: 8px;
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  gap: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(165, 121, 72, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 580px; }

.eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--copper-deep);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}

.eyebrow::before, .eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--copper);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #1A0F06;
  margin-bottom: 36px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #7A4A1F;
}

.hero-sub {
  font-size: 18px;
  color: #2A1808;
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 500;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 17px 34px;
  background: var(--bark);
  color: var(--cream);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s;
}

.btn-primary:hover {
  background: var(--espresso);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(61, 38, 20, 0.25);
}

.btn-secondary {
  padding: 17px 34px;
  background: transparent;
  color: var(--bark);
  border: 1px solid var(--bark);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.4s;
}

.btn-secondary:hover {
  background: var(--bark);
  color: var(--cream);
}

.hero-visual {
  position: relative;
  height: 78vh;
  max-height: 720px;
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(61, 38, 20, 0.15);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(61, 38, 20, 0.15));
  border-radius: 2px;
}

.hero-edition {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--cream);
  padding: 14px 22px;
  border: 1px solid var(--copper);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--espresso);
  letter-spacing: 0.05em;
  z-index: 3;
  font-weight: 500;
}

.hero-edition strong {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper-deep);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

/* ============== ORNAMENTAL DIVIDER ============== */
.divider {
  text-align: center;
  padding: 30px 0;
  max-width: 1300px;
  margin: 0 auto;
}

.divider::before {
  content: '✦';
  color: var(--copper);
  font-size: 16px;
  position: relative;
}

.divider span {
  display: inline-block;
  width: 80px;
  height: 1px;
  background: var(--hairline);
  margin: 0 24px;
  vertical-align: middle;
}

/* ============== CHAPTER MARKER ============== */
.chapter-marker {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  color: var(--copper-deep);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
}

.chapter-marker::before {
  content: '';
  width: 50px;
  height: 1px;
  background: var(--copper-deep);
}

/* ============== SECTION GENERIC ============== */
.section {
  padding: 130px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #1A0F06;
  margin-bottom: 32px;
}

.section-title em { font-style: italic; color: #7A4A1F; font-weight: 500; }

.section-intro {
  font-size: 18px;
  color: #2A1808;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 60px;
  font-weight: 500;
}

/* ============== MATERIALS SECTION ============== */
.materials {
  background: var(--paper);
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: center;
}

.materials-content { max-width: 540px; }

.materials-image {
  height: 620px;
  background-image: url('materials.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(61, 38, 20, 0.12);
}

.material-list {
  list-style: none;
  margin-top: 40px;
}

.material-list li {
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 24px;
  align-items: center;
}

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

.material-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--copper);
  font-weight: 400;
}

.material-name {
  font-weight: 700;
  color: #1A0F06;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.material-desc {
  font-size: 13px;
  color: var(--bark);
  margin-top: 4px;
  font-weight: 500;
  opacity: 0.85;
}

.material-origin {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--copper-deep);
  letter-spacing: 0.05em;
  text-align: right;
  font-weight: 500;
}

/* ============== COLLECTION ============== */
.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 20px;
}

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

.piece {
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}

.piece:hover { transform: translateY(-8px); }

.piece-image {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(61, 38, 20, 0.08);
  transition: box-shadow 0.5s;
}

.piece:hover .piece-image {
  box-shadow: 0 20px 60px rgba(61, 38, 20, 0.18);
}

.piece-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(61, 38, 20, 0.45));
  opacity: 0;
  transition: opacity 0.4s;
}

.piece:hover .piece-image::after { opacity: 1; }

.piece-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
  z-index: 2;
}

.piece:hover .piece-overlay {
  opacity: 1;
  transform: translateY(0);
}

.piece-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.piece-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1A0F06;
}

.piece-category {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

.piece-spec {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--bark);
  margin-top: 6px;
  opacity: 1;
  font-weight: 500;
}

/* ============== TRADE PROGRAM ============== */
.trade {
  background: var(--espresso);
  color: var(--cream);
  border: none;
  position: relative;
}

.trade .chapter-marker { color: var(--copper); }
.trade .chapter-marker::before { background: var(--copper); }
.trade .section-title { color: var(--cream); }
.trade .section-title em { color: var(--copper); }
.trade .section-intro { color: rgba(248, 242, 229, 0.9); font-weight: 500; opacity: 1; }

.trade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.trade-content { max-width: 540px; }

.trade-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 50px 0;
}

.stat-item {
  border-left: 1px solid var(--copper);
  padding-left: 22px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-number span {
  font-size: 24px;
  color: var(--copper);
  font-style: italic;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 242, 229, 0.85);
  font-weight: 600;
}

.trade-image {
  height: 580px;
  background-image: url('trade.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.trade-points {
  list-style: none;
  margin: 30px 0;
}

.trade-points li {
  padding: 15px 0;
  padding-left: 32px;
  position: relative;
  color: rgba(248, 242, 229, 0.95);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(248, 242, 229, 0.12);
}

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

.trade-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 18px;
  height: 1px;
  background: var(--copper);
}

.trade .btn-primary {
  background: var(--copper);
  color: var(--espresso);
}

.trade .btn-primary:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* ============== CITIES ============== */
.cities {
  background: var(--cream);
  text-align: center;
}

.cities-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.city-item {
  padding: 48px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: #1A0F06;
  position: relative;
}

.city-item:not(:last-child) {
  border-right: 1px solid var(--hairline);
}

.city-item em {
  font-style: italic;
  font-size: 13px;
  color: var(--copper-deep);
  display: block;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cities-note {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--espresso);
  font-size: 17px;
  font-weight: 500;
  opacity: 0.8;
}

/* ============== CONTACT ============== */
.contact {
  background: var(--paper);
  text-align: center;
  padding: 160px 48px;
  border-top: 1px solid var(--hairline);
}

.contact-mark {
  width: 80px;
  height: auto;
  margin: 0 auto 36px;
  opacity: 0.85;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.05;
  margin-bottom: 30px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  color: #1A0F06;
  letter-spacing: -0.015em;
}

.contact-title em { font-style: italic; color: #7A4A1F; }

.contact-sub {
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 50px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0.88;
}

.contact-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 44px;
  background: var(--whatsapp);
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.4s;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.contact-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.45);
}

.contact-alt {
  margin-top: 44px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--espresso);
  font-weight: 500;
}

.contact-alt a {
  color: var(--copper);
  border-bottom: 1px solid var(--copper);
  padding-bottom: 2px;
  transition: color 0.3s;
  font-style: italic;
}

.contact-alt a:hover { color: var(--espresso); }

/* ============== FOOTER ============== */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 80px 48px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 70px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) sepia(0.3);
  opacity: 0.95;
}

.footer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(248, 242, 229, 0.85);
  font-size: 17px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }
.footer-col a {
  color: rgba(248, 242, 229, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--copper); }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(248, 242, 229, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(248, 242, 229, 0.55);
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.05em;
}

/* ============== FLOATING WHATSAPP BUTTON ============== */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: var(--whatsapp);
  color: white;
  padding: 16px 26px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  z-index: 99;
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.35);
  transition: all 0.4s;
  letter-spacing: 0.02em;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
}

.wa-float svg { flex-shrink: 0; }

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: var(--whatsapp);
  animation: pulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============== ANIMATIONS ============== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cities-list { grid-template-columns: repeat(3, 1fr); }
  .cities-list .city-item:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .nav-logo img { height: 40px; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }

  .hero {
    grid-template-columns: 1fr;
    padding: 110px 20px 60px;
    gap: 50px;
  }

  .hero-visual { height: 60vh; max-height: 500px; }
  .hero-edition { left: 0; bottom: -16px; font-size: 13px; }

  .section { padding: 90px 20px; }

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

  .materials-image { height: 400px; order: -1; }

  .collection-grid { grid-template-columns: 1fr; gap: 30px; }

  .trade-inner { grid-template-columns: 1fr; gap: 50px; }
  .trade-image { height: 400px; order: -1; }
  .trade-stats { gap: 30px; }
  .stat-number { font-size: 42px; }

  .cities-list { grid-template-columns: 1fr; }
  .city-item { padding: 26px 20px; border-right: none !important; border-bottom: 1px solid var(--hairline); }
  .city-item:last-child { border-bottom: none; }

  .contact { padding: 90px 20px; }
  .contact-mark { width: 64px; margin-bottom: 28px; }

  .footer { padding: 60px 20px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { padding-top: 30px; flex-direction: column; text-align: center; }

  .wa-float { padding: 14px 22px; font-size: 13px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 48px; }
  .section-title { font-size: 38px; }
  .cta-group { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .wa-float-text { display: none; }
  .wa-float { padding: 14px; }
  .collection-header { flex-direction: column; align-items: flex-start; }
}

/* ============== PRODUCT LIGHTBOX ============== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 15, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  display: flex;
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(248, 242, 229, 0.15);
  border: 1px solid rgba(248, 242, 229, 0.3);
  color: var(--cream);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
}
.lightbox-close:hover {
  background: rgba(248, 242, 229, 0.25);
  transform: rotate(90deg);
}
.lightbox-content {
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  max-width: 1400px;
  width: 100%;
  padding: 48px;
  align-items: center;
  max-height: 100vh;
}
.lightbox-image-wrap {
  position: relative;
  background: var(--bark);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.lightbox-image.fading {
  opacity: 0.3;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(248, 242, 229, 0.92);
  border: none;
  color: var(--espresso);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.lightbox-arrow:hover {
  background: var(--cream);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-arrow-left { left: 16px; }
.lightbox-arrow-right { right: 16px; }
.lightbox-arrow.hidden { display: none; }
.lightbox-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(26, 15, 6, 0.7);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.lightbox-info {
  color: var(--cream);
  padding: 24px;
}
.lightbox-category {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  font-weight: 600;
}
.lightbox-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.lightbox-spec {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 242, 229, 0.75);
  margin-bottom: 24px;
}
.lightbox-price {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(248, 242, 229, 0.2);
  font-weight: 500;
}
.lightbox-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--whatsapp);
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-bottom: 32px;
}
.lightbox-cta:hover {
  background: #1eb754;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}
.lightbox-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lightbox-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.lightbox-thumb:hover { opacity: 0.85; }
.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--copper);
}
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .lightbox-content {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px;
    padding-top: 80px;
    overflow-y: auto;
  }
  .lightbox-info {
    padding: 0 8px 32px;
  }
  .lightbox-name { font-size: 40px; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 26px; }
  .lightbox-arrow-left { left: 8px; }
  .lightbox-arrow-right { right: 8px; }
  .lightbox-close { width: 40px; height: 40px; font-size: 24px; top: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================ */
/* ============== CATEGORY PAGE ADDITIONS ===================== */
/* ============================================================ */

/* ============== BREADCRUMB ============== */
.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 48px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--copper-deep);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.breadcrumb a {
  color: var(--bark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.breadcrumb a:hover {
  border-bottom-color: var(--copper);
}

.breadcrumb-sep {
  margin: 0 12px;
  color: var(--copper);
  font-style: normal;
}

/* ============== CATEGORY HERO ============== */
.cat-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 48px 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}

.cat-hero-content { max-width: 580px; }

.cat-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #1A0F06;
  margin-bottom: 32px;
}

.cat-hero h1 em { font-style: italic; color: #7A4A1F; font-weight: 500; }

.cat-hero-sub {
  font-size: 18px;
  color: #2A1808;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 500;
  max-width: 500px;
}

.cat-hero-visual {
  height: 65vh;
  max-height: 620px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(61, 38, 20, 0.15);
  position: relative;
}

.cat-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(61, 38, 20, 0.15));
  border-radius: 2px;
}

/* ============== CUSTOM OPTIONS GRID ============== */
.options {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

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

.option-card {
  border-top: 1px solid var(--copper);
  padding-top: 28px;
}

.option-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--copper-deep);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}

.option-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1A0F06;
  margin-bottom: 16px;
  line-height: 1.15;
}

.option-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--bark);
  font-weight: 500;
}

/* ============== PROCESS / LEAD TIME ============== */
.process {
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.process-step {
  padding: 50px 32px;
  position: relative;
}

.process-step:not(:last-child) {
  border-right: 1px solid var(--hairline);
}

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}

.process-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 700;
  margin-bottom: 14px;
}

.process-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--bark);
  font-weight: 500;
}

/* ============== FAQ ============== */
.faq {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
}

.faq-list {
  max-width: 880px;
  margin: 60px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--hairline);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 30px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: #1A0F06;
  letter-spacing: -0.005em;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--copper); }

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--copper);
  transition: all 0.3s;
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
}

.faq-item.open .faq-toggle {
  background: var(--copper);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 16px;
  line-height: 1.75;
  color: var(--bark);
  font-weight: 500;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 30px;
}

/* ============== TRADE CALLOUT (MINI) ============== */
.trade-callout {
  background: var(--espresso);
  color: var(--cream);
  padding: 80px 48px;
  text-align: center;
}

.trade-callout-inner {
  max-width: 720px;
  margin: 0 auto;
}

.trade-callout .chapter-marker {
  color: var(--copper);
  justify-content: center;
}

.trade-callout .chapter-marker::before {
  background: var(--copper);
}

.trade-callout h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.trade-callout h3 em { font-style: italic; color: var(--copper); }

.trade-callout p {
  font-size: 17px;
  color: rgba(248, 242, 229, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 500;
}

.trade-callout .btn-primary {
  background: var(--copper);
  color: var(--espresso);
}

.trade-callout .btn-primary:hover {
  background: var(--cream);
  color: var(--espresso);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .options-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--hairline); }
}

@media (max-width: 768px) {
  .breadcrumb { padding: 90px 20px 0; font-size: 13px; }
  .cat-hero {
    grid-template-columns: 1fr;
    padding: 30px 20px 60px;
    gap: 40px;
    min-height: auto;
  }
  .cat-hero-visual { height: 55vh; max-height: 440px; order: -1; }
  .options-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid var(--hairline); padding: 36px 20px; }
  .process-step:last-child { border-bottom: none; }
  .faq-question { font-size: 19px; padding: 24px 0; }
  .trade-callout { padding: 60px 20px; }
}
