/* ═══════════════════════════════════════
   ALEXANDER MARTINI — SHARED STYLES
   alexandermartini.de
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Chakra+Petch:wght@300;400;500;600&display=swap');

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

:root {
  --bg:      #f8f6f2;
  --white:   #ffffff;
  --paper:   #faf9f6;
  --dark:    #111009;
  --dark2:   #1c1a16;
  --text:    #181510;
  --muted:   #6b6458;
  --muted2:  #a09890;
  --accent:  #c9a84c;
  --accent2: #e8c547;
  --border:  #e2ddd6;
  --border2: #ccc6bc;
  --r: 0px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Chakra Petch', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 52px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s;
}
.nav.scrolled {
  background: rgba(248,246,242,.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 52px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300; letter-spacing: 5px;
  text-transform: uppercase; color: var(--dark); text-decoration: none;
  transition: color .2s;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); text-decoration: none;
  border: 1px solid var(--border2); padding: 9px 20px;
  transition: all .2s;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-mobile-btn {
  display: none; background: none; border: none;
  font-size: 20px; cursor: pointer; color: var(--dark);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--accent); color: #000;
  padding: 14px 34px; font-family: 'Chakra Petch', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; border: none; cursor: pointer;
  transition: all .22s;
}
.btn-gold:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--border2); color: var(--muted);
  padding: 14px 34px; font-family: 'Chakra Petch', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; background: none;
  transition: all .22s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-dark {
  display: inline-block;
  background: var(--dark); color: #fff;
  padding: 14px 34px; font-family: 'Chakra Petch', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 500; text-decoration: none; border: none; cursor: pointer;
  transition: all .22s;
}
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* ── SECTION HELPERS ── */
.section-label {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 58px); font-weight: 300; line-height: 1.05;
  color: var(--dark); margin-bottom: 52px;
}
.section-title em { font-style: italic; color: var(--accent); }

/* ── FOOTER ── */
.footer {
  background: var(--dark); padding: 70px 52px 40px;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 52px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; letter-spacing: 4px;
  color: #fff; margin-bottom: 12px;
}
.footer-tagline { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.8; max-width: 260px; }
.footer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-style: italic; color: var(--accent);
  margin-top: 20px; line-height: 1.6;
}
.footer-col h4 {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 12px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10px; color: rgba(255,255,255,.2); letter-spacing: 1px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,.2); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 120px 52px 80px; }
.legal-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px,5vw,64px); font-weight: 300; margin-bottom: 52px;
  color: var(--dark);
}
.legal-wrap h2 {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin: 40px 0 14px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.legal-wrap h2:first-of-type { border-top: none; padding-top: 0; }
.legal-wrap p, .legal-wrap li {
  font-size: 14px; color: var(--muted); line-height: 1.85; margin-bottom: 10px;
}
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap a { color: var(--accent); text-decoration: none; }
.legal-wrap strong { color: var(--text); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 10px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-btn { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .legal-wrap { padding: 100px 24px 60px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
