/* ═══════════════════════════════════════════════════════
   MANIPURAH — Basis stylesheet
   Quiet luxury · Editorial · Ivory & Old Gold
═══════════════════════════════════════════════════════ */

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

/* ─── VARIABELEN ────────────────────────────────────── */
:root {
  /* Kleuren */
  --ivory:    #F7F5F2;
  --ivory-d:  #EFECe7;
  --gold:     #C6A46A;
  --gold-l:   rgba(198,164,106,.15);
  --gold-ll:  rgba(198,164,106,.06);
  --black:    #0D0D0D;
  --grey:     #4E4944;
  --stone:    #C8C3BC;

  /* Typografie */
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;

  /* Ruimte */
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(.0,.0,.2,1);
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ivory);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAFIE ────────────────────────────────────── */

/* Display koppen — Canela-achtig via Cormorant */
.t-display {
  font-family: var(--serif);
  font-weight: 300;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.t-display-italic {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -.01em;
}

/* Quotes & emotionele accenten */
.t-quote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
}

/* Labels */
.t-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* Body */
.t-body {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey);
}

/* ─── GOUD ACCENTEN ─────────────────────────────────── */
.gold { color: var(--gold); }
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.gold-line-full {
  display: block;
  width: 100%;
  height: .5px;
  background: var(--gold);
  opacity: .2;
}

/* Goud kwaststreek — SVG achtergrond */
.gold-brush {
  position: relative;
}
.gold-brush::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 200'%3E%3Cpath d='M20 120 Q200 60 400 100 Q600 140 780 80' stroke='%23C6A46A' stroke-width='1.5' fill='none' opacity='.3' stroke-linecap='round'/%3E%3Cpath d='M40 140 Q220 90 420 118 Q620 146 760 100' stroke='%23C6A46A' stroke-width='.8' fill='none' opacity='.15' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

/* ─── NAVIGATIE ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(247,245,242,.96);
  backdrop-filter: blur(12px);
  border-bottom: .5px solid transparent;
  transition: border-color .4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: rgba(198,164,106,.2);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.nav-logo-merk {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: .06em;
  line-height: 1;
}

/* Midden nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--black);
  transition: color .2s;
  white-space: nowrap;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: .5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.actief { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  border: .5px solid rgba(198,164,106,.25);
  min-width: 200px;
  padding: 20px 0 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  transform: translateX(-50%) translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.06);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color .2s, padding-left .2s;
}
.nav-dropdown a:hover {
  color: var(--gold);
  padding-left: 32px;
}
.nav-dropdown a::after { display: none; }

/* CTA knop */
.nav-cta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ivory) !important;
  background: var(--black);
  padding: 11px 24px;
  transition: background .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--ivory) !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: .5px;
  background: var(--black);
  transition: transform .3s;
}

/* Mobiel overlay */
.mob {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 400;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.mob.open { opacity: 1; pointer-events: auto; }
.mob-close {
  position: absolute;
  top: 28px; right: 40px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--grey);
}
.mob-links { list-style: none; }
.mob-links li { border-bottom: .5px solid rgba(198,164,106,.2); }
.mob-links li a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  transition: color .2s;
}
.mob-links li a:hover { color: var(--gold); }
.mob-cta {
  margin-top: 36px;
  display: inline-block;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--ivory);
  padding: 14px 28px;
}

/* ─── GEDEELDE LAYOUT ───────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 52px; }
.s { padding: 120px 52px; }
.s-sm { padding: 80px 52px; }

/* Sectie label */
.s-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.s-label span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.s-label::before,
.s-label::after {
  content: "";
  height: .5px;
  background: var(--gold);
  opacity: .4;
  flex: 0 0 40px;
}
.s-label::after { flex: 1; max-width: 60px; }

/* Goud streep ornament */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.ornament-line { width: 40px; height: .5px; background: var(--gold); opacity: .5; }
.ornament-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .5; }

/* ─── KNOPPEN ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background .3s, color .3s, border-color .3s;
}
.btn-dark { background: var(--black); color: var(--ivory); }
.btn-dark:hover { background: var(--gold); }
.btn-outline {
  border: .5px solid var(--black);
  color: var(--black);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { border: .5px solid var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--ivory); }
.btn-arrow::after { content: "→"; font-style: normal; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: linear-gradient(175deg, #110F0C 0%, #0D0B08 100%);
  border-top: none;
  padding: 92px 52px 56px;
  position: relative;
  overflow: hidden;
}
/* Oud-goud penseelstreek */
.footer::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 500' preserveAspectRatio='none'%3E%3Cpath d='M-100 300 C100 220 350 200 600 250 C850 295 1100 260 1300 200' stroke='%23C6A46A' stroke-width='220' fill='none' opacity='.04' stroke-linecap='round'/%3E%3Cpath d='M-100 295 C120 215 365 195 615 248 C870 295 1110 255 1310 195' stroke='%23C6A46A' stroke-width='55' fill='none' opacity='.1' stroke-linecap='round'/%3E%3Cpath d='M-100 310 C150 230 400 210 640 256 C880 300 1130 264 1320 207' stroke='%23B8943A' stroke-width='28' fill='none' opacity='.08' stroke-linecap='round'/%3E%3Cpath d='M-50 292 C130 212 380 190 625 244 C875 292 1115 252 1310 192' stroke='%23D4A850' stroke-width='6' fill='none' opacity='.32' stroke-linecap='round'/%3E%3Cpath d='M200 285 C420 202 680 238 920 268 C1100 290 1220 256 1350 212' stroke='%23E8C878' stroke-width='2' fill='none' opacity='.18' stroke-linecap='round'/%3E%3Cpath d='M0 372 C300 324 600 347 900 362 C1100 370 1300 343 1400 314' stroke='%23C6A46A' stroke-width='1.5' fill='none' opacity='.13' stroke-linecap='round'/%3E%3Cpath d='M-100 226 C200 163 500 177 750 207 C1000 235 1200 192 1400 157' stroke='%23A07840' stroke-width='1' fill='none' opacity='.14' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 110% 110%;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
/* Goud gloed bovenkant */
.footer::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(198,164,106,.4) 20%, rgba(212,168,80,.9) 50%, rgba(198,164,106,.4) 80%, transparent 100%);
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.footer-logo-merk {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #F7F5F2;
}
.footer-logo-sub {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-bio {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(247,245,242,.42);
  max-width: 260px;
}
.footer-col-titel {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col-links a {
  font-size: 13px;
  color: rgba(247,245,242,.65);
  transition: color .2s;
}
.footer-col-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: .5px solid rgba(198,164,106,.12);
  font-size: 11px;
  color: rgba(247,245,242,.45);
  position: relative;
  z-index: 1;
}

/* ─── ANIMATIES ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes drawLine {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}
.anim-up { animation: fadeUp .9s var(--ease) both; }
.anim-up-1 { animation: fadeUp .9s var(--ease) .1s both; }
.anim-up-2 { animation: fadeUp .9s var(--ease) .2s both; }
.anim-up-3 { animation: fadeUp .9s var(--ease) .35s both; }
.anim-up-4 { animation: fadeUp .9s var(--ease) .5s both; }

/* ─── MOBIEL ────────────────────────────────────────── */
@media (max-width: 768px) {
  body { font-size: 15px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .s { padding: 72px 20px; }
  .s-sm { padding: 52px 20px; }
  /* Grotere minimale heading-groottes */
  h1, .hero-h1 { font-size: clamp(40px, 11vw, 72px) !important; }
  h2 { font-size: clamp(28px, 7vw, 52px) !important; }
  /* Footer op mobiel */
  .footer { padding: 64px 20px 44px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-bottom: 48px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
