/* ── NORJANEN SAGA — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,200;1,300;1,400&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --bg:        #0E0D0B;
  --bg-2:      #131210;
  --bg-card:   #181714;
  --silver:    #C8C4BC;
  --silver-mid:#8A8680;
  --silver-dim:rgba(200,196,188,0.18);
  --silver-ghost:rgba(200,196,188,0.07);
  --parchment: #E8E2D4;
  --border:    rgba(200,196,188,0.1);
  --border-mid:rgba(200,196,188,0.18);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Syne', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--silver);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain */
body::after {
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9000;
}

/* ── NAV ── */
nav.saga-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 52px;
  transition: padding 0.3s, background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
nav.saga-nav.scrolled {
  padding: 15px 52px;
  background: rgba(14,13,11,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border);
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-mark svg { width: 28px; height: 28px; }
.nav-logo-text {
  display: flex; flex-direction: column; gap: 0;
  line-height: 1;
}
.nav-logo-top {
  font-family: var(--sans);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--parchment);
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--silver-mid);
}
.nav-links {
  display: flex; gap: 36px;
  align-items: center; list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--silver-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--parchment); }
.nav-links .nav-contact {
  border: 1px solid var(--border-mid);
  padding: 7px 18px;
  color: var(--silver) !important;
  transition: border-color 0.2s, color 0.2s !important;
}
.nav-links .nav-contact:hover {
  border-color: var(--silver);
  color: var(--parchment) !important;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: var(--silver-mid); transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-outline {
  color: var(--silver);
  border: 1px solid var(--border-mid);
  padding: 12px 28px;
  background: transparent;
}
.btn-outline:hover { border-color: var(--silver); color: var(--parchment); }
.btn-fill {
  color: var(--bg);
  background: var(--parchment);
  padding: 12px 28px;
}
.btn-fill:hover { background: var(--silver); }

/* ── SECTION UTILITIES ── */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--silver-mid);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--silver-mid); flex-shrink: 0;
}

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300; font-style: italic;
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: 18px;
}
h2.section-title em {
  font-style: normal;
  font-weight: 400;
}

.section-lead {
  font-family: var(--sans);
  font-size: 18px; font-weight: 400;
  color: var(--silver-mid); line-height: 1.85;
  max-width: 520px;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── FOOTER ── */
footer.saga-footer {
  border-top: 1px solid var(--border);
  padding: 36px 52px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.footer-brand-name {
  font-family: var(--sans);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--silver-dim);
}
.footer-links {
  display: flex; gap: 28px; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(200,196,188,0.22); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--silver-mid); }
.footer-copy {
  font-family: var(--sans);
  font-size: 13px; color: rgba(200,196,188,0.18);
  letter-spacing: 0.04em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav.saga-nav, nav.saga-nav.scrolled { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--bg);
    justify-content: center; align-items: center;
    gap: 36px; z-index: 999;
  }
  .nav-links.open a { font-size: 17px; }
  .nav-toggle { display: flex; }
  footer.saga-footer { padding: 28px 24px; flex-direction: column; text-align: center; }
}
