/* ===========================
   COPA WATCHES — Main Styles
   Luxury Editorial / Brazilian Gold
   =========================== */

:root {
  --gold: #C9963A;
  --gold-light: #E8B85A;
  --gold-pale: #F2D08A;
  --amber: #D4832A;
  --black: #0A0805;
  --dark: #110E09;
  --dark-2: #1A1510;
  --dark-3: #241D14;
  --warm-gray: #7A6A55;
  --light-text: #E8DDD0;
  --muted: #9B8C78;
  --white: #FAF7F2;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--black);
  color: var(--light-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 8, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 150, 58, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.2em;
  color: var(--gold);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--light-text); }

.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 150, 58, 0.4);
  padding: 8px 20px;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--light-text);
  transition: var(--transition);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  border-radius: 2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201, 150, 58, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--light-text);
  border: 1px solid rgba(232, 221, 208, 0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-full { width: 100%; }

/* ===========================
   SECTION UTILITIES
=========================== */
.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  color: var(--white);
}

.italic { font-style: italic; }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 8, 5, 0.95) 0%,
    rgba(10, 8, 5, 0.6) 40%,
    rgba(10, 8, 5, 0.2) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 900px;
  animation: heroFadeUp 1.2s 0.3s ease both;
}

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

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.hero-title-line { display: block; }
.hero-title-line.italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 120px);
  color: var(--gold-light);
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFadeUp 1.2s 0.8s ease both;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===========================
   MANIFESTO
=========================== */
.manifesto {
  background: var(--dark);
  padding: 120px 64px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 40px;
  border: none;
}

.manifesto-quote em {
  color: var(--gold-light);
  font-style: italic;
}

.manifesto-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.manifesto-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201, 150, 58, 0.2);
  border-left: 1px solid rgba(201, 150, 58, 0.2);
}

.manifesto-stat {
  padding: 40px 32px;
  border-right: 1px solid rgba(201, 150, 58, 0.2);
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===========================
   PILLARS
=========================== */
.pillars {
  background: var(--black);
  padding: 120px 64px;
}

.pillars-header {
  text-align: center;
  margin-bottom: 80px;
}

.pillar-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border: 1px solid rgba(201, 150, 58, 0.1);
  transition: border-color var(--transition);
}
.pillar:hover { border-color: rgba(201, 150, 58, 0.3); }

.pillar-reverse { direction: rtl; }
.pillar-reverse > * { direction: ltr; }

.pillar-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.pillar-v1 { background: linear-gradient(135deg, #1A1208 0%, #2D2010 50%, #C9963A15 100%); }
.pillar-v2 { background: linear-gradient(135deg, #08101A 0%, #102030 50%, #3A6EC915 100%); }
.pillar-v3 { background: linear-gradient(135deg, #0F1A08 0%, #1A2D10 50%, #5AC93A15 100%); }
.pillar-v4 { background: linear-gradient(135deg, #1A0A08 0%, #2D1410 50%, #C93A3A15 100%); }

.pillar-icon {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity var(--transition), transform var(--transition);
}
.pillar:hover .pillar-icon {
  opacity: 0.8;
  transform: scale(1.1) rotate(15deg);
}

.pillar-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pillar-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===========================
   COLLECTION
=========================== */
.collection {
  background: var(--dark-2);
  padding: 140px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.collection-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 40vw;
  color: var(--gold);
  opacity: 0.02;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.collection-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.collection-title {
  margin-bottom: 24px;
}

.collection-desc {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 60px;
  line-height: 1.8;
}

.collection-swatches {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.swatch {
  width: 160px;
  height: 100px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.swatch-atlantic { background: linear-gradient(135deg, #1A3320, #2D5C38, #3D7A4A); }
.swatch-seafoam  { background: linear-gradient(135deg, #1A3A45, #2A6E7A, #4AABB8); }
.swatch-fog      { background: linear-gradient(135deg, #C8C8C0, #E0E0D8, #F5F5F0); }
.swatch-fog .swatch-name, .swatch-fog .swatch-num { color: rgba(10,8,5,0.55); }

.swatch-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: rgba(10,8,5,0.7);
  font-style: italic;
}
.swatch-pearl .swatch-name { color: rgba(10,8,5,0.5); }

.swatch-num {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(10,8,5,0.5);
}

/* ===========================
   MOODBOARD
=========================== */
.moodboard {
  overflow: hidden;
}

.moodboard-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 480px;
}

.mood-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.mood-card-1 { background: #1A1208; }
.mood-card-2 { background: #081A0A; }
.mood-card-3 { background: #08121A; }

/* Card 1 — Sugarloaf at golden hour */
.mood-card-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero-rio.jpg') center 35% / cover no-repeat;
  filter: sepia(50%) brightness(0.45) saturate(1.6);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s;
}

/* Card 2 — Jungle philodendron, deep green */
.mood-card-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('mood-jungle.jpg') center center / cover no-repeat;
  filter: brightness(0.45) saturate(1.3) contrast(1.1);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s;
}

/* Card 3 — Coastal rocks & turquoise sea */
.mood-card-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('mood-coast.jpg') center 50% / cover no-repeat;
  filter: brightness(0.5) saturate(1.2) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s;
}

.mood-card:hover::before {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(1.1) contrast(1.0);
}

.mood-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.8) 0%, transparent 60%);
  z-index: 1;
}

.mood-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--light-text);
  line-height: 1.3;
}

/* ===========================
   STATEMENT
=========================== */
.statement {
  background: var(--dark-3);
  padding: 120px 64px;
  text-align: center;
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
}

.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
}
.statement-text em {
  color: var(--gold-light);
  font-style: italic;
}

/* ===========================
   RESERVE / FORM
=========================== */
.reserve {
  background: var(--dark);
  padding: 120px 64px;
  border-top: 1px solid rgba(201, 150, 58, 0.15);
}

.reserve-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.reserve-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.reserve-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.reserve-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reserve-perks li {
  font-size: 14px;
  color: var(--light-text);
  letter-spacing: 0.05em;
}

/* Form */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--dark-3);
  padding: 48px;
  border: 1px solid rgba(201, 150, 58, 0.15);
  border-radius: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 150, 58, 0.2);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light-text);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input::placeholder { color: var(--warm-gray); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark-3); }

.form-note {
  font-size: 12px;
  color: var(--warm-gray);
  text-align: center;
  margin-top: -8px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  background: var(--dark-3);
  padding: 64px 48px;
  border: 1px solid rgba(201, 150, 58, 0.3);
  border-radius: 4px;
}

.form-success.visible { display: flex; }

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
}

.form-success p {
  color: var(--muted);
  font-size: 15px;
  max-width: 320px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--black);
  padding: 64px 64px 32px;
  border-top: 1px solid rgba(201, 150, 58, 0.1);
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--warm-gray);
  font-size: 14px;
}

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

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 150, 58, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.05em;
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .manifesto-stat-row { grid-template-columns: repeat(2, 1fr); }
  .pillar, .pillar-reverse { grid-template-columns: 1fr; direction: ltr; }
  .pillar-visual { min-height: 200px; }
  .reserve-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,8,5,0.98);
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(201, 150, 58, 0.1);
  }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px 64px; }
  .hero-scroll-hint { display: none; }

  .manifesto { padding: 80px 24px; }
  .manifesto-stat-row { grid-template-columns: 1fr 1fr; }

  .pillars, .collection, .statement, .reserve { padding: 80px 24px; }
  .pillar-content { padding: 40px 32px; }

  .moodboard-strip { grid-template-columns: 1fr; height: auto; }
  .mood-card { height: 280px; }

  .footer { padding: 48px 24px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

/* ===========================
   MERCADO SECTION
=========================== */
.mercado {
  background: var(--dark-2);
  padding: 120px 64px;
  border-top: 1px solid rgba(201, 150, 58, 0.1);
}

.mercado-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.mercado-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

.mercado-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mercado-card {
  padding: 40px 0;
  border-bottom: 1px solid rgba(201, 150, 58, 0.12);
}
.mercado-card:first-child { border-top: 1px solid rgba(201, 150, 58, 0.12); }

.mercado-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-style: italic;
}

.mercado-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

/* Statement small variant */
.statement-small {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .mercado { padding: 80px 24px; }
  .mercado-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ===========================
   LANGUAGE TOGGLE
=========================== */
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(201, 150, 58, 0.35);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 6px 12px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 8px;
}
.lang-toggle:hover {
  background: var(--gold);
  color: var(--black);
}

/* ===========================
   PRODUCT DIVIDER (image 2 — wide cinematic)
=========================== */
.product-divider {
  position: relative;
  height: 85vh;
  min-height: 560px;
  overflow: hidden;
}

.product-divider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  transition: transform 12s ease;
}

.product-divider:hover .product-divider-img {
  transform: scale(1.0);
}

.product-divider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,5,0.15) 0%,
    rgba(10,8,5,0.05) 30%,
    rgba(10,8,5,0.5) 80%,
    rgba(10,8,5,0.9) 100%
  );
}

.product-divider-text {
  position: absolute;
  bottom: 64px;
  left: 64px;
  z-index: 2;
}

.product-divider-text h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.product-divider-text .section-label {
  margin-bottom: 12px;
}

/* ===========================
   COLLECTION — split layout with product image
=========================== */
.collection-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  position: relative;
  z-index: 1;
}

.collection-img-side {
  position: relative;
  overflow: hidden;
}

.collection-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-img-side:hover .collection-product-img {
  transform: scale(1.04);
}

/* Override old centered layout — content side now left-aligned */
.collection .collection-inner {
  padding: 80px 64px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collection .collection-swatches {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .product-divider { height: 60vh; }
  .product-divider-text { left: 24px; bottom: 40px; }

  .collection-split { grid-template-columns: 1fr; }
  .collection-img-side { height: 400px; }
  .collection .collection-inner { padding: 60px 24px; }
  .collection .collection-swatches { justify-content: center; }
  .collection .collection-inner { text-align: center; }
}

/* ===========================
   HERO TAGLINE
=========================== */
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--gold-pale);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  font-weight: 300;
}

/* CEO avatar — gold treatment for Rafa */
.team-av-ceo {
  background: linear-gradient(135deg, #8B5E1A, #C9963A, #E8B85A);
}

/* ===========================
   ORIGIN — homepage version (lean)
=========================== */
.origin-home {
  background: var(--dark);
  padding: 120px 64px;
}

.origin-home-inner {
  max-width: 720px;
  margin: 0 auto;
}

.origin-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1.4;
  margin-bottom: 40px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.origin-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 600px;
}

.origin-body-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--light-text);
  margin-bottom: 40px;
}

/* ===========================
   PRODUCT DIVIDER — caption update
=========================== */
.product-divider-caption {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 221, 208, 0.6);
  margin-top: 12px;
}

/* ===========================
   COLLECTION SPECS TABLE
=========================== */
.collection-specs {
  margin: 32px 0 36px;
  border-top: 1px solid rgba(201, 150, 58, 0.15);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 150, 58, 0.1);
  gap: 16px;
}

.spec-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}

.spec-val {
  font-size: 14px;
  color: var(--light-text);
  text-align: right;
}

.spec-price-val {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 16px;
}

.spec-earlybird {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

/* Reserve note — muted secondary line */
.reserve-note {
  font-size: 13px !important;
  color: var(--warm-gray) !important;
  margin-top: -8px;
}

@media (max-width: 768px) {
  .origin-home { padding: 80px 24px; }
  .origin-pull { font-size: 20px; padding-left: 20px; }
  .spec-row { flex-direction: column; gap: 4px; }
  .spec-val { text-align: left; }
}

/* Vision 2-col when Brasil column removed */
.vision-columns-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .vision-columns-2 { grid-template-columns: 1fr; }
}

/* ===========================
   COLLECTION — stacked image pair
=========================== */
.collection-img-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}

.collection-img-top,
.collection-img-bottom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-img-top {
  object-position: center 30%;
}

.collection-img-bottom {
  object-position: center 20%;
}

.collection-img-stack:hover .collection-img-top,
.collection-img-stack:hover .collection-img-bottom {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .collection-img-stack {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    height: 300px;
  }
}

/* Vision 3-col */
.vision-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .vision-columns-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vision-columns-3 { grid-template-columns: 1fr; }
}

/* ===========================
   CONTACT MODAL
=========================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 5, 0.85);
  z-index: 200;
  backdrop-filter: blur(4px);
}
.modal-backdrop.visible { display: block; }

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 201;
  background: var(--dark-2);
  border: 1px solid rgba(201, 150, 58, 0.2);
  padding: 56px 48px;
  width: min(540px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.modal.visible {
  display: flex;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--light-text); }

.modal-title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.1;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 150, 58, 0.2);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--light-text);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color var(--transition);
}
.modal-form textarea::placeholder { color: var(--warm-gray); }
.modal-form textarea:focus { border-color: var(--gold); }

.modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 0;
}
.modal-success h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}
.modal-success p { color: var(--muted); font-size: 15px; }

/* ===========================
   HERO BRAND LINE
=========================== */
.hero-brand-line {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.9;
}

/* Collection origin + sensory lines */
.collection-origin {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 300;
}

.collection-sensory {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
}
