:root {
  --bg: #0f1513;
  --bg-soft: #16201d;
  --surface: #f6f1e8;
  --surface-2: #ebe2d3;
  --text-dark: #1d2321;
  --text-light: #f4f1eb;
  --muted: #59605e;
  --brand: #ff875c;
  --brand-dark: #d65d34;
  --accent: #3fc2a3;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-light: rgba(29, 35, 33, 0.15);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text-light);
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(255, 135, 92, 0.28), transparent 50%),
    radial-gradient(1000px 550px at 10% -15%, rgba(63, 194, 163, 0.18), transparent 46%),
    linear-gradient(170deg, #0d1311 0%, #101815 55%, #0c1210 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #3fc2a3;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 120;
  background: #ffffff;
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #111;
  font-weight: 700;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid var(--border-dark);
  backdrop-filter: blur(8px) saturate(130%);
  background: linear-gradient(to bottom, rgba(12, 18, 16, 0.95), rgba(12, 18, 16, 0.72));
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
  background: #fff;
}

.logo-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--brand), #ffb07a);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
  cursor: pointer;
}

.nav-toggle__icon {
  display: grid;
  gap: 4px;
}

.nav-toggle__line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  opacity: 0.9;
  font-weight: 500;
}

.site-nav a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ffb07a);
  color: #141414;
  box-shadow: 0 10px 24px rgba(255, 135, 92, 0.34);
}

.btn-secondary {
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  padding: 72px 0 32px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  color: #9fdcca;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
  font-family: "Sora", "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4.9vw, 3.7rem);
  margin-bottom: 0.9rem;
}

.lead {
  color: #d4d7d5;
  max-width: 60ch;
  font-size: 1.04rem;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.content-shell {
  background: linear-gradient(180deg, var(--surface) 0%, #f8f5ee 100%);
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  margin-top: 36px;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-bottom: 0;
}

section {
  padding: 58px 0;
}

.section-head {
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.grid-3 {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: #fffdf9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card,
.hero-media,
.gallery-item,
.item-card,
.partner-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.item-card:hover,
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  border-radius: 999px;
  background: var(--surface-2);
  padding: 7px 12px;
  border: 1px solid var(--border-light);
  color: #3e4341;
}

.feature-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.pricing-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 10px 0;
}

.split {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.contact-list {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.contact-list a:hover {
  color: #2c4a42;
  text-decoration: underline;
}

.booking-form {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid #dbcdb9;
  background:
    radial-gradient(700px 180px at 100% -5%, rgba(255, 135, 92, 0.12), transparent 55%),
    #fffdf8;
  box-shadow: 0 22px 40px rgba(29, 35, 33, 0.14);
}

.form-block {
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdfa 0%, #fff7ec 100%);
  border: 1px solid #e3d7c7;
  margin-bottom: 12px;
}

.form-block h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.event-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.choice-chip {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #deceba;
  border-radius: 14px;
  padding: 11px 12px;
  background: linear-gradient(180deg, #fff 0%, #fff8ef 100%);
  cursor: pointer;
  min-height: 52px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.choice-chip input {
  width: 16px;
  height: 16px;
}

.choice-chip span {
  font-weight: 600;
  color: #313836;
}

.choice-chip span::after {
  content: "Velg";
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8f6f52;
  margin-left: 10px;
}

.choice-chip:hover {
  transform: translateY(-1px);
  border-color: #c9b296;
}

.choice-chip:has(input:checked) {
  border-color: #3fc2a3;
  box-shadow: 0 0 0 2px rgba(63, 194, 163, 0.2);
  background: linear-gradient(180deg, #f8fffd 0%, #edfff8 100%);
}

.choice-chip:has(input:checked) span::after {
  content: "Valgt";
  color: #16735b;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 700;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8cdbd;
  border-radius: 10px;
  background: #fff;
  color: #1d2321;
  padding: 11px 12px;
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #3fc2a3;
  outline: 2px solid rgba(63, 194, 163, 0.2);
}

.field-full {
  grid-column: 1 / -1;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.equipment-card {
  display: grid;
  gap: 8px;
  border: 1px solid #dfd2c0;
  border-radius: 14px;
  padding: 8px;
  background: linear-gradient(180deg, #fff 0%, #fff9ef 100%);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.equipment-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.equipment-card img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid #e7dccd;
}

.equipment-card span {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-weight: 600;
  color: #343a38;
}

.equipment-card span::after {
  content: "Velg";
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8b6a4e;
}

.equipment-card:hover {
  border-color: #c9b296;
  transform: translateY(-1px);
}

.equipment-card:has(input:checked) {
  border-color: #3fc2a3;
  box-shadow: 0 0 0 2px rgba(63, 194, 163, 0.22);
  background: linear-gradient(180deg, #f8fffd 0%, #edfff8 100%);
}

.equipment-card:has(input:checked) span::after {
  content: "Valgt";
  color: #16735b;
}

.form-help {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #5e6462;
}

.is-hidden {
  display: none;
}

.form-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-feedback {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  display: none;
  font-weight: 600;
}

.form-feedback.success {
  display: block;
  color: #104a3b;
  background: #ddf7f0;
  border: 1px solid #97d9c7;
}

.form-feedback.error {
  display: block;
  color: #6a1f12;
  background: #ffe9e2;
  border: 1px solid #f4b19f;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.faq-grid {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand-dark);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 12px;
}

.embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.embed-wrap iframe {
  width: 100%;
  min-height: 780px;
  border: 0;
}

.page-hero {
  padding: 58px 0 30px;
}

.page-title {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.item-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.item-card {
  background: #fffdf9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.item-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.item-card .inner {
  padding: 14px;
}

.partner-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  background: #fffdf9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.partner-card img {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.media-wall {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.media-item {
  margin: 1px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fffdf9;
  box-shadow: var(--shadow-card);
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

footer {
  margin-top: 36px;
  border-top: 1px solid var(--border-light);
  color: #505654;
}

.footer-inner {
  padding: 24px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .hero-layout,
  .grid-3,
  .gallery,
  .pricing-grid,
  .split,
  .item-grid,
  .partner-card,
  .media-wall {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-media img {
    min-height: 250px;
  }

  .content-shell {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-options-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-form {
    padding: 16px;
  }

  .form-block {
    padding: 12px;
  }
}

@media (max-width: 820px) {
  .nav-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
  }

  .logo {
    margin-right: auto;
  }

  .logo-text {
    font-size: 0.98rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease, margin-top 0.2s ease, padding-top 0.2s ease;
  }

  .site-nav.is-open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    line-height: 1.2;
  }

  .site-nav .btn {
    width: 100%;
    border-radius: 12px;
    padding: 10px 12px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, 94%);
  }

  .hero,
  .page-hero {
    padding-top: 40px;
  }

  section {
    padding: 44px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .content-shell {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .event-options-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}