/* ─── DEMAND UNLOCKED — GLOBAL STYLES ─── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

:root {
  --brand-primary: #C8A96E;
  --brand-secondary: #E8D5A8;
  --brand-dark: #0A0A0A;
  --brand-surface: #111111;
  --brand-surface2: #141414;
  --brand-border: rgba(200,169,110,0.2);
  --brand-text: #F0EDE8;
  --brand-muted: #888;
  --font: 'Montserrat', sans-serif;
  --max-w: 1100px;
  --radius: 14px;
  --btn-gradient: linear-gradient(135deg, #C8A96E 0%, #A0813D 100%);
}

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

body {
  background: var(--brand-dark);
  color: var(--brand-text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: normal;
  overflow-wrap: break-word;
}

body::before {
  content: '';
  position: fixed;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-icon {
  width: 30px; height: 30px;
  background: var(--btn-gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  color: #999;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--brand-text); }

.nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--btn-gradient);
  color: #0A0A0A !important;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand-text);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 16px 38px;
  background: var(--btn-gradient);
  color: #0A0A0A;
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(200,169,110,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(200,169,110,0.35); }

.btn-ghost {
  display: inline-block;
  padding: 16px 38px;
  background: transparent;
  color: var(--brand-text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--brand-primary); background: rgba(200,169,110,0.07); }

/* ─── SECTION SHARED ─── */
section { position: relative; z-index: 1; }

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--brand-primary); }

.section-sub {
  color: #888;
  font-weight: 500;
  max-width: 540px;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 28px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-glow {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.09) 0%, transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black, transparent);
  pointer-events: none;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.08);
  border: 1px solid var(--brand-border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.page-hero h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.page-hero p {
  color: #999;
  font-size: 1rem;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── CHECK / X MARKS ─── */
.check {
  width: 20px; height: 20px;
  background: var(--btn-gradient);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  color: #0A0A0A;
  font-weight: 900;
  margin-top: 2px;
}

/* ─── FOOTER ─── */
footer {
  padding: 56px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #555;
  margin-top: 14px;
  line-height: 1.7;
  font-weight: 500;
  max-width: 260px;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.footer-logo-icon {
  width: 26px; height: 26px;
  background: var(--btn-gradient);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--brand-primary); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.78rem; color: #444; font-weight: 500; }
.footer-bottom a { color: var(--brand-primary); text-decoration: none; }

/* ─── FLOATING BUTTON (all pages) ─── */
.float-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  display: flex; align-items: center; gap: 10px;
  background: var(--btn-gradient); border: none; border-radius: 100px;
  padding: 14px 22px; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 32px rgba(200,169,110,0.35);
  font-family: var(--font); font-size: 0.88rem; font-weight: 800;
  color: #0A0A0A; transition: transform 0.2s, box-shadow 0.2s;
  animation: floatPop 0.5s 2s ease both; opacity: 0;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,169,110,0.45); color: #0A0A0A; }
.float-btn-icon { font-size: 1rem; }
@keyframes floatPop { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@media(max-width:520px){
  .float-btn { bottom: 14px; right: 14px; padding: 11px 16px; font-size: 0.78rem; }
  .float-btn-text { display: inline !important; }
  .float-btn-icon { font-size: 0.85rem; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE NAV ─── */
@media (max-width: 860px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 20px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: block; }
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 110px 20px 50px; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
}
