/* Felles stil for landingssidene (bryllup, julebord, jubileum, toastmaster, 404).
   Samme designspråk som forsiden: farger, typografi og komponenter. */

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

:root {
  --ink: #100d0b;
  --night: #18110f;
  --mahogany: #2a1712;
  --wine: #4b1f27;
  --rose: #d7a0a8;
  --gold: #c4a96b;
  --gold-light: #ead8ad;
  --paper: #f3ece2;
  --text: #e2d7c9;
  --muted: rgba(226,215,201,0.66);
  --line: rgba(196,169,107,0.18);
  --green: #95d2a0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  z-index: 999;
}
.skip-link:focus { top: 16px; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
}

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 48px);
  color: rgba(243,236,226,0.78);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav.scrolled {
  background: rgba(16,13,11,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(196,169,107,0.16);
}
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  font-style: italic;
  color: var(--gold-light);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,236,226,0.58);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold-light); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 700;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 128px clamp(20px, 5vw, 72px) clamp(56px, 7vw, 88px);
  background:
    radial-gradient(ellipse at 12% 18%, rgba(215,160,168,0.13), transparent 46%),
    radial-gradient(ellipse at 88% 30%, rgba(196,169,107,0.16), transparent 44%),
    linear-gradient(180deg, var(--mahogany) 0%, #160f0d 70%, var(--ink) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.24'/%3E%3C/svg%3E");
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}
.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-grid > * { min-width: 0; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 22px;
  font-size: 12px;
  color: rgba(243,236,226,0.5);
}
.crumbs li + li::before { content: "›"; margin-right: 8px; color: var(--gold); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--gold-light); }
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  color: #fff7ea;
  overflow-wrap: break-word;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero-lead {
  max-width: 620px;
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: rgba(243,236,226,0.76);
  font-weight: 300;
}
.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 22px;
}
.hero-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(234,216,173,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--gold-light);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero-highlights li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  padding: 0 28px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  border: 1px solid rgba(234,216,173,0.34);
  color: var(--paper);
  background: rgba(255,255,255,0.04);
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(243,236,226,0.55);
}

/* Eksempelskjerm i hero (quiz eller kjøreplan) */
.mock {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(196,169,107,0.2);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(196,169,107,0.2), transparent 58%),
    linear-gradient(160deg, #2a1712, #080605);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}
.mock-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mock-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bcf1c4;
  white-space: nowrap;
}
.mock-top span:last-child { text-align: right; }
.mock-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(149,210,160,0.2);
}
.mock-question {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(196,169,107,0.2);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.mock-answers { list-style: none; display: grid; gap: 8px; }
.mock-answers li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  background: linear-gradient(90deg, rgba(196,169,107,0.14) var(--p, 0%), transparent var(--p, 0%));
}
.mock-answers li.correct {
  color: #d9ffd8;
  border-color: rgba(149,210,160,0.42);
  background: linear-gradient(90deg, rgba(149,210,160,0.16) var(--p, 0%), transparent var(--p, 0%));
}
.mock-answers b { font-weight: 600; font-variant-numeric: tabular-nums; }
.mock-board {
  list-style: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(0,0,0,0.26);
  border: 1px solid rgba(196,169,107,0.13);
}
.mock-board li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
}
.mock-board b { color: var(--gold-light); font-weight: 600; font-variant-numeric: tabular-nums; }
.mock-plan { list-style: none; display: grid; gap: 2px; }
.mock-plan li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(196,169,107,0.12);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
}
.mock-plan li:last-child { border-bottom: 0; }
.mock-plan time { color: var(--gold); font-variant-numeric: tabular-nums; }
.mock-caption {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(243,236,226,0.42);
  text-align: right;
}

/* ── SEKSJONER ── */
.section { padding: clamp(72px, 9vw, 116px) clamp(20px, 4vw, 56px); }
.section-dark { background: var(--ink); }
.section-wine { background: linear-gradient(180deg, var(--mahogany), #160f0d); }
.section-alt { background: #1d1512; }
.inner { width: min(1120px, 100%); margin: 0 auto; }
.section-head {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-label {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  color: #fff2df;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  line-height: 1.04;
}
.section-title em { color: rgba(234,216,173,0.82); font-style: italic; }
.section-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 18px;
}
.section-copy a, .prose a, .faq-a a, .note a { color: var(--gold-light); }

/* Løpende tekst */
.prose { max-width: 760px; margin: 0 auto; }
.prose p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--gold-light); font-weight: 600; }
.check-list, .num-list {
  list-style: none;
  margin: 8px 0 24px;
  display: grid;
  gap: 12px;
}
.check-list li, .num-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(243,236,226,0.8);
  font-size: 15.5px;
  line-height: 1.65;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.num-list { counter-reset: n; }
.num-list li { counter-increment: n; padding-left: 40px; }
.num-list li::before {
  content: counter(n);
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Punktliste med ikon (som forsiden) */
.feature-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(20px, 3vw, 26px) 4px;
  border-bottom: 1px solid var(--line);
}
.feature-list-item:first-child { border-top: 1px solid var(--line); }
.feature-list-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-list-mark svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feature-list-text h3 {
  color: #fff4e4;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
}
.feature-list-text p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Tidslinje / kjøreplan */
.timeline { max-width: 820px; margin: 0 auto; display: grid; gap: 18px; }
.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(196,169,107,0.14);
}
.timeline-time {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 6px;
}
.timeline-item h3 { color: #fff2df; font-size: 27px; line-height: 1.1; margin-bottom: 6px; }
.timeline-item p { color: var(--muted); line-height: 1.75; font-size: 15px; }
.note {
  max-width: 820px;
  margin: 26px auto 0;
  color: rgba(243,236,226,0.6);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

/* Kort (tips, anledninger) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  border: 1px solid rgba(196,169,107,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  padding: clamp(22px, 3vw, 30px);
}
.card h3 {
  color: #fff2df;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }
a.card { display: block; text-decoration: none; transition: border-color 0.25s ease, transform 0.25s ease; }
a.card:hover { border-color: rgba(234,216,173,0.45); transform: translateY(-4px); }
.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Sammenligningstabell */
.table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid rgba(196,169,107,0.18);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare caption {
  caption-side: bottom;
  padding: 14px 18px;
  text-align: left;
  color: rgba(243,236,226,0.5);
  font-size: 13px;
  line-height: 1.6;
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(196,169,107,0.12);
  font-size: 14.5px;
  line-height: 1.55;
}
.compare thead th {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.compare tbody th { color: #fff2df; font-weight: 500; }
.compare td { color: var(--muted); }
.compare td.yes { color: #d9ffd8; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }

/* To kolonner for/mot */
.pros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

/* Pris */
.price-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(150deg, rgba(75,31,39,0.72), rgba(16,13,11,0.86));
  border: 1px solid rgba(234,216,173,0.22);
  border-radius: 8px;
  padding: clamp(26px, 3.5vw, 36px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.3);
}
.price-card.featured { border-color: rgba(234,216,173,0.5); }
.price-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 {
  color: var(--gold);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.price {
  color: #fff5e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 3.1rem);
  line-height: 0.95;
}
.price small { font-family: "DM Sans", system-ui, sans-serif; font-size: 15px; color: var(--muted); }
.price-request { font-size: clamp(1.7rem, 3vw, 2.1rem); }
.price-note { font-size: 12.5px; color: var(--muted); margin: 8px 0 18px; }
.pkg-list { list-style: none; display: grid; gap: 10px; flex-grow: 1; margin-bottom: 22px; }
.pkg-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243,236,226,0.8);
}
.pkg-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.price-card .btn { align-self: flex-start; min-height: 46px; padding: 0 22px; font-size: 12px; }
.travel {
  margin-top: 26px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(196,169,107,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.travel strong { color: var(--gold-light); font-weight: 600; }

/* ── FAQ (details/summary – fungerer uten JavaScript) ── */
.faq { width: min(820px, 100%); margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(196,169,107,0.14); }
.faq-item:first-child { border-top: 1px solid rgba(196,169,107,0.14); }
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q h3 {
  color: #fff2df;
  font-size: 24px;
  line-height: 1.2;
}
.faq-plus {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.25);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.faq-plus::before { content: "+"; }
.faq-item[open] .faq-plus { background: var(--gold); color: var(--ink); }
.faq-item[open] .faq-plus::before { content: "×"; }
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.faq-a {
  color: var(--muted);
  line-height: 1.8;
  padding: 0 48px 24px 0;
  font-size: 15px;
}

/* ── CTA ── */
.cta {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,169,107,0.16), transparent 60%),
    #131110;
  border-top: 1px solid var(--line);
}
.cta h2 {
  color: #fff2df;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
  max-width: 820px;
  margin: 0 auto 18px;
}
.cta h2 em { color: rgba(234,216,173,0.82); font-style: italic; }
.cta p {
  color: rgba(243,236,226,0.7);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 30px;
}
.cta .hero-actions { justify-content: center; margin-top: 0; }

.related {
  margin-top: 40px;
  font-size: 14px;
  color: rgba(243,236,226,0.6);
  line-height: 1.9;
}
.related a { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: #080605;
  border-top: 1px solid rgba(196,169,107,0.12);
  padding: 46px 20px;
  text-align: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--gold);
  font-style: italic;
  font-size: 28px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 0 auto 20px;
  max-width: 900px;
}
.footer-nav a {
  color: rgba(234,216,173,0.75);
  font-size: 13px;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--gold-light); text-decoration: underline; }
.footer-text {
  color: rgba(226,215,201,0.52);
  font-size: 13px;
  line-height: 1.9;
}
.footer-text a { color: inherit; }

/* ── ANIMASJON (bare når JavaScript kjører) ── */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, a.card { transition: none; }
}

/* ── NETTBRETT ≤ 980px ── */
@media (max-width: 980px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .mock { max-width: 560px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .price-wrap { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* ── MOBIL ≤ 620px ── */
@media (max-width: 620px) {
  .nav { height: 66px; padding: 0 16px; }
  .brand { font-size: 22px; }
  .nav-cta { min-height: 34px; padding: 0 13px; font-size: 11px; }
  .hero { padding: 100px 18px 56px; }
  .hero h1 { font-size: clamp(2.2rem, 10.6vw, 3.1rem); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-highlights li { font-size: 12px; padding: 7px 13px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; padding: 0 18px; }
  .price-card .btn { align-self: stretch; }
  .card-grid, .card-grid.two, .pros { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-time { padding-top: 0; }
  .timeline-item h3 { font-size: 23px; }
  .faq-q h3 { font-size: 20px; }
  .faq-a { padding-right: 0; }
  .compare { min-width: 0; }
  .compare th, .compare td { padding: 12px 10px; font-size: 13.5px; }
  .compare thead th { font-size: 10px; letter-spacing: 0.1em; }
}
