/* ─── SHARED STYLES — Quadros Holdings ──────────────────────────── */

:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2040;
  --navy-light: #162B52;
  --gold:       #B8975A;
  --gold-light: #D4AF73;
  --gold-pale:  #F0E4C8;
  --white:      #FAFAF8;
  --off-white:  #F4F1EB;
  --grey-light: #E8E4DC;
  --grey-mid:   #9A9488;
  --grey-dark:  #3D3A34;
  --text:       #1A1814;
  --text-soft:  #4A4740;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --max-w: 1280px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section { padding: 100px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--off  { background: var(--off-white); }

.eyebrow { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.rule { display: block; width: 48px; height: 1px; background: var(--gold); margin-bottom: 28px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
p { font-family: var(--font-body); font-size: 0.88rem; line-height: 1.85; color: var(--text-soft); }
.section--dark p { color: rgba(255,255,255,0.72); }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 16px 36px; border: 1px solid currentColor; transition: var(--transition); cursor: pointer; text-decoration: none; }
.btn--gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,151,90,0.3); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.nav.scrolled { background: rgba(10, 22, 40, 0.97); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(184,151,90,0.2); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 24px 48px; max-width: var(--max-w); margin: 0 auto; }
.nav__logo { display: flex; flex-direction: column; gap: 2px; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--white); letter-spacing: 0.04em; line-height: 1; }
.nav__logo-tag { font-family: var(--font-body); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: var(--transition); position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 11px 26px; background: var(--gold); color: var(--navy); border: none; cursor: pointer; transition: var(--transition); }
.nav__cta:hover { background: var(--gold-light); }

/* FOOTER */
.footer { background: #060E1C; border-top: 1px solid rgba(184,151,90,0.15); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__legal { font-size: 0.68rem; color: rgba(255,255,255,0.3); }
.footer__legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__legal-links a { font-size: 0.68rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__legal-links a:hover { color: var(--gold); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) { .container { padding: 0 32px; } .nav__inner { padding: 20px 32px; } }
@media (max-width: 768px) { .nav__links { display: none; } .container { padding: 0 20px; } }
