/* ================================================
   CUPRÉ — Dark Site Styles
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Inter:wght@200;300;400&display=swap');

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: #1A0E08;
  color: #FBF5EE;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* image-slot fill */
image-slot { display: block; }
image-slot img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── NAV ────────────────────────────── */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; justify-content: center;
  padding: 18px 24px;
  pointer-events: none;
}
.nav-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 9px 9px 22px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 9999px;
  pointer-events: all;
  transition: background 0.4s ease, border-color 0.4s ease;
  max-width: 960px; width: 100%;
}
.nav-pill.scrolled {
  background: rgba(20,10,4,0.94);
  border-color: rgba(196,122,58,0.2);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: 1.25rem; color: #FBF5EE; letter-spacing: 0.02em;
  white-space: nowrap; cursor: pointer; flex-shrink: 0;
  background: none; border: none; padding: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo .dot { color: #C47A3A; }
.nav-links {
  display: flex; align-items: center; gap: 20px; flex: 1;
  justify-content: center; list-style: none;
}
.nav-links button {
  font-family: 'Inter', sans-serif; font-size: 0.67rem; font-weight: 300;
  letter-spacing: 0.12em; color: rgba(251,245,238,0.55);
  background: transparent; border: none; cursor: pointer;
  padding: 4px 0; transition: color 0.2s ease; white-space: nowrap;
}
.nav-links button:hover, .nav-links button.active { color: #FBF5EE; }
.nav-cta {
  font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.1em; color: #FBF5EE; background: #C47A3A;
  border: none; border-radius: 9999px; padding: 9px 20px;
  cursor: pointer; transition: background 0.25s ease; white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: #B5682A; }
.nav-hamburger {
  display: none; background: transparent; border: none; cursor: pointer;
  color: #FBF5EE; padding: 6px; flex-shrink: 0; margin-left: auto;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(13,7,5,0.98); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-nav-btn {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.4rem;
  font-weight: 300; color: #FBF5EE; background: transparent; border: none;
  cursor: pointer; transition: color 0.2s ease;
}
.mobile-menu-nav-btn:hover { color: #C47A3A; }
.mobile-menu-close {
  position: absolute; top: 28px; right: 28px;
  background: transparent; border: none; color: rgba(251,245,238,0.4);
  cursor: pointer; font-size: 2rem; line-height: 1;
}

/* ── BUTTONS ────────────────────────── */
.btn-copper {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: #C47A3A; color: #FBF5EE;
  border: none; border-radius: 9999px;
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 300;
  letter-spacing: 0.12em; cursor: pointer; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-copper:hover { background: #B5682A; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(196,122,58,0.32); }

.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(12px);
  color: #FBF5EE; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 9999px;
  font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 300;
  letter-spacing: 0.12em; cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-glass:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO VIDEO ZOOM ────────────────── */
@keyframes heroZoom {
  from { transform: scale(1.08) translateZ(0); }
  to   { transform: scale(1.0)  translateZ(0); }
}

/* ── ANIMATIONS ─────────────────────── */
.word-anim {
  display: inline-block; opacity: 0;
  filter: blur(12px); transform: translateY(30px);
  animation: wordIn 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes wordIn {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── SECTIONS ───────────────────────── */
.sec { padding: 96px 48px; }
.sec-dark { background: #0D0705; }
.sec-black { background: #000000; }
.sec-obs { background: #1A0E08; }
.container { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.38em; text-transform: uppercase; color: #C47A3A; margin-bottom: 14px;
}
.eyebrow-amber { color: #E8A84C; }
.sec-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; color: #FBF5EE; margin-bottom: 22px;
}
.sec-body {
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 300;
  color: rgba(251,245,238,0.55); line-height: 1.75;
}

/* ── GLASS STAT CARD ────────────────── */
.stat-card {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 1rem; padding: 20px 24px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 2.4rem; font-weight: 300; color: #E8A84C; line-height: 1; margin-bottom: 5px;
}
.stat-lbl {
  font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 300;
  color: rgba(251,245,238,0.42); letter-spacing: 0.06em; line-height: 1.4;
}

/* ── HERO ───────────────────────────── */
.hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 300;
  letter-spacing: 0.38em; text-transform: uppercase; color: #E8A84C; margin-bottom: 22px;
}
.hero-hl {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem); line-height: 1.0; color: #FBF5EE; margin-bottom: 26px;
}
.hero-sub {
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 400px; margin-bottom: 40px;
}
.keyword-strip {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: 0.82rem; color: rgba(251,245,238,0.28); letter-spacing: 0.28em;
}
.copper-link {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 300;
  color: #C47A3A; letter-spacing: 0.1em; cursor: pointer;
  background: none; border: none; padding: 0; transition: color 0.2s ease;
}
.copper-link:hover { color: #E8A84C; }
.cu-deco {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  color: rgba(196,122,58,0.11); line-height: 1; user-select: none; pointer-events: none;
}

/* ── PRODUCT CARDS (dark) ───────────── */
.prod-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(196,122,58,0.14);
  border-radius: 1rem; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer;
}
.prod-card:hover { background: rgba(196,122,58,0.05); border-color: rgba(196,122,58,0.45); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(196,122,58,0.12); }
.prod-img { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; background: linear-gradient(160deg, #2A1408 0%, #1A0E08 60%, #3D1F0D 100%); }
.prod-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── TESTIMONIALS ───────────────────── */
.testi-card {
  background: rgba(255,255,255,0.03); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 1.25rem; padding: 32px;
}
.testi-stars { color: #E8A84C; font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.08rem; font-weight: 300; color: rgba(251,245,238,0.88);
  line-height: 1.55; margin-bottom: 22px;
}
.testi-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,122,58,0.35) 0%, rgba(26,14,8,0.8) 100%);
  border: 1px solid rgba(196,122,58,0.28);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.9rem; color: #E8A84C;
}

/* ── BLOG CARDS ─────────────────────── */
.blog-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 1rem; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer;
}
.blog-card:hover { border-color: rgba(255,255,255,0.13); }
.blog-card:hover .blog-title { color: #E8A84C; }
.blog-img { width: 100%; aspect-ratio: 16/9; background: linear-gradient(160deg, #2A1408 0%, #1A0E08 60%); display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 22px 24px; }
.blog-cat {
  display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase; color: #C47A3A;
  border: 1px solid rgba(196,122,58,0.35); border-radius: 9999px; padding: 3px 10px; margin-bottom: 11px;
}
.blog-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.08rem; font-weight: 300; color: #FBF5EE;
  line-height: 1.35; margin-bottom: 9px; transition: color 0.2s ease;
}
.blog-excerpt {
  font-family: 'Inter', sans-serif; font-size: 0.77rem; font-weight: 300;
  color: rgba(251,245,238,0.45); line-height: 1.65; margin-bottom: 14px;
}
.blog-readmore { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 300; color: transparent; letter-spacing: 0.1em; transition: color 0.2s ease; }
.blog-card:hover .blog-readmore { color: #C47A3A; }

/* ── ACCORDION ──────────────────────── */
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.acc-trigger {
  width: 100%; background: transparent; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; color: #FBF5EE;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 300;
  text-align: left; gap: 16px; transition: color 0.2s ease;
}
.acc-trigger:hover { color: #E8A84C; }
.acc-icon {
  width: 22px; height: 22px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all 0.3s ease; color: rgba(251,245,238,0.4); font-size: 1rem; line-height: 1;
}
.acc-trigger:hover .acc-icon { border-color: #C47A3A; color: #C47A3A; }
.acc-body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease; padding-bottom: 0;
}
.acc-body.open { max-height: 400px; opacity: 1; padding-bottom: 20px; }
.acc-body p {
  font-family: 'Inter', sans-serif; font-size: 0.84rem; font-weight: 300;
  color: rgba(251,245,238,0.52); line-height: 1.75;
}

/* ── NEWSLETTER ─────────────────────── */
.newsletter-wrap { background: #0D0705; padding: 80px 48px; text-align: center; }
.newsletter-hl {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem); color: #FBF5EE; margin-bottom: 30px;
}
.newsletter-form { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px; padding: 13px 20px; color: #FBF5EE;
  font-family: 'Inter', sans-serif; font-size: 0.84rem; font-weight: 300; outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-input::placeholder { color: rgba(156,139,122,0.55); }
.newsletter-input:focus { border-color: rgba(196,122,58,0.5); }
.newsletter-note { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 300; color: rgba(251,245,238,0.28); letter-spacing: 0.08em; margin-top: 14px; }

/* ── DARK FORM FIELDS ───────────────── */
.dark-field {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 14px 18px; color: #FBF5EE;
  font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 300;
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; width: 100%;
}
.dark-field::placeholder { color: rgba(156,139,122,0.55); }
.dark-field:focus { border-color: rgba(196,122,58,0.6); box-shadow: 0 0 0 3px rgba(196,122,58,0.1); }
select.dark-field option { background: #1A0E08; color: #FBF5EE; }

/* ── TIMELINE ───────────────────────── */
.timeline { position: relative; padding-left: 56px; }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 24px; bottom: 24px;
  width: 1px; background: linear-gradient(to bottom, #C47A3A 0%, rgba(196,122,58,0.08) 100%);
}
.tl-step { position: relative; padding: 26px 0; }
.tl-dot {
  position: absolute; left: -47px; top: 30px;
  width: 32px; height: 32px; border-radius: 50%; background: #1A0E08;
  border: 1px solid rgba(196,122,58,0.6); display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.05em; color: #C47A3A;
}
.tl-title {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; font-weight: 300; color: #FBF5EE; margin-bottom: 5px;
}
.tl-body { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 300; color: rgba(251,245,238,0.5); line-height: 1.65; }

/* ── VALOR CARDS ────────────────────── */
.valor-card {
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem; padding: 32px 28px; transition: all 0.3s ease;
}
.valor-card:hover { border-color: rgba(196,122,58,0.28); background: rgba(196,122,58,0.04); }
.valor-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.2rem; font-weight: 300; color: rgba(196,122,58,0.22); line-height: 1; margin-bottom: 10px; }
.valor-name { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; font-weight: 300; color: #FBF5EE; margin-bottom: 8px; }
.valor-body { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 300; color: rgba(251,245,238,0.42); line-height: 1.65; }

/* ── BENEFITS LIST ──────────────────── */
.benefits li {
  display: flex; align-items: flex-start; gap: 10px; list-style: none;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 300;
  color: rgba(251,245,238,0.68); line-height: 1.55; margin-bottom: 10px;
}
.benefits li::before { content: '·'; color: #C47A3A; font-size: 1.25rem; line-height: 1.05; flex-shrink: 0; }

/* ── FOOTER ─────────────────────────── */
.site-footer { background: #080403; padding: 80px 48px 32px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(232,168,76,0.1); margin-bottom: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: 2.2rem; color: #FBF5EE; display: block; margin-bottom: 14px;
  background: none; border: none; cursor: pointer; padding: 0; text-align: left; line-height: 1;
}
.footer-logo .dot { color: #C47A3A; }
.footer-tagline { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 300; color: rgba(255,255,255,0.28); line-height: 1.65; max-width: 220px; }
.footer-made { font-family: 'Inter', sans-serif; font-size: 0.6rem; font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(196,122,58,0.45); margin-top: 10px; }
.footer-col-h { font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: #E8A84C; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col button {
  color: rgba(255,255,255,0.26); text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 300;
  transition: color 0.2s ease; background: none; border: none; cursor: pointer; padding: 0; text-align: left;
}
.footer-col a:hover, .footer-col button:hover { color: rgba(255,255,255,0.62); }
.footer-btm {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: 'Inter', sans-serif; font-size: 0.63rem; font-weight: 300;
  color: rgba(255,255,255,0.18); letter-spacing: 0.06em;
}
.footer-btm a { color: rgba(255,255,255,0.18); text-decoration: none; transition: color 0.2s; }
.footer-btm a:hover { color: rgba(255,255,255,0.45); }

/* ── CONTACT INFO ───────────────────── */
.contact-item { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.contact-lbl { font-family: 'Inter', sans-serif; font-size: 0.58rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(196,122,58,0.65); margin-bottom: 4px; }
.contact-val { font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 300; color: rgba(251,245,238,0.65); }

/* ── IMAGE SLOT PLACEHOLDER STYLE ──── */
.img-slot-wrapper { position: relative; overflow: hidden; }
.img-slot-wrapper image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .sec { padding: 64px 24px; }
  .site-footer { padding: 64px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-wrap { padding: 64px 24px; }
  .container { padding: 0 !important; }
}
