/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
  /* Surface stack — dark-first */
  --s-deep:   #010e10;
  --s-base:   #002127;
  --s-raised: #00303a;
  --s-high:   #004454;
  --s-border: rgba(255,255,255,0.07);
  --s-border-strong: rgba(255,255,255,0.13);

  /* Gold — the soul of the brand */
  --g-rich:   #a07840;   
  --g-warm:   #c9a96e;   
  --g-bright: #e2c48a;   
  --g-dim:    rgba(201,169,110,0.15);

  /* Text */
  --t-primary:   #f4f0ea;
  --t-secondary: rgba(244,240,234,0.55);
  --t-muted:     rgba(244,240,234,0.30);

  /* Fonts */
  --ff-display: 'Cormorant Garamond', serif;
  --ff-ui:      'Syne', sans-serif;
  --ff-body:    'DM Sans', sans-serif;

  /* Spacing */
  --gap: 1px;
}

/* ══════════════════════════════════════
   RESET & BASE SETUP
══════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--s-deep);
  color: var(--t-primary);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Logo Background Watermark */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url('../Media/Logo_negativ-01.webp');
  background-size: 2400px;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.wrap {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 100px 5%;
}

.section {
    padding: 100px 0;
}

.dark-band {
  background: var(--s-base);
  padding: 100px 0;
}

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
/* Big italic display headline */
h1, .hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--t-primary);
  margin-bottom: 24px;
}
.hero-headline em, h1 em {
  font-style: italic;
  color: var(--g-bright);
}

h2, .section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--t-primary);
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 em, .section-title em {
    font-style: italic;
    color: var(--g-bright);
}

.ui-heading {
  font-family: var(--ff-ui);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--t-primary);
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--ff-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--g-warm);
  display: block;
  margin-bottom: 16px;
}

.sub-headline {
  font-family: var(--ff-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: var(--t-secondary);
  line-height: 1.85;
  max-width: 720px;
  margin-bottom: 32px;
}

p {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--t-secondary);
}

/* ══════════════════════════════════════
   GLASSMORPHISM & COMPONENTS
══════════════════════════════════════ */
.glass-panel {
    background: rgba(0, 33, 39, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--s-border);
    border-radius: 12px;
    padding: 40px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.glass-panel:hover {
    background: rgba(0, 48, 58, 0.5);
    transform: translateY(-5px);
}

/* Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(1, 14, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--s-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 5%;
    max-width: 1380px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

.site-header.scrolled .nav-container {
    padding: 16px 5%;
}

.nav-brand a {
    font-family: var(--ff-ui);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--t-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-family: var(--ff-body);
    font-size: 14px;
    letter-spacing: .06em;
    color: var(--t-secondary);
    text-decoration: none;
    transition: color .2s;
    font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { 
    color: var(--t-primary);
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.nav-dropdown-toggle {
    font-family: var(--ff-body);
    font-size: 14px;
    letter-spacing: .06em;
    color: var(--t-secondary);
    cursor: pointer;
    transition: color .2s;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active {
    color: var(--t-primary);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) !important;
    min-width: 220px;
    background: rgba(1, 14, 16, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--s-border);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
}

.nav-dropdown-content a {
    padding: 10px 24px;
    display: block;
    color: var(--t-secondary);
    white-space: nowrap;
}

.nav-dropdown-content a:hover, .nav-dropdown-content a.active {
    color: var(--g-warm);
    background: rgba(255,255,255,0.02);
}

/* Burger Menu */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--t-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--g-rich);
  color: var(--t-primary);
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}
.btn-gold:hover::before {
    left: 150%;
}
.btn-gold:hover { 
    background: var(--g-warm); 
    color: var(--s-deep);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--g-warm);
  font-family: var(--ff-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 15px 35px;
  border: 1px solid rgba(160,120,64,.35);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
}
.btn-ghost:hover { 
    background: rgba(201,169,110,.1); 
    border-color: var(--g-warm);
}

.btn-row { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
    align-items: center;
    margin-top: 32px;
}

/* ══════════════════════════════════════
   HERO SECTIONS
══════════════════════════════════════ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset for fixed header */
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--g-warm) 40%, var(--g-bright) 60%, transparent 100%);
    opacity: .3;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80vw; height: 80vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    z-index: 1;
}

/* ══════════════════════════════════════
   GRID & LISTS
══════════════════════════════════════ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ul-check {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}
.ul-check li {
    font-size: 16px;
    color: var(--t-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.ul-check li::before {
    content: '✓';
    color: var(--g-warm);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.4;
}

.ul-check strong {
    color: var(--g-bright);
    font-weight: 500;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
    background: var(--s-base);
    border-top: 1px solid var(--s-border);
    padding: 80px 0 40px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--ff-ui);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: .18em;
    color: var(--t-primary);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 24px;
}

.footer-desc {
    color: var(--t-secondary);
    font-size: 14px;
}

.footer-heading {
    font-family: var(--ff-ui);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--t-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-contact-item {
    color: var(--t-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--g-warm);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--s-border);
    color: var(--t-muted);
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--t-muted);
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: var(--g-warm);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ══════════════════════════════════════
   RESPONSIVE DESIGN
══════════════════════════════════════ */
@media (max-width: 992px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(1, 14, 16, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a, .nav-dropdown-toggle {
        font-size: 24px;
    }
    
    .nav-dropdown {
        flex-direction: column;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(0deg);
    }
    
    .dropdown-arrow {
        display: none;
    }

    .nav-dropdown-content {
        position: static;
        transform: none !important;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 24px;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .nav-dropdown-content a {
        font-size: 18px;
        color: var(--t-muted);
    }
    
    .nav-dropdown-content a:hover, .nav-dropdown-content a.active {
        background: transparent;
    }
    
    .burger-menu {
        display: flex;
        z-index: 1001;
    }
    
    .burger-menu.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.open span:nth-child(2) { opacity: 0; }
    .burger-menu.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .btn-row { flex-direction: column; width: 100%; }
    .btn-row .btn-gold, .btn-row .btn-ghost { width: 100%; text-align: center; }
    
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    
    .hero-badge {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 40px;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .hero-badge img {
        width: 180px !important;
    }
}
