@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

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

:root {
  --bg: #f5f0e8;
  --bg2: #ede8df;
  --bg3: #e4ddd2;
  --gold: #8a6a3a;
  --gold-light: #6a4e28;
  --gold-dim: #b89a6e;
  --text: #1e1810;
  --text-muted: #6a5e50;
  --text-dim: #a09080;
  --border: rgba(138,106,58,0.2);
  --border-subtle: rgba(138,106,58,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px;
  background: rgba(245,240,232,0.97);
  border-bottom: 0.5px solid transparent;
  transition: padding 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
nav.scrolled {
  padding: 18px 48px;
  background: rgba(245,240,232,0.98);
  border-bottom-color: var(--border);
}
.nav-logo {
  text-decoration: none;
  display: flex; flex-direction: column; align-items: flex-start; line-height: 1;
}
.nav-logo .nl-piljar {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  letter-spacing: 4px; color: var(--text); text-transform: uppercase; line-height: 1;
}
.nav-logo .nl-rule { width: 100%; height: 0.5px; background: var(--gold); margin: 4px 0 3px; }
.nav-logo .nl-studio {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 5px; color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 0.5px solid var(--gold-dim); padding: 10px 22px; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 0.5px; background: var(--text-muted); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 160px 48px 80px;
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border-subtle);
}
.page-header .section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.page-header .section-label::before {
  content: ''; width: 24px; height: 0.5px; background: var(--gold);
}
.page-header h1 {
  font-family: var(--serif); font-size: clamp(42px, 5vw, 72px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; color: var(--text);
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }

/* ── SECTIONS ── */
section { padding: 100px 48px; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before { content: ''; width: 24px; height: 0.5px; background: var(--gold); }
.section-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 58px);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--gold-light); }

/* ── BUTTONS ── */
.btn-primary {
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--gold); color: var(--bg);
  padding: 14px 32px; text-decoration: none; font-weight: 400; transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); color: var(--bg); }
.btn-ghost {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: color 0.3s;
}
.btn-ghost::after { content: ''; width: 24px; height: 0.5px; background: currentColor; transition: width 0.3s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { width: 40px; }

/* ── MARQUEE ── */
.marquee-strip {
  border-top: 0.5px solid var(--border-subtle); border-bottom: 0.5px solid var(--border-subtle);
  padding: 14px 0; overflow: hidden; background: var(--bg2);
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-item {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); padding: 0 40px;
  display: flex; align-items: center; gap: 40px;
}
.marquee-item::after { content: '◆'; font-size: 6px; color: var(--gold-dim); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FOOTER ── */
footer { background: #1e1810; border-top: 0.5px solid rgba(138,106,58,0.2); padding: 56px 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { display: flex; margin-bottom: 20px; }
.footer-brand .nav-logo .nl-piljar { color: #f0ece4; }
.footer-brand .nav-logo .nl-rule { background: #c9a96e; }
.footer-brand .nav-logo .nl-studio { color: #c9a96e; }
.footer-brand p { font-size: 13px; color: #a09080; line-height: 2; max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #c9a96e; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul li a { font-size: 14px; color: #c8beb4; text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: #f0ece4; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 0.5px solid rgba(138,106,58,0.15); }
.footer-copy { font-size: 12px; color: #7a6e64; letter-spacing: 0.5px; }
.footer-social { display: flex; gap: 24px; }
.footer-social a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #7a6e64; text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: #c9a96e; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 24px; }
  .page-header { padding: 120px 24px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
