/* ═══════════════════════════════════════════════════════════════
   GULLVITI – Cinematisches Dark Theme
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --bg: #0a1218;
  --bg-card: #0f1a1f;
  --bg-secondary: #152025;
  --fg: #eef0eb;
  --fg-muted: #8a9ba5;
  --fg-muted-dim: #5a6b75;
  --primary: #2dd4bf;
  --primary-dark: #1aab99;
  --accent: #e8944a;
  --border: #1e3038;
  --border-dim: #162228;
  --input-bg: #152025;
  --ring: #2dd4bf;
  --radius: 0.5rem;
}

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  cursor: url('../assets/cursor.svg') 16 16, crosshair;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: url('../assets/cursor.svg') 16 16, crosshair;
}

button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
a[href],
select:not(:disabled),
input[type="submit"]:not(:disabled) {
  cursor: url('../assets/cursor-pointer.svg') 16 16, pointer;
}

a { color: inherit; text-decoration: none; }

/* ── Utility classes ── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.glow-teal {
  box-shadow: 0 0 40px rgba(45,212,191,0.2), 0 0 80px rgba(45,212,191,0.1);
}

/* ── Gate Page ── */
.gate-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gate-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  filter: blur(2px);
}

.gate-bg .base-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1a1f, #0d1f1f, #0f1a15);
}

/* Animated lens rings */
.lens-ring {
  position: absolute;
  border-radius: 50%;
}

.lens-ring-1 {
  top: -20vh; right: -15vw;
  width: 70vw; height: 70vw;
  opacity: 0.08;
  border: 2px solid rgba(45,212,191,0.5);
  box-shadow: inset 0 0 100px rgba(45,212,191,0.15), 0 0 150px rgba(45,212,191,0.08);
  animation: drift1 25s ease-in-out infinite;
}

.lens-ring-2 {
  bottom: -15vh; left: -10vw;
  width: 50vw; height: 50vw;
  opacity: 0.07;
  border: 1.5px solid rgba(232,148,74,0.5);
  box-shadow: inset 0 0 80px rgba(232,148,74,0.12), 0 0 120px rgba(232,148,74,0.06);
  animation: drift2 30s ease-in-out infinite;
}

.lens-ring-3 {
  top: 30%; left: -5vw;
  width: 25vw; height: 25vw;
  opacity: 0.06;
  border: 1px solid rgba(45,212,191,0.5);
  box-shadow: inset 0 0 50px rgba(45,212,191,0.1);
  animation: drift3 20s ease-in-out infinite;
}

.lens-ring-4 {
  top: 50%; right: -8vw;
  width: 35vw; height: 35vw;
  opacity: 0.04;
  border: 1px solid rgba(100,200,150,0.4);
  box-shadow: inset 0 0 60px rgba(100,200,150,0.06);
  animation: drift4 22s ease-in-out infinite;
}

/* Glows */
.glow-orb-teal {
  position: absolute;
  top: 10%; right: 20%;
  width: 35vw; height: 35vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,212,191,0.06) 0%, transparent 70%);
  animation: pulse1 12s ease-in-out infinite;
}

.glow-orb-orange {
  position: absolute;
  bottom: 15%; left: 10%;
  width: 30vw; height: 30vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,148,74,0.05) 0%, transparent 70%);
  animation: pulse2 15s ease-in-out infinite 3s;
}

/* Light beams */
.light-beam {
  position: absolute;
  top: 0;
  width: 1px;
  height: 140%;
  transform-origin: top center;
}

.light-beam-1 {
  left: 40%;
  opacity: 0.05;
  background: linear-gradient(to bottom, transparent, rgba(45,212,191,0.3) 40%, rgba(232,148,74,0.2) 60%, transparent);
  animation: beam1 30s ease-in-out infinite;
}

.light-beam-2 {
  right: 30%;
  opacity: 0.04;
  background: linear-gradient(to bottom, transparent, rgba(232,148,74,0.25) 30%, rgba(45,212,191,0.15) 70%, transparent);
  animation: beam2 25s ease-in-out infinite 5s;
}

/* Concentric circles */
.concentric {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(45,212,191,0.15);
}

.concentric-1 {
  width: 80vw; height: 80vw;
  opacity: 0.025;
  animation: rotate-cw 120s linear infinite;
}

.concentric-2 {
  width: 60vw; height: 60vw;
  opacity: 0.03;
  animation: rotate-ccw 90s linear infinite;
}

.concentric-3 {
  width: 40vw; height: 40vw;
  opacity: 0.035;
  border-color: rgba(45,200,170,0.15);
  animation: rotate-cw 70s linear infinite;
}

/* Animations */
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -25px) scale(1.05); }
  50% { transform: translate(-20px, 15px) scale(0.97); }
  75% { transform: translate(10px, -10px) scale(1.02); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-20px, 20px) scale(0.96); }
  50% { transform: translate(25px, -15px) scale(1.04); }
  75% { transform: translate(-10px, 10px) scale(0.99); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(15px, -10px); }
  66% { transform: translate(-10px, 20px); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-15px, 15px) scale(1.03); }
  50% { transform: translate(10px, -20px) scale(0.98); }
  75% { transform: translate(-5px, 5px) scale(1.01); }
}

@keyframes pulse1 {
  0%, 100% { opacity: 0.04; transform: scale(1); }
  50% { opacity: 0.08; transform: scale(1.1); }
}

@keyframes pulse2 {
  0%, 100% { opacity: 0.03; transform: scale(1); }
  50% { opacity: 0.07; transform: scale(1.08); }
}

@keyframes beam1 {
  0%, 100% { transform: rotate(15deg); }
  33% { transform: rotate(20deg); }
  66% { transform: rotate(12deg); }
}

@keyframes beam2 {
  0%, 100% { transform: rotate(-10deg); }
  33% { transform: rotate(-5deg); }
  66% { transform: rotate(-15deg); }
}

@keyframes rotate-cw { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes rotate-ccw { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(-360deg); } }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 0.8; }
}

/* ── Gate Content ── */
.gate-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.music-toggle {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 20;
  background: none;
  border: none;
  color: var(--fg-muted-dim);
  padding: 0.5rem;
  border-radius: 50%;
  transition: color 0.3s;
}

.music-toggle:hover { color: var(--fg-muted); }

.music-toggle svg { width: 16px; height: 16px; }

.gate-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.gate-form-wrapper {
  width: 100%;
  max-width: 28rem;
}

/* Logo */
.gate-logo {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.gate-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.gate-logo svg.eye-icon {
  width: 2rem; height: 2rem;
  color: var(--primary);
}

.gate-logo h1 {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--fg);
}

@media (min-width: 640px) {
  .gate-logo h1 { font-size: 1.875rem; }
}

.gate-divider {
  width: 6rem;
  margin: 0 auto;
}

/* Form */
.gate-form {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gate-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  height: 3rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: 0.15em;
  padding: 0 1rem;
  transition: border-color 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: var(--fg-muted-dim);
}

.form-input:focus {
  border-color: var(--primary);
}

.btn-primary {
  width: 100%;
  height: 3rem;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.3s;
}

.btn-primary:hover { background: var(--primary-dark); }
.btn-primary:disabled { opacity: 0.5; }

.btn-primary svg { width: 1rem; height: 1rem; }

/* Error message */
.error-msg {
  text-align: center;
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 0.5rem;
  display: none;
}

.error-msg.visible { display: block; }

/* Newsletter */
.gate-newsletter {
  margin-top: 4rem;
  text-align: center;
  animation: fadeIn 0.8s ease-out 0.5s both;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 20rem;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  height: 2.25rem;
  background: transparent;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.75rem;
  padding: 0 0.75rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-input::placeholder { color: var(--fg-muted-dim); }
.newsletter-input:focus { border-color: rgba(45,212,191,0.5); }

.newsletter-btn {
  width: 2.25rem;
  height: 2.25rem;
  background: none;
  border: none;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
  flex-shrink: 0;
}

.newsletter-btn:hover { color: var(--primary); }
.newsletter-btn svg { width: 14px; height: 14px; }

.newsletter-success {
  font-size: 0.75rem;
  color: rgba(45,212,191,0.8);
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* Gate Footer */
.gate-footer {
  padding: 1.5rem 1rem;
}

.gate-footer-inner {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gate-footer-copy {
  font-size: 10px;
  color: var(--fg-muted-dim);
  font-weight: 300;
  opacity: 0.6;
}

.gate-footer-links {
  display: flex;
  gap: 1rem;
}

.gate-footer-links a {
  font-size: 10px;
  color: var(--fg-muted-dim);
  font-weight: 300;
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.gate-footer-links a:hover {
  opacity: 1;
  color: var(--fg-muted);
}

/* ═══════════════════════════════════════════════════════════════
   MAIN SITE (after login)
   ═══════════════════════════════════════════════════════════════ */

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s;
}

.site-header.scrolled {
  background: rgba(10,18,24,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 640px) {
  .header-inner { height: 5rem; padding: 0 1.5rem; }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

.header-logo span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.header-nav a, .header-actions button.nav-link {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
  background: none;
  border: none;
  font-family: inherit;
}

.header-nav a:hover, .header-actions button.nav-link:hover { color: var(--fg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-user {
  font-size: 0.875rem;
  color: var(--fg-muted);
  display: none;
}

@media (min-width: 640px) { .header-user { display: inline; } }

.btn-logout {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-family: inherit;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.3s;
}

.btn-logout:hover { color: var(--fg); }
.btn-logout svg { width: 1rem; height: 1rem; }
.btn-logout .logout-text { display: none; }
@media (min-width: 640px) { .btn-logout .logout-text { display: inline; } }

.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--fg);
}

@media (min-width: 768px) { .mobile-toggle { display: none; } }

.mobile-toggle svg { width: 1.25rem; height: 1.25rem; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: rgba(10,18,24,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.mobile-nav.open { display: flex; flex-direction: column; gap: 1rem; }

@media (min-width: 768px) { .mobile-nav { display: none !important; } }

.mobile-nav a {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
}

.mobile-nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb-teal {
  position: absolute;
  top: 10%; right: 5%;
  width: 40vw; height: 40vw;
  border-radius: 50%;
  background: rgba(45,212,191,0.04);
  filter: blur(100px);
}

.hero-orb-orange {
  position: absolute;
  bottom: 10%; left: 5%;
  width: 35vw; height: 35vw;
  border-radius: 50%;
  background: rgba(232,148,74,0.04);
  filter: blur(100px);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-label span {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-label .line { width: 3rem; }

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--bg);
  padding: 0.75rem 2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.3s;
  border: none;
  font-family: inherit;
}

.hero-cta:hover { background: var(--primary-dark); }
.hero-cta svg { width: 1rem; height: 1rem; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 0.6s ease-out 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, transparent, rgba(45,212,191,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

/* Collections */
.collections {
  padding: 6rem 0 8rem;
  position: relative;
}

.collections .top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
}

.section-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .section-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .section-inner { padding: 0 2rem; } }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 200;
  letter-spacing: 0.02em;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) { .collection-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .collection-grid { grid-template-columns: repeat(3, 1fr); } }

.collection-card {
  position: relative;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  background: rgba(15,26,31,0.3);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  min-height: 14rem;
}

.collection-card:hover {
  border-color: rgba(45,212,191,0.4);
  background: rgba(15,26,31,0.6);
}

.collection-card .number {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 200;
  color: rgba(45,212,191,0.08);
  line-height: 1;
  transition: color 0.5s;
}

.collection-card:hover .number { color: rgba(45,212,191,0.15); }

.collection-card .card-body {
  position: relative;
  z-index: 10;
  flex: 1;
}

.collection-card h3 {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.collection-card:hover h3 { color: var(--primary); }

.collection-card .subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.collection-card .desc {
  font-size: 0.875rem;
  color: var(--fg-muted-dim);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.collection-card .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dim);
}

.collection-card .price {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--accent);
}

.collection-card .arrow {
  width: 1rem; height: 1rem;
  color: var(--fg-muted-dim);
  transition: all 0.3s;
}

.collection-card:hover .arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* Brand Statement */
.brand-statement {
  padding: 6rem 0 8rem;
  position: relative;
}

.brand-statement .top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
}

.brand-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.brand-inner .label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
  display: block;
}

.brand-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.125rem, 3vw, 1.875rem);
  font-style: italic;
  color: rgba(238,240,235,0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.brand-divider .line {
  width: 2rem;
  height: 1px;
}

.brand-divider .line-teal { background: rgba(45,212,191,0.5); }
.brand-divider .line-orange { background: rgba(232,148,74,0.5); }

.brand-divider span {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* Newsletter */
.newsletter {
  padding: 6rem 0 8rem;
  position: relative;
}

.newsletter .top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
}

.newsletter-inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.newsletter-inner .icon {
  width: 2rem; height: 2rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.newsletter-inner h2 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.newsletter-inner > p {
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 2rem;
}

.newsletter-form-main {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form-main input {
  flex: 1;
  height: 2.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form-main input::placeholder { color: var(--fg-muted-dim); }
.newsletter-form-main input:focus { border-color: var(--primary); }

.newsletter-form-main button {
  background: rgba(45,212,191,0.9);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  padding: 0 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.newsletter-form-main button:hover { background: var(--primary); }
.newsletter-form-main button svg { width: 1rem; height: 1rem; }

.newsletter-success-main {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45,212,191,0.3);
  background: rgba(45,212,191,0.05);
  display: none;
}

.newsletter-success-main.visible { display: block; }

.newsletter-success-main p {
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-dim);
  padding: 3rem 0 4rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .footer-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }

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

@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }

.footer-brand .brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-name span {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li, .footer-col a {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--fg); }

.footer-separator {
  height: 1px;
  background: var(--border-dim);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.footer-bottom .location {
  font-size: 0.75rem;
  color: var(--fg-muted-dim);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ═══════════════════════════════════════════════════════════════ */

.legal-page {
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
}

.legal-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10,18,24,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
}

.legal-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 640px) {
  .legal-header-inner { height: 5rem; padding: 0 1.5rem; }
}

.legal-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-header .logo svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }

.legal-header .logo span {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.legal-header .back-link {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.legal-header .back-link:hover { color: var(--fg); }
.legal-header .back-link svg { width: 1rem; height: 1rem; }

.legal-content {
  padding-top: 7rem;
  padding-bottom: 5rem;
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .legal-content { padding-top: 8rem; padding-left: 1.5rem; padding-right: 1.5rem; }
}

.legal-content h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 200;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.legal-content .date-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.legal-content .date-label .line {
  width: 3rem;
  height: 1px;
  background: rgba(45,212,191,0.6);
}

.legal-content .date-label span {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 300;
}

.legal-content .date-info {
  font-size: 0.875rem;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.legal-body {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--fg-muted);
  font-weight: 300;
}

.legal-body p { margin-bottom: 1rem; }

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--fg);
  letter-spacing: 0.05em;
  margin: 2.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-body h2 .num { color: var(--primary); font-weight: 400; }

.legal-body h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg);
  margin: 1.5rem 0 0.75rem;
}

.legal-body a {
  color: var(--primary);
  transition: opacity 0.3s;
}

.legal-body a:hover { text-decoration: underline; }

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li {
  margin-bottom: 0.5rem;
}

.legal-body .info-box {
  background: rgba(21,32,37,0.5);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body .info-box p { margin-bottom: 0.25rem; }
.legal-body .info-box .company { color: var(--fg); font-weight: 400; }

.legal-body .right-box {
  background: rgba(21,32,37,0.3);
  border-left: 2px solid rgba(45,212,191,0.4);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.legal-body .right-box h4 {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.legal-body .right-box p { font-size: 0.875rem; margin-bottom: 0; }

.legal-body .highlight-box {
  background: rgba(21,32,37,0.5);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1rem 0;
}

.legal-footer {
  border-top: 1px solid var(--border-dim);
  padding: 2rem 0;
}

.legal-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) { .legal-footer-inner { flex-direction: row; padding: 0 1.5rem; } }

.legal-footer p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.legal-footer-links {
  display: flex;
  gap: 1.5rem;
}

.legal-footer-links a {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
  transition: color 0.3s;
}

.legal-footer-links a:hover { color: var(--fg); }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 300;
  z-index: 100;
  opacity: 0;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast.error { border-color: #f87171; color: #f87171; }
.toast.success { border-color: var(--primary); color: var(--primary); }

/* Boutique Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 32rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.modal-close {
  background: none;
  border: none;
  color: var(--fg-muted);
  padding: 0.25rem;
  transition: color 0.3s;
}

.modal-close:hover { color: var(--fg); }
.modal-close svg { width: 1.25rem; height: 1.25rem; }

.modal-region {
  margin-bottom: 1.5rem;
}

.modal-region h3 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.modal-store {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border-dim);
  margin-bottom: 0.75rem;
}

.modal-store h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.modal-store p {
  font-size: 0.75rem;
  color: var(--fg-muted);
  white-space: pre-line;
  line-height: 1.5;
}

.modal-store .contact {
  margin-top: 0.5rem;
}

.modal-store .contact p { margin-bottom: 0.125rem; }
.modal-store .email { color: var(--primary); }

/* Hidden state */
.hidden { display: none !important; }
