/* ─────────────────────────────────────────
   NELOXE DIGITAL — Gold & Light Theme
   ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:wght@300;400&display=swap');

:root {
  /* Backgrounds */
  --bg:          #f0ede8;        /* warm light gray — not pure white */
  --bg-alt:      #1c1814;        /* deep dark sections */
  --bg-dark:     #141210;        /* darkest — footer, hero accents */
  --bg-card:     #f7f4ef;        /* slightly lighter than bg */
  --bg-rose:     #fdf4f0;        /* rose gold tint section */
  --bg-mid:      #2a2420;        /* mid dark for cards on dark sections */

  /* Gold palette */
  --gold:        #c9973a;        /* primary gold */
  --gold-light:  #e8b96a;        /* lighter, hover */
  --gold-pale:   #f0ddb0;        /* pale gold — backgrounds */
  --rose:        #d4967a;        /* rose gold accent */
  --rose-pale:   #f7e8e0;        /* rose tint */

  /* Text */
  --text:        #1c1814;        /* near-black warm */
  --text-mid:    #4a4038;        /* mid charcoal */
  --text-muted:  #8a7d70;        /* warm gray */
  --text-light:  #b8ac9f;        /* light warm gray */

  /* Borders */
  --border:      #ddd6cc;
  --border-gold: rgba(201,151,58,.25);
  --border-dark: rgba(201,151,58,.15);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(28,24,20,.06);
  --shadow-md:   0 8px 32px rgba(28,24,20,.1);
  --shadow-lg:   0 20px 60px rgba(28,24,20,.12);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cormorant Garamond', Georgia, serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; font-style: normal; }
h1 { font-size: clamp(40px, 6vw, 78px); }
h2 { font-size: clamp(30px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
p { color: var(--text-mid); font-size: 16px; line-height: 1.8; }
em { font-style: normal; color: var(--gold); font-weight: 700; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  transition: all .25s;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(201,151,58,.3);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,151,58,.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
}
.btn-dark:hover {
  background: #2a2218;
  transform: translateY(-2px);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(20,18,16,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,151,58,.15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nlogo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nlogo-text { display: flex; flex-direction: column; line-height: 1; }
.nlogo-text .n1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  letter-spacing: 3px;
}
.nlogo-text .n2 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nlinks a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
  transition: color .2s;
  position: relative;
}
.nlinks a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nlinks a:hover { color: var(--gold); }
.nlinks a:hover::after { transform: scaleX(1); }
.nlinks a.active { color: var(--gold); }

.ncta {
  background: var(--gold);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: all .25s !important;
  box-shadow: 0 3px 12px rgba(201,151,58,.25);
}
.ncta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,151,58,.35) !important;
}
.ncta::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #2a2420;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #e8ddd0;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-cta {
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--gold);
  color: #fff;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: .5px;
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  line-height: 1;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 60px 100px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(201,151,58,.1);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,58,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { max-width: 700px; position: relative; }
.page-hero h1 { margin-bottom: 20px; color: #fff; }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.55);
  max-width: 560px;
  line-height: 1.8;
}

/* ── PILL LABEL ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,58,.12);
  border: 1px solid rgba(201,151,58,.3);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pill::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
}

/* ── SECTIONS ── */
section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
section.full { max-width: 100%; padding: 100px 0; }
section.alt {
  max-width: 100%;
  background: var(--bg-alt);
  padding: 100px 60px;
}
section.alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
section.alt p { color: rgba(255,255,255,.6); }
section.alt h2, section.alt h3 { color: #fff; }
section.alt .slabel { color: var(--gold-light); }
section.alt .slabel::before { background: var(--gold-light); }
section.alt .ssub { color: rgba(255,255,255,.55); }
section.rose {
  max-width: 100%;
  background: var(--bg-rose);
  padding: 100px 60px;
}
section.rose > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
section.dark {
  max-width: 100%;
  background: var(--bg-dark);
  padding: 100px 60px;
}
section.dark > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

/* ── SECTION LABELS ── */
.slabel {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slabel::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.stitle { margin-bottom: 16px; }
.ssub { color: var(--text-mid); font-size: 17px; max-width: 560px; line-height: 1.8; margin-bottom: 52px; }

/* ── DIVIDER ── */
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  margin: 20px 0 32px;
  border-radius: 2px;
}

/* ── CARDS ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.card h3 { color: var(--text); }
.card p { color: var(--text-mid); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--text);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── FOOTER ── */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.7);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 60px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo .n1 { color: #fff; font-size: 17px; }
.footer-logo .n2 { color: var(--gold); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-top: 14px;
  max-width: 220px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.fcopy { font-size: 12px; color: rgba(255,255,255,.3); }
.fcopy span { color: var(--gold); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 28px; }
  .nlinks { display: none; }
  .hamburger { display: flex; }
  section, section.alt, section.rose, section.dark { padding: 72px 28px; }
  .page-hero { padding: 130px 28px 72px; }
  .footer-inner { flex-direction: column; padding: 48px 28px 32px; gap: 36px; }
  .footer-bottom { padding: 16px 28px; flex-direction: column; text-align: center; gap: 8px; }
}
@media (max-width: 600px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  section { padding: 56px 20px; }
  .page-hero { padding: 110px 20px 56px; }
}
