/* ═══════════════════════════════════════════
   LUX NORDICA — Shared Design System
   Sort / Hvid / Champagne-Guld
   ═══════════════════════════════════════════ */

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

:root {
    --bg: #FFFFFF; --bg-alt: #F7F7F7; --bg-deep: #0A0A0A;
    --text: #0A0A0A; --text-muted: #555555; --text-light: #999999;
    --gold: #C6A96C; --gold-light: #D4BF8A; --gold-hover: #B0944F;
    --border: #E5E5E5; --border-gold: rgba(198,169,108,0.25); --white: #FFFFFF;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --success: #2D8A4E; --error: #C53030;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: var(--sans); }
button { cursor: pointer; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ─── Typography ──────────────────────────── */
.eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--serif); font-size: clamp(26px,3vw,32px); font-weight: 300; }
.section-title em { font-style: italic; font-weight: 400; }
.page-title { font-family: var(--serif); font-size: clamp(34px,4vw,48px); font-weight: 300; line-height: 1.1; }
.page-title em { font-style: italic; font-weight: 400; }
.gold-line { width: 40px; height: 1px; background: var(--gold); }

/* ─── Buttons ─────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 40px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; border: none; transition: all 0.3s; }
.btn-gold { background: var(--gold); color: var(--white); } .btn-gold:hover { background: var(--gold-hover); }
.btn-black { background: var(--text); color: var(--white); } .btn-black:hover { background: #222; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); } .btn-outline:hover { border-color: var(--text); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); } .btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-full { width: 100%; }
.btn-sm { padding: 10px 24px; font-size: 11px; }
.link-arrow { font-size: 13px; color: var(--gold); letter-spacing: 0.04em; font-weight: 500; }

/* ─── Navigation ──────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 1px 0 var(--border); padding: 0 clamp(20px,4vw,60px); }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: var(--serif); font-size: 22px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; display: inline-flex; align-items: center; }
.nav-logo b { font-weight: 600; }
.nav-logo img { height: 50px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-lang { font-size: 12px; color: var(--text-light); }
.nav-cta { background: var(--text); color: var(--white); padding: 9px 24px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; transition: background 0.3s; border: none; }
.nav-cta:hover { background: #222; }
.nav-login { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--text); margin: 0 6px 0 2px; transition: color 0.2s; }
.nav-login:hover { color: var(--gold); }
.country-toggle { display: inline-flex; align-items: center; border: 1px solid var(--border); }
.country-toggle a { font-size: 11px; letter-spacing: 0.05em; font-weight: 500; color: var(--text-light); padding: 5px 9px; transition: all 0.2s; text-decoration: none; }
.country-toggle a:hover { color: var(--text); }
.country-toggle a.active { background: var(--text); color: var(--white); }
/* nav-menu er "usynlig" på desktop (display:contents) → logo | links | right beholder space-between */
.nav-menu { display: contents; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: none; border: 0; cursor: pointer; padding: 9px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Forms ───────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.form-input { width: 100%; padding: 13px 16px; border: 1px solid var(--border); font-size: 14px; background: var(--white); outline: none; transition: border-color 0.3s; }
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--text-light); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-hint { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.form-row { display: flex; gap: 16px; }
.form-row > * { flex: 1; }

/* ─── Cards ───────────────────────────────── */
.card { border: 1px solid var(--border); padding: 32px; transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

/* ─── Footer ──────────────────────────────── */
.footer-mini { background: var(--bg-deep); color: rgba(255,255,255,0.35); padding: 40px 0; text-align: center; font-size: 12px; margin-top: 80px; }
.footer-mini a { color: rgba(255,255,255,0.5); margin: 0 12px; transition: color 0.2s; }
.footer-mini a:hover { color: var(--gold-light); }

/* ─── Responsive ──────────────────────────── */
@media (max-width: 860px) {
    .nav-inner { position: relative; }
    .nav-toggle { display: flex; }
    /* Saml links + højre-gruppe i en dropdown-menu under baren */
    .nav-menu { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 10px 28px rgba(0,0,0,0.10); flex-direction: column; align-items: stretch; padding: 14px clamp(20px,4vw,60px) 24px; gap: 16px; z-index: 200; }
    .nav.nav-open .nav-menu { display: flex; }
    .nav-links { display: flex; flex-direction: column; gap: 0; }
    .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
    .nav-right { flex-direction: column; align-items: stretch; gap: 14px; }
    .nav-cta { text-align: center; padding: 13px; }
    .nav-login { margin: 0; padding: 4px 0; }
    .country-toggle { align-self: flex-start; }
    .form-row { flex-direction: column; }
}
