/* ================================================================
   AURECO — Shared Stylesheet
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:opsz,wght@9..40,200;9..40,300;9..40,400;9..40,500&family=DM+Mono:wght@300;400&display=swap');

:root {
  --black:    #080808;
  --onyx:     #111111;
  --charcoal: #1c1c1c;
  --ash:      #2a2a2a;
  --smoke:    #444444;
  --muted:    #888888;
  --silver:   #aaaaaa;
  --bone:     #e8e2d5;
  --white:    #fafaf9;
  --gold:     #b89a5e;
  --gold-lt:  #d4b87a;
  --nav-h:    64px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { background: var(--black); color: var(--bone); font-family: 'DM Sans', sans-serif; font-weight: 300; overflow-x: hidden; cursor: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; }

/* CURSOR */
#cursor { position: fixed; width: 8px; height: 8px; border-radius: 50%; background: var(--bone); pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: difference; }
#cursor-ring { position: fixed; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(232,226,213,0.4); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s; }
#cursor-ring.expanded { width: 64px; height: 64px; border-color: rgba(184,154,94,0.6); }

/* PROGRESS */
#progress-bar { position: fixed; top: 0; left: 0; height: 1px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); z-index: 9000; transition: width .1s linear; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000; padding: 0 clamp(24px,4vw,64px); display: flex; align-items: center; justify-content: space-between; background: rgba(8,8,8,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 28px; width: auto; filter: invert(1); }
.nav-links { display: flex; align-items: center; gap: clamp(20px,3vw,40px); list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--silver); position: relative; transition: color .3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease-out); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-bag { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--silver); background: none; border: 1px solid rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 2px; transition: all .3s; }
.nav-bag:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* PAGE WRAPPER */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* SECTION */
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 clamp(24px,5vw,80px); }
.section-label { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.section-label-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: .1em; }
.section-label-line { flex: 1; max-width: 40px; height: 1px; background: var(--ash); }
.section-label-text { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--smoke); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--white); color: var(--black); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; padding: 16px 32px; border: none; position: relative; overflow: hidden; transition: color .4s; cursor: none; }
.btn-primary::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-101%); transition: transform .5s var(--ease-out); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--ash); color: var(--silver); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; padding: 14px 28px; transition: border-color .3s, color .3s; cursor: none; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--silver); display: inline-flex; align-items: center; gap: 8px; transition: color .3s; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost .arrow { width: 24px; height: 1px; background: currentColor; position: relative; transition: width .3s var(--ease-out); }
.btn-ghost:hover .arrow { width: 40px; }
.btn-ghost .arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* FOOTER */
footer { padding: 60px 0 32px; background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-name img { height: 32px; filter: invert(1); opacity: .85; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; line-height: 1.9; color: var(--smoke); max-width: 280px; }
.footer-col-title { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 13px; color: var(--smoke); transition: color .3s; }
.footer-links a:hover { color: var(--bone); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-legal { font-size: 11px; color: var(--ash); }
.footer-legal a { color: var(--smoke); margin-left: 16px; transition: color .3s; }
.footer-legal a:hover { color: var(--bone); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--smoke); transition: color .3s; }
.footer-social a:hover { color: var(--bone); }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
