/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --card:      #111111;
  --border:    #222222;
  --primary:   #d97706;
  --text:      #ffffff;
  --muted:     #9ca3af;
  --title-main: #efe4c7;
  --title-metal: #a79f88;
  --title-command: #c89233;
  --panel: #141414;
  --panel-soft: rgba(255,255,255,.04);
  --gold-line: rgba(200,146,51,.62);
  --gold-glow: rgba(200,146,51,.18);
  --shadow-lg: 0 26px 70px rgba(0,0,0,.36);
  --font-mono: 'Space Mono', monospace;
  --font-sans: 'Inter', sans-serif;
  --measure: 64ch;
  --measure-tight: 54ch;
  --measure-wide: 72ch;
  --topbar-h:  36px;
  --nav-h:     150px;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at top right, rgba(200,146,51,.08) 0%, transparent 28%),
    radial-gradient(circle at bottom left, rgba(255,255,255,.04) 0%, transparent 34%),
    linear-gradient(180deg, #090909 0%, #0a0a0a 42%, #080808 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease, transform .25s ease; }
img, video { display: block; max-width: 100%; }

p {
  color: #c5ccd4;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  max-width: var(--measure);
  text-wrap: pretty;
}

::selection {
  background: rgba(200,146,51,.28);
  color: #fff7e7;
}

/* ===========================
   TOPBAR
=========================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--topbar-h);
  background: linear-gradient(180deg, rgba(12,12,12,.96) 0%, rgba(10,10,10,.88) 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
}

.topbar-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social a {
  color: var(--muted);
  font-size: 14px;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}
.topbar-social a:hover {
  color: #f2dfb7;
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(200,146,51,.22);
}

.topbar-email {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color .25s ease, opacity .25s ease;
}
.topbar-email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 16%, var(--gold-line) 84%, transparent 100%);
  transform: scaleX(.22);
  transform-origin: left;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.topbar-email:hover {
  color: var(--text);
}
.topbar-email:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ===========================
   HEADER / NAV
=========================== */
#header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 90;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: linear-gradient(180deg, rgba(10,10,10,.96) 0%, rgba(8,8,8,.92) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 10px 38px rgba(0,0,0,.28);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}
.logo:hover {
  opacity: .96;
  transform: translateY(-1px);
}

.logo-icon {
  height: 182px;
  width: 182px;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.08) drop-shadow(0 0 10px rgba(255,255,255,.12));
  opacity: .92;
  transition: transform .35s ease, filter .35s ease;
}
.logo:hover .logo-icon {
  transform: scale(1.02);
  filter: brightness(1.12) contrast(1.12) drop-shadow(0 0 18px rgba(255,255,255,.14));
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--text);
  opacity: 1;
  text-shadow: 0 0 12px rgba(255,255,255,.08);
}
.logo-accent { color: var(--primary); }

.brand-name {
  color: var(--text);
  font-weight: 800;
  white-space: nowrap;
}

.brand-name span {
  color: var(--primary);
}

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

.nav-links a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #d8d2bf;
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 14%, rgba(255,236,195,.92) 50%, var(--gold-line) 86%, transparent 100%);
  transform: scaleX(.18);
  transform-origin: left;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-links a:hover {
  color: #fff7e7;
  transform: translateY(-2px);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}
.hamburger:hover { color: var(--primary); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(12,12,12,.98) 0%, rgba(8,8,8,.98) 100%);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #d8d2bf;
  text-shadow: 0 1px 0 rgba(0,0,0,.45);
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 18%, transparent 100%);
  transform: scaleX(.2);
  transform-origin: left;
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.mobile-menu a:hover {
  color: #fff7e7;
  transform: translateX(4px);
}
.mobile-menu a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.btn:active { transform: scale(.98); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -130%;
  width: 70%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left .55s ease;
}
.btn:hover::before {
  left: 140%;
}

.btn-primary {
  background: linear-gradient(135deg, #b77724 0%, #d48c2d 42%, #f0b861 100%);
  color: #000;
  box-shadow: 0 12px 28px rgba(200,146,51,.18), inset 0 1px 0 rgba(255,255,255,.18);
}

.btn-lg { padding: 16px 32px; font-size: 12px; }
.btn-full { width: 100%; text-align: center; }

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 120px 0;
  position: relative;
  isolation: isolate;
}
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(200,146,51,.06) 0%, transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(255,255,255,.025) 0%, transparent 30%);
  pointer-events: none;
  z-index: -1;
}
.section-dark { background: transparent; }
.section-card {
  background: linear-gradient(180deg, rgba(19,19,19,.94) 0%, rgba(14,14,14,.98) 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

h2 {
  font-size: 3.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 32px;
  color: var(--title-metal);
  text-shadow: 0 1px 0 rgba(0,0,0,.55), 0 0 18px rgba(200,146,51,.08);
  text-wrap: balance;
}

.text-block { max-width: var(--measure); }

.text-block p {
  color: #c2c8d0;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.78;
  margin-bottom: 20px;
}
.text-block p:last-child { margin-bottom: 0; }

.section-header { text-align: center; margin-bottom: 80px; }
.accent-line {
  width: 96px;
  height: 4px;
  background: linear-gradient(90deg, rgba(200,146,51,.2) 0%, #f1c981 50%, rgba(200,146,51,.2) 100%);
  margin: 0 auto;
  box-shadow: 0 0 18px rgba(200,146,51,.18);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--topbar-h) + var(--nav-h));
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,.86) 65%, var(--bg) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,.72) 0%, rgba(6,6,6,.32) 52%, rgba(6,6,6,.76) 100%),
    url("../images/Firefly.webp") center 32% / cover no-repeat;
}
.hero-grid,
.hero-glow,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-grid {
  z-index: 1;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
  animation: gridDrift 20s linear infinite;
}

.hero-glow {
  z-index: 2;
  background:
    radial-gradient(circle at 78% 28%, rgba(217,119,6,.4) 0%, rgba(217,119,6,.14) 22%, transparent 44%),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,.12) 0%, transparent 34%);
  mix-blend-mode: screen;
  animation: ambientPulse 10s ease-in-out infinite;
}

.hero-overlay {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(6,6,6,.92) 0%, rgba(6,6,6,.72) 36%, rgba(6,6,6,.54) 58%, rgba(6,6,6,.8) 100%),
    linear-gradient(180deg, rgba(10,10,10,.2) 0%, rgba(10,10,10,.54) 100%);
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.06);
  filter: saturate(1.1) contrast(1.08) brightness(.62);
  opacity: 0;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-shell {
  max-width: 720px;
  padding: 40px 44px;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(135deg, rgba(17,17,17,.78) 0%, rgba(17,17,17,.5) 100%);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: shellBreathe 8s ease-in-out infinite;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-label .line { width: 48px; height: 1px; background: var(--primary); }
.hero-label span { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0; color: var(--primary); }

.hero h1 {
  font-size: 6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: .96;
  margin-bottom: 28px;
  max-width: 10ch;
  color: var(--title-main);
  text-shadow: 0 2px 0 rgba(0,0,0,.55), 0 12px 40px rgba(0,0,0,.45), 0 0 28px rgba(200,146,51,.12);
  text-wrap: balance;
}
.hero h1 .muted { color: var(--title-command); }

.hero p {
  color: #d9dee4;
  font-size: 17px;
  font-weight: 400;
  max-width: var(--measure-tight);
  margin-bottom: 40px;
  line-height: 1.72;
  letter-spacing: 0;
}

/* ===========================
   MEDIA BOX (Alex section)
=========================== */
.media-box {
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(22,22,22,.96) 0%, rgba(12,12,12,.98) 100%);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.media-box:hover {
  transform: translateY(-4px);
  border-color: rgba(200,146,51,.32);
  box-shadow: 0 24px 60px rgba(0,0,0,.42), 0 0 0 1px rgba(200,146,51,.08);
}

.portrait-media {
  aspect-ratio: 4/5;
  width: min(100%, 520px);
  margin-left: auto;
}

.corner {
  position: absolute;
  width: 64px; height: 64px;
  z-index: 1;
}
.corner-tr { top: -8px; right: -8px; border-top: 2px solid var(--primary); border-right: 2px solid var(--primary); }
.corner-bl { bottom: -8px; left: -8px; border-bottom: 2px solid var(--primary); border-left: 2px solid var(--primary); }

.media-box video, .media-box img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.feature-video {
  background: #000;
}

.video-sound-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,6,6,.72);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.36);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.video-sound-toggle:hover,
.video-sound-toggle:focus-visible {
  border-color: rgba(217,119,6,.7);
  background: rgba(12,12,12,.88);
  color: #f5d7a5;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.44), 0 0 0 1px rgba(217,119,6,.12);
  outline: none;
}

.video-sound-toggle i {
  font-size: 18px;
}

.video-sound-toggle.is-on {
  color: var(--primary);
  border-color: rgba(217,119,6,.66);
}

/* ===========================
   CARDS (Discipliner)
=========================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  border: 1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(20,20,20,.96) 0%, rgba(12,12,12,.98) 100%);
  padding: 40px 32px;
  box-shadow: 0 20px 48px rgba(0,0,0,.24);
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  border-color: rgba(200,146,51,.36);
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0,0,0,.34), 0 0 0 1px rgba(200,146,51,.08);
}

.card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  color: var(--primary);
  margin-bottom: 24px;
}
.card h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 16px;
  line-height: 1.2;
  text-wrap: balance;
}
.card p {
  color: #bcc3cb;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  max-width: var(--measure-tight);
}

/* ===========================
   VORES HUNDE
=========================== */
.section-hunde { overflow: hidden; }

.hunde-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .15;
}
.hunde-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hunde-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,.8) 50%, var(--bg) 100%);
}

.section-hunde .container { position: relative; z-index: 1; }

.section-hunde h2 { max-width: 480px; }

.hunde-sub {
  color: #c8cfd7;
  font-size: 17px;
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.74;
  letter-spacing: 0;
}

.hunde-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.hunde-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(180deg, rgba(18,18,18,.9) 0%, rgba(12,12,12,.94) 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.hunde-item:hover {
  transform: translateX(6px);
  border-color: rgba(200,146,51,.28);
  box-shadow: 0 22px 44px rgba(0,0,0,.26);
}

.hunde-dot {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(217,119,6,.15);
  border: 1px solid rgba(217,119,6,.5);
  position: relative;
  margin-top: 4px;
}
.hunde-dot::after {
  content: '';
  position: absolute;
  inset: 6px;
  background: var(--primary);
}

.hunde-item h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 4px;
  line-height: 1.25;
  text-wrap: balance;
}
.hunde-item p {
  color: #bfc6ce;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  max-width: var(--measure-tight);
}

/* ===========================
   KONTAKT FORM
=========================== */
.kontakt-sub {
  color: #c7ced6;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.76;
  letter-spacing: 0;
  max-width: var(--measure-tight);
}

.kontakt-info { display: flex; flex-direction: column; gap: 20px; }
.kontakt-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
}
.kontakt-row i { color: var(--primary); font-size: 18px; }

.form-box {
  background: linear-gradient(180deg, rgba(15,15,15,.96) 0%, rgba(10,10,10,.98) 100%);
  border: 1px solid rgba(255,255,255,.07);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200,146,51,.08) 0%, transparent 34%);
  pointer-events: none;
}
.form-top-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(200,146,51,.25) 0%, #e8b35e 50%, rgba(200,146,51,.25) 100%);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  resize: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(200,146,51,.55);
  background: rgba(255,255,255,.035);
  box-shadow: 0 0 0 4px rgba(200,146,51,.08);
}

.form-group input.error,
.form-group textarea.error { border-color: #ef4444; }

.form-error {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #ef4444;
  min-height: 14px;
}

.form-success {
  text-align: center;
  padding: 48px 0;
}
.form-success i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.2;
  text-wrap: balance;
}
.form-success p {
  color: #c1c8d0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.hidden { display: none !important; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: linear-gradient(180deg, #070707 0%, #040404 100%);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  color: var(--muted);
  font-size: 16px;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}
.footer-social a:hover {
  color: #f0cf91;
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(200,146,51,.18);
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.985);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes gridDrift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, 10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes ambientPulse {
  0% { opacity: .85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
  100% { opacity: .85; transform: scale(1); }
}

@keyframes shellBreathe {
  0% { box-shadow: 0 32px 80px rgba(0,0,0,.45); }
  50% { box-shadow: 0 36px 88px rgba(0,0,0,.52), 0 0 0 1px rgba(200,146,51,.04); }
  100% { box-shadow: 0 32px 80px rgba(0,0,0,.45); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr 1fr; }
  h2 { font-size: 2.9rem; }
  .hero h1 { font-size: 5.1rem; }
  .portrait-media {
    width: min(100%, 500px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 108px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 32px 24px; }
  .section::before { opacity: .75; }
  .portrait-media {
    width: min(100%, 400px);
  }
  .footer-inner { flex-direction: column; text-align: center; }
  h2 { font-size: 2.5rem; }
  .hero h1 { font-size: 3.9rem; }
  .hero-shell { padding: 32px 24px; }
  .hero p,
  .text-block p,
  .hunde-sub,
  .kontakt-sub {
    max-width: 100%;
  }
  .hero-grid { background-size: 44px 44px; }
}

@media (max-width: 480px) {
  .section { padding: 80px 0; }
  .logo { gap: 12px; }
  .logo-icon { height: 96px; width: 96px; }
  .logo-text { font-size: 24px; }
  .hero-content { padding: 0 16px; }
  .hero-shell { padding: 28px 20px; }
  .hero h1 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 24px;
  }
  .hero p { font-size: 16px; }
  h2 {
    font-size: 2.1rem;
    line-height: 1.1;
  }
  p { line-height: 1.72; }
}
