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

:root {
  --brown-dark: #3b2210;
  --brown-mid: #6b3a1f;
  --brown-light: #a0522d;
  --amber: #d4841a;
  --cream: #fdf6ec;
  --text: #2a1a0e;
  --muted: #7a5c3e;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(59,34,16,0.92);
  backdrop-filter: blur(6px);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .logo {
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--amber);
}

/* ── HERO / VIDEO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video,
.hero .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.55);
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(59,34,16,0.55) 0%, rgba(107,58,31,0.45) 50%, rgba(160,82,45,0.55) 100%),
    url('../img/hero-mobile.jpg') center/cover no-repeat;
  background-color: #3b2210;
}

@media (min-width: 768px) {
  .hero-fallback {
    background:
      linear-gradient(160deg, rgba(59,34,16,0.55) 0%, rgba(107,58,31,0.45) 50%, rgba(160,82,45,0.55) 100%),
      url('../img/hero.jpg') center/cover no-repeat;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 780px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-content h1 span {
  color: var(--amber);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.92;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.btn-primary {
  background: var(--amber);
  color: var(--brown-dark);
}

.btn-primary:hover {
  background: #e8961f;
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brown-dark);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  animation: bounce 2s infinite;
}

.scroll-hint::before {
  content: '↓';
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTIONS ── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  color: var(--brown-mid);
  margin-bottom: 0.6rem;
}

/* ── VED CARDS ── */
#ved {
  background: var(--white);
}

.ved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ved-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.ved-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ved-card-header {
  padding: 1.5rem 1.8rem 1rem;
  background: var(--brown-dark);
  color: var(--white);
}

.ved-card-header h3 {
  color: var(--amber);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.ved-card-header .subtitle {
  font-size: 0.88rem;
  opacity: 0.8;
}

.ved-card-body {
  padding: 1.5rem 1.8rem;
  flex: 1;
}

.pro-con {
  margin-top: 1rem;
}

.pro-con h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.pro-con.pros h4 { color: #2e7d32; }
.pro-con.cons h4 { color: #c62828; }

.pro-con ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pro-con ul li {
  font-size: 0.95rem;
  padding-left: 1.4rem;
  position: relative;
}

.pro-con.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: 700;
}

.pro-con.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c62828;
  font-weight: 700;
}

/* ── BLANDVED HIGHLIGHT ── */
.mix-banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}

.mix-banner h3 {
  color: var(--amber);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.mix-banner p {
  opacity: 0.9;
  max-width: 600px;
}

.mix-species {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.mix-icon {
  font-size: 5rem;
  opacity: 0.9;
}

/* ── PRISER ── */
#priser {
  position: relative;
  background:
    linear-gradient(rgba(30,18,8,0.82), rgba(30,18,8,0.88)),
    url('../img/hero-mobile.jpg') center/cover no-repeat fixed;
  background-color: var(--brown-dark);
  color: var(--white);
}

@media (min-width: 768px) {
  #priser {
    background:
      linear-gradient(rgba(30,18,8,0.82), rgba(30,18,8,0.88)),
      url('../img/hero.jpg') center/cover no-repeat fixed;
    background-color: var(--brown-dark);
  }
}

@media (prefers-reduced-motion: reduce), (hover: none) {
  #priser {
    background-attachment: scroll;
  }
}

#priser h2 {
  color: var(--white);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, background 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}

.price-card.featured {
  border-color: var(--amber);
  background: rgba(212,132,26,0.12);
}

.price-card.featured .badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
}

.price-card h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin: 0.6rem 0 0.2rem;
}

.price-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.price-features li {
  font-size: 0.92rem;
  opacity: 0.85;
  padding-left: 1.3rem;
  position: relative;
}

.price-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 700;
}

.price-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.6rem;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--amber);
  border-radius: 0 6px 6px 0;
  font-size: 0.92rem;
  opacity: 0.85;
}

/* ── KONTAKT ── */
#kontakt {
  background: var(--cream);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.kontakt-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.kontakt-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.kontakt-item h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.kontakt-item a {
  color: var(--brown-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.kontakt-item a:hover {
  color: var(--amber);
}

.kontakt-item p {
  color: var(--brown-dark);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ── FOOTER ── */
footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem;
  font-size: 0.88rem;
}

footer strong {
  color: var(--amber);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
  }

  nav .logo {
    font-size: 1.1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul a {
    font-size: 0.88rem;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .mix-banner {
    grid-template-columns: 1fr;
    padding: 1.8rem;
  }

  .mix-icon {
    display: none;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
  }
}
