/* DETTE SKAL FJERNES FØR LAUNCH */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body.locked .site-header {
  display: flex;
}
#password-input {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.password-screen {
  position: fixed;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;

  background:
    linear-gradient(
      180deg,
      rgba(255,253,249,0.68),
      rgba(255,253,249,0.82)
    );

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.password-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.password-box {
  width: min(92vw, 440px);

  padding: 2rem;

  border-radius: 1.5rem;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.82),
      rgba(255,255,255,0.70)
    );

  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);

  border: 1px solid rgba(255,255,255,0.55);

  box-shadow:
    0 20px 60px rgba(31,29,26,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);

  text-align: center;
}

.password-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  font-size: 0.8rem;
}

.password-box h2 {
  margin-top: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: -0.05em;
}

.password-box p {
  color: var(--muted);
  line-height: 1.7;
}

.password-box form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.password-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1rem 1.2rem;
  background: white;
  color: var(--ink);
  font: inherit;
  text-align: center;
  outline: none;
}

.password-box input:focus {
  border-color: rgba(31, 29, 26, 0.42);
}

.password-box button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 1rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.password-error {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

/* SLUTT PASSORD */

:root {
  --paper: #fffdf9;
  --ink: #1f1d1a;
  --muted: #736b61;
  --line: rgba(31, 29, 26, 0.14);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 12vw, 11rem);
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  transition: color 350ms ease, background 350ms ease;
  color: white;

  text-shadow:
    0 1px 2px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.15);
}
.site-header.is-dark {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(14px);
  text-shadow: none;
}
.site-header {
  border-bottom: 1px solid transparent;
}

.site-header.section-view {
  border-bottom-color: rgba(31, 29, 26, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;

  color: inherit;
  text-decoration: none;

  font-family: Georgia, "Times New Roman", serif;
}

.brand-a,
.brand-m {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
}

.brand-divider {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 1.8rem;
  height: 4.5rem;
}

.brand-divider::before,
.brand-divider::after {
  content: "";

  position: absolute;

  width: 1px;
  background: currentColor;
  opacity: 0.6;
}

.brand-divider::before {
  top: 0;
  height: calc(50% - 0.7rem);
}

.brand-divider::after {
  bottom: 0;
  height: calc(50% - 0.7rem);
}

.brand-divider span {
  position: relative;

  font-size: 1.2rem;
  line-height: 1;

  color: inherit;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  justify-content: flex-end;
  transform: translateX(6vw);
}

.nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.15);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-header.is-dark .nav a,
.site-header.is-dark .brand,
.site-header.is-dark .brand * {
  text-shadow: none;
}

.panel {
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  position: relative;
}

.hero {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(360deg, rgba(255,253,249,1) 0%, rgba(255,253,249,.96) 10%, rgba(255,253,249,.66) 20%, rgba(255,253,249,.16) 40%, rgba(255,253,249,0) 60%),
    url("/IMG_5038.jpg?v=2");
  background-size: cover;
  background-position: top;
  opacity: 0;
  transform: scale(1.035);
  animation: imageFade 1800ms ease 250ms forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 30% 50%, rgba(255,253,249,.9), rgba(255,253,249,.14) 38%, transparent 64%);
  pointer-events: none;
}

.hero-copy {
  width: min(88vw, 980px);
  padding-right: clamp(0rem, 32vw, 28rem);
}

.eyebrow, .date, .section-number {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  margin-top: 1.1rem;
  font-size: clamp(4.5rem, 13vw, 12.5rem);
  letter-spacing: -0.075em;
}

.date {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;

  width: fit-content;

  margin-top: 1.4rem;
  padding: 0.55rem 0;

  color: rgba(31,29,26,0.78);

  font-size: clamp(0.95rem, 1.25vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.22em;
}

.date::before,
.date::after {
  content: "";

  width: 2.1rem;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(205,179,138,0),
      rgba(205,179,138,0.65)
    );
}

.date::after {
  transform: scaleX(-1);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.content-section {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 7vw, 7rem);
  /*background:
    linear-gradient(90deg, rgba(255,253,249,.94), rgba(255,253,249,.99)),
    url("IMG_5038.jpg") top / cover fixed; */
	Background: white;
}

.content-section.alt { 
	background: white; 
}
.section-inner {
  width: min(84vw, 900px);
  /*border-top: 1px solid var(--line);*/
  padding-top: clamp(2rem, 5vw, 4rem);
}

h2.tittel {
  margin-top: 1rem;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.05em;
}

.section-inner > p:last-child {
  max-width: 36rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 900ms ease, transform 900ms ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes imageFade {
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 780px) {
  .site-header {
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    mix-blend-mode: normal;
    color: var(--ink);
    background: rgba(255,253,249,.72);
    backdrop-filter: blur(16px);
  }
  .nav {
    gap: .8rem;
    overflow-x: auto;
    transform: none;
    max-width: 78vw;
    padding-bottom: .25rem;
  }
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(255,253,249,.98) 0%, rgba(255,253,249,.76) 36%, rgba(255,253,249,.2) 100%),
      url("/IMG_5038.jpg?v=2");
    background-position: center;
  }
  .hero-copy { padding-right: 0; padding-top: 10vh; }
  h1 { font-size: clamp(4rem, 20vw, 7rem); }
}
.site-header {
  color: white;
}

.site-header.is-dark {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.82);
  backdrop-filter: blur(14px);
}
.menu-section {
  min-height: auto;
  padding-top: clamp(6rem, 10vw, 9rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
}
.menu-section,
.program-section,
#praktisk {
  scroll-snap-align: none; 
}
.menu-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.course {
  border-bottom: 1px solid var(--line);
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.course-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-size: 0.75rem;
}

.course h3,
.form-intro h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.course p:last-child,
.form-intro p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}

.allergy-form {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.2rem;
  max-width: 680px;
}

.allergy-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.allergy-form input,
.allergy-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.75);
  color: var(--ink);
  font: inherit;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  outline: none;
}

.allergy-form textarea {
  border-radius: 1.2rem;
  resize: vertical;
}

.allergy-form input:focus,
.allergy-form textarea:focus {
  border-color: rgba(31, 29, 26, 0.38);
}

.checkbox-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.checkbox-group input {
  width: auto;
}

.allergy-form button {
  width: fit-content;
  margin-top: 0.5rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.allergy-form button:hover {
  background: transparent;
  color: var(--ink);
  transform: translateY(-2px);
}

@media (max-width: 780px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }

  .allergy-form {
    max-width: none;
  }
}
.menu-layout.vertical {
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 720px;
}

.menu-layout.vertical .course {
  display: block;
  grid-template-columns: 9rem 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
}

.menu-layout.vertical .course-label {
  margin-top: 0.45rem;
}

@media (max-width: 780px) {
  .menu-layout.vertical .course {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.praktisk-card {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.praktisk-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}
.praktisk-card p{
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}
.praktisk-card p:last-child {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}
.praktisk-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(31, 29, 26, 0.8) !important;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

.map-link {
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  transition: background 250ms ease, color 250ms ease, transform 250ms ease;
}

.map-link:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

@media (max-width: 780px) {
  .location-card {
    display: grid;
    align-items: start;
  }

  .map-link {
    width: fit-content;
  }
}
.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.contact-details summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);

  transition: opacity 250ms ease;
}

.contact-details summary:hover {
  opacity: 0.65;
}

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

.contact-details summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 250ms ease;
}

.contact-details[open] summary::after {
  transform: rotate(45deg);
}

.contact-details-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-details-content a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.contact-details-content a:hover {
  text-decoration: underline;
}
.event-time {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.event-time-value {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.timeline {
  margin-top: clamp(3rem, 6vw, 5rem);
  max-width: 720px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: 1px solid var(--line);
}

.timeline-item time {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 0.40rem !important;
}

h3.timeline-tittel {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.8rem)!important;
  letter-spacing: -0.03em !important;
}

.timeline-item div p {
  margin-top: 0.70rem;
  color: var(--muted);
  font-size: 1.2rem !important;
  line-height: 1.6;
}
.program-intro {
  margin-top: 1.5rem;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  
}
.hotel-item {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.hotel-note,
.transport-note,
.footer-note {
  margin-top: 1.5rem;

  padding: 1rem 1.1rem;

  border-left: 0;
  border-radius: 1rem;

  background: rgba(31,29,26,0.035);

  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;

  max-width: 38rem;
}

.hotel-note strong {
  color: var(--ink);
  font-style: normal;
}
.transport-list {
  margin: 2rem 0;
}

.transport-item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;

  padding: 0.9rem 0;

  border-bottom: 1px solid var(--line);
}

.transport-item:first-child {
  border-top: 1px solid var(--line);
}

.transport-item span:first-child {
  color: var(--ink);
}

.transport-item span:last-child {
  color: var(--muted);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.menu-header h2 {
  margin: 0;
}

.menu-toggle {
  display: inline-flex;
  gap: 0.35rem;
  transition: border-color 250ms ease, box-shadow 250ms ease;
  border: 1px solid var(--line);
  border-radius: 999px;

  padding: 0.25rem;
  flex-shrink: 0;
}
.menu-toggle:hover {
  border-color: rgba(31, 29, 26, 0.26);
  box-shadow: 0 8px 24px rgba(31, 29, 26, 0.06);
}

.menu-toggle-btn {
 border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 250ms ease,
    color 250ms ease,
    transform 250ms ease,
    opacity 250ms ease;
}

.menu-toggle-btn:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle-btn.active {
  background: var(--ink);
  color: var(--paper);
  transform: scale(1.02);
}
.menu-toggle-btn.active:hover {
  color: var(--paper);
}

@media (max-width: 780px) {
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    margin-top: 1rem;
  }
}
.menu-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.menu-panel.active {
  display: block;
  animation: menuFadeIn 420ms ease forwards;
}
@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.site-footer {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(31, 29, 26, 0.08);
}

.site-footer-inner {
  width: min(84vw, 900px);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 2rem 0;

  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.footer-logout {
  border: 0;
  background: none;

  color: var(--muted);

  font: inherit;
  cursor: pointer;

  transition: color 250ms ease;
}

.footer-logout:hover {
  color: var(--ink);
}
.notice {
  margin-top: 1.25rem;

  padding: 1rem 1.1rem;

  border-radius: 1rem;

  background: rgba(31,29,26,0.035);

  line-height: 1.65;
}

.notice-label {
  display: block;

  margin-bottom: 0.45rem;

  color: var(--muted);

  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.notice p {
  margin: 0;
}
.allergen-note {
  margin-top: 0.85rem !important;
  margin-bottom: 0 !important;

  color: rgba(31,29,26,0.46) !important;

  font-size: 0.82rem !important;
  line-height: 1.55 !important;

  font-style: italic;
}

.allergen-note::before {
  content: "Allergener · ";
  color: rgba(31,29,26,0.72);
  font-style: normal;
}
@media (min-width: 781px) {
  .timeline {
    position: relative;
    max-width: 760px;
    margin-top: clamp(3rem, 6vw, 5rem);
  }

  .timeline-item {
    position: relative;

    display: grid;
    grid-template-columns: 8.5rem 1fr;
    gap: clamp(2rem, 4vw, 3.5rem);

    padding: 1.65rem 0 1.65rem 1.35rem;

    border-bottom: 0;
  }

  .timeline-item:first-child {
    border-top: 0;
  }

  .timeline-item::before {
    content: "";
    position: absolute;

    left: 0;
    top: 1.90rem;
    bottom: -1.9rem;

    width: 1px;
    background: var(--line);
  }

  .timeline-item::after {
    content: "";
    position: absolute;

    left: -4px;
    top: 1.85rem;

    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: var(--ink);
  }

  .timeline-item:last-child::before {
    display: none;
  }

  .timeline-item time {
    display: inline-block;
    width: fit-content;

    padding-top: 0 !important;

    color: rgba(31,29,26,0.92);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1;
  }

  .timeline-item time::after {
    content: "";
    display: block;

    width: 100%;
    height: 1px;

    margin-top: 0.55rem;
    margin-bottom: 0.25rem;

    background:
      linear-gradient(
        90deg,
        rgba(31,29,26,0),
        rgba(31,29,26,0.24) 18%,
        rgba(31,29,26,0.24) 82%,
        rgba(31,29,26,0)
      );
  }

  h3.timeline-tittel {
    margin: 0 !important;
    font-size: clamp(1.45rem, 2vw, 1.9rem) !important;
    line-height: 1.08 !important;
    color: var(--ink) !important;
  }

  .timeline-item div p {
    margin-top: 0.5rem !important;
    margin-bottom: 0 !important;

    color: rgba(31,29,26,0.56);
    font-size: 1.05rem !important;
    line-height: 1.65;
  }
}
@media (min-width: 781px) {
  .notice {
    max-width: 42rem;
    margin-top: 1.6rem;
    padding: 1.15rem 1.35rem;
  }
}
@media (min-width: 781px) {
  .praktisk-card {
    padding-top: 2.6rem;
    margin-top: 3.2rem;
  }

  .praktisk-card h3 {
    line-height: 1.02;
  }

  .praktisk-card p {
    color: rgba(31,29,26,0.62);
  }
}
@media (min-width: 781px) {
  .hotel-item {
    padding: 1.35rem 0;
  }

  .hotel-item h4 {
    margin: 0 0 0.35rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: 1.35rem;
  }

  .hotel-item p {
    margin: 0;
    color: rgba(31,29,26,0.58);
  }
}
@media (min-width: 781px) {
  .menu-layout.vertical {
    max-width: 760px;
  }

  .course {
    padding-bottom: 2.35rem;
  }

  .allergen-note {
    margin-top: 0.75rem !important;
  }
}
@media (min-width: 781px) {
  .site-header.is-dark {
  background: rgba(255,253,249,0.58);

  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

  .nav a {
    font-size: 0.88rem;
  }
}
@media (min-width: 781px) and (max-width: 1280px) {
  .site-header {
    padding: 1.35rem 2.5rem;
    gap: clamp(1.5rem, 6vw, 5rem);
  }

  .brand-a,
  .brand-m {
    font-size: 3.1rem;
  }

  .brand-divider {
    height: 3.5rem;
  }

  .nav {
    gap: 1.15rem;
    transform: translateX(2vw);
  }

  .nav a {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }

  h1 {
    font-size: clamp(5rem, 10vw, 8.8rem);
  }

  h2.tittel {
    font-size: clamp(3rem, 6.5vw, 5.4rem);
  }

  .content-section {
    padding: clamp(4rem, 6vw, 5.5rem);
  }

  .section-inner {
    width: min(82vw, 760px);
    padding-top: 2.6rem;
  }

  .praktisk-card h3,
  .course h3 {
    font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  }

  .event-time-value {
    font-size: clamp(3.4rem, 6vw, 4.8rem);
  }
}
@media (min-width: 781px) {
  .hero::before {
    background-position: 42% top;
  }

  .hero-copy {
    padding-right: clamp(0rem, 30vw, 26rem);
  }
}
.drink-course {
  position: relative;
  padding-left: 1.35rem;
  border-bottom: 0;
}

.drink-course::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: -1.8rem;
  width: 1px;
  background: rgba(31,29,26,0.12);
}

.drink-course:last-child::before {
  display: none;
}

.drink-course .course-label {
  color: rgba(31,29,26,0.52);
}

.drink-entry {
  position: relative;
  margin-top: 1.55rem;
}

.drink-entry::before {
  content: "";
  position: absolute;
  left: -1.61rem;
  top: 0.42rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cdb38a;
  box-shadow: 0 0 0 4px rgba(205,179,138,0.14);
}
@media (min-width: 781px) {
  .drink-entry::before {
	 transform: translateY(3px);
  }
}

.drink-entry + .drink-entry {
  margin-top: 1.65rem;
}

.drink-entry h4 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.drink-entry p {
  max-width: 34rem;
  margin: 0.55rem 0 0;
  color: rgba(31,29,26,0.56);
  font-size: 1rem;
  line-height: 1.65;
}

.drink-type {
  display: block;
  width: fit-content;
  margin-top: 0.45rem;

  color: rgba(168,143,104,.85);
  letter-spacing: .22em;

  font-size: 0.68rem;
  font-weight: 600;
  
  text-transform: uppercase;
}
.drink-note {
  margin-top: 3rem;

  padding: 1rem 1.1rem;

  border-radius: 1rem;

  background: rgba(31,29,26,0.035);

  max-width: 36rem;
}

.drink-note-label {
  display: block;

  margin-bottom: 0.45rem;

  color: var(--muted);

  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.drink-note p {
  margin: 0;

  color: rgba(31,29,26,0.62);

  line-height: 1.65;
}
/* Matmeny mer i stil med drikkemeny */
#food-menu .course h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

#food-menu .course p:not(.course-label):not(.allergen-note) {
  max-width: 34rem;

  margin-top: 0.65rem;

  color: rgba(31,29,26,0.56);

  font-size: 1rem;
  line-height: 1.65;
}

#food-menu .course-label {
  margin-bottom: 0.85rem;

  color: rgba(31,29,26,0.52);

  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

#food-menu .allergen-note {
  max-width: 34rem;

  margin-top: 0.75rem !important;

  color: rgba(31,29,26,0.46) !important;

  font-size: 0.82rem !important;
  line-height: 1.55 !important;
}
/* SAVE THE DATE MODE */
.save-the-date {
  display: none;
}

body.save-date-mode {
  overflow: hidden;
}

body.save-date-mode .site-header {
  justify-content: center;
}

body.save-date-mode .site-header .nav,
body.save-date-mode .mobile-scroll-nav,
body.save-date-mode .mobile-scroll-label,
body.save-date-mode .site-footer,
body.save-date-mode main section:not(#home) {
  display: none !important;
}

body.save-date-mode .site-header {
  background: transparent !important;
  border-bottom: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.save-date-mode .site-header .brand {
  color: white;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.15);
}

body.save-date-mode .save-the-date {
 display: block !important;

  margin-top: 2.8rem;
  max-width: 34rem;

  padding-left: 0;
  border-left: 0;

  text-align: left;
}

body.save-date-mode .save-the-date-label {
  position: relative;

margin-top: 3rem;

  max-width: 30rem;

  margin-left: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;

  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;

  color: rgba(31,29,26,0.58);

  font-size: 0.92rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

body.save-date-mode .save-the-date-label::after {
  content: "";

  display: block;

  width: 4.5rem;
  height: 1px;

  margin-top: 0.9rem;

  background: rgba(205,179,138,0.55);
}

body.save-date-mode .save-the-date p {
  max-width: 31rem;

  margin: 0.95rem 0;

  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;

  color: rgba(31,29,26,0.60);

  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.85;
  letter-spacing: 0.045em;
}
.hero-location {
  width: fit-content;
  margin: 0.8rem auto 0;

  color: rgba(31,29,26,0.54);

  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-location::before {
  display: none;
}
.hero-copy .date {
  display: flex;
  justify-content: center;

  width: 100%;

  margin-top: 1.4rem;
}

.hero-location {
  display: block;

  width: 100%;

  margin-top: 0.85rem;

  text-align: center;

  color: rgba(31,29,26,0.54);

  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
body.locked {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.password-screen {
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(.22,1,.36,1),
    visibility 650ms ease;
}

body.unlocking .password-screen {
   opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
}

body.unlocking .password-box {
  transform: translateY(-10px) scale(0.98);
  opacity: 0;
}

.password-box {
  transition:
    opacity 450ms ease,
    transform 450ms cubic-bezier(.22,1,.36,1);
}
html {
  scrollbar-gutter: stable;
}
@media (min-width: 781px) {
  .hero .hero-copy.reveal.in-view {
    transform: translateY(60px);
  }
}
@media (max-width: 1250px) {
  .hero-copy {
    padding-right: 0;
    width: min(88vw, 760px);
  }

  .hero-stack {
    width: 100%;
  }

  .hero-stack h1 {
    text-align: center;
  }

  .save-the-date,
  .save-the-date p,
  .save-the-date-label {
    text-align: left;
  }
}