/* ==========================================================================
   MANICH® Diamonds + Fine Jewelry — Morgengave landingpage
   Scandinavian luxury: dyb grøn, champagne, varm creme, meget whitespace.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Fonts */

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-italic-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-var.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------- 2. Tokens */

:root {
  /* Brand */
  --green-900: #0b2a20;
  --green-800: #103528;
  --green-700: #17402f;
  --green-600: #1f4d39;

  --gold: #b08d4f;          /* dekorativ guld — streger, rammer, ikoner */
  --gold-ink: #7e5f27;      /* guld til småtekst på lys baggrund (kontrast) */
  --gold-light: #c9a961;    /* guld på mørk baggrund */
  --champagne: #e4d4b4;

  --cream: #f6f0e4;
  --cream-soft: #faf5ec;
  --off-white: #fdfcf9;
  --sand: #ece3d2;

  --ink: #1c1f1c;
  --ink-soft: #4a514b;
  --ink-faint: #6d746e;

  --line: rgba(28, 31, 28, 0.14);
  --line-soft: rgba(28, 31, 28, 0.08);
  --line-gold: rgba(176, 141, 79, 0.42);
  --line-on-dark: rgba(228, 212, 180, 0.24);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Rytme */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --max: 1240px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------------- 3. Base */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.075rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

::selection {
  background: var(--green-900);
  color: var(--cream);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--green-900);
  color: var(--cream);
  padding: 0.9rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ------------------------------------------------------------ 4. Struktur */

.container {
  width: min(var(--max), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.container--narrow { max-width: 46rem; }
.container--mid { max-width: 62rem; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.section--cream { background: var(--cream-soft); }
.section--sand { background: var(--cream); }

.section--dark {
  background: var(--green-900);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }

/* Mørk sektion, der støder op til en anden mørk sektion */
.section--divided { border-bottom: 1px solid var(--line-on-dark); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 44rem;
}

/* ---------------------------------------------------------- 5. Typografi */

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin: 0 0 1.1rem;
}
.section--dark .eyebrow { color: var(--gold-light); }

.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.eyebrow--rule::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.section-head--center .eyebrow--rule { justify-content: center; }
.section-head--center .eyebrow--rule::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.display-xl {
  font-size: clamp(2.9rem, 1.6rem + 5.6vw, 5.5rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -0.012em;
}

.display-l {
  font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.7rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.008em;
}

.display-m {
  font-size: clamp(1.7rem, 1.25rem + 1.9vw, 2.6rem);
  line-height: 1.16;
  font-weight: 400;
}

.display-s {
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  line-height: 1.25;
  font-weight: 500;
}

.lead {
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
}
.section--dark .lead { color: rgba(246, 240, 228, 0.82); }

.prose { color: var(--ink-soft); max-width: 38rem; }
.section--dark .prose { color: rgba(246, 240, 228, 0.78); }

h2 + .lead,
h2 + .prose,
h3 + .prose,
h3 + .lead,
.display-caps + .prose { margin-top: 1.3rem; }

.statement {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem);
  line-height: 1.24;
  font-style: italic;
  font-weight: 300;
  color: var(--green-800);
}
.section--dark .statement { color: var(--champagne); }
.prose + .statement,
.steps-list + .statement,
.check-list + .statement { margin-top: 2.4rem; }

.fine {
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}
.section--dark .fine { color: rgba(246, 240, 228, 0.6); }

.emphasis {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: 0.01em;
}
.section--dark .emphasis { color: var(--champagne); }

.display-caps {
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-weight: 400;
}

/* Diamant-divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  background: var(--line-gold);
  flex: 1;
}
.divider__gem {
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}
.divider--center { max-width: 12rem; margin-inline: auto; }

/* ------------------------------------------------------------ 6. Knapper */

.btn {
  --btn-bg: var(--green-900);
  --btn-fg: var(--cream);
  --btn-bd: var(--green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.05rem 1.95rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.btn:hover {
  --btn-bg: var(--green-700);
  --btn-bd: var(--green-700);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--green-900);
  --btn-bd: rgba(11, 42, 32, 0.35);
}
.btn--outline:hover {
  --btn-bg: var(--green-900);
  --btn-fg: var(--cream);
  --btn-bd: var(--green-900);
}

.btn--light {
  --btn-bg: var(--cream);
  --btn-fg: var(--green-900);
  --btn-bd: var(--cream);
}
.btn--light:hover {
  --btn-bg: var(--champagne);
  --btn-bd: var(--champagne);
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--cream);
  --btn-bd: var(--line-on-dark);
}
.btn--outline-light:hover {
  --btn-bg: rgba(246, 240, 228, 0.1);
  --btn-bd: var(--champagne);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}
.btn-row--center { justify-content: center; }

/* Tekstlink med guldstreg */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--green-800);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line-gold);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.link::after {
  content: "→";
  font-size: 0.9rem;
  letter-spacing: 0;
  transition: transform 0.35s var(--ease);
}
.link:hover { border-color: var(--gold); color: var(--green-900); }
.link:hover::after { transform: translateX(5px); }

.section--dark .link { color: var(--champagne); border-color: var(--line-on-dark); }
.section--dark .link:hover { color: var(--cream); border-color: var(--gold-light); }

/* -------------------------------------------------------------- 7. Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-900);
  border-bottom: 1px solid rgba(228, 212, 180, 0.14);
}

.site-header__inner {
  width: min(var(--max), 100% - (var(--gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.75rem;
}

.wordmark {
  display: inline-block;
  text-decoration: none;
  color: var(--cream);
  line-height: 1;
  padding: 0.35rem 0;
}
.wordmark__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-indent: 0.19em;
}
.wordmark__name sup {
  font-size: 0.45em;
  top: -0.85em;
  letter-spacing: 0;
}
.wordmark__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--gold-light);
  margin-top: 0.42rem;
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.nav__list a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(246, 240, 228, 0.82);
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__list a:hover,
.nav__list a[aria-current="page"] {
  color: var(--cream);
  border-color: var(--gold-light);
}

.nav__cta {
  padding: 0.8rem 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: 0;
  padding: 0.6rem 0;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle__bars {
  position: relative;
  width: 20px;
  height: 9px;
  flex: none;
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    background: var(--green-900);
    border-bottom: 1px solid var(--line-on-dark);
    padding: 0.5rem var(--gutter) 2rem;
    transform-origin: top;
  }
  .nav[hidden] { display: none; }
  .nav__list {
    display: block;
  }
  .nav__list li { border-bottom: 1px solid rgba(228, 212, 180, 0.12); }
  .nav__list a {
    display: block;
    padding: 1.05rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    border: 0;
  }
  .nav__cta {
    display: flex;
    margin-top: 1.6rem;
    width: 100%;
    padding: 1.05rem 1.5rem;
    font-size: 0.72rem;
  }
}

/* ---------------------------------------------------------------- 8. Hero */

.hero {
  position: relative;
  background: var(--green-900);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 78% 18%, rgba(31, 77, 57, 0.55), transparent 62%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.hero__copy { max-width: 36rem; }

.hero__eyebrow {
  color: var(--gold-light);
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 0.15em;
}

.hero__tagline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.05rem + 1.9vw, 2.5rem);
  line-height: 1.14;
  font-weight: 300;
  font-style: italic;
  color: var(--champagne);
  margin: 0 0 1.9rem;
}

.hero__body {
  color: rgba(246, 240, 228, 0.84);
  font-size: clamp(1.02rem, 0.98rem + 0.25vw, 1.14rem);
  max-width: 30rem;
}
.hero__body strong {
  font-weight: 400;
  color: var(--cream);
}

/* Hero-medie: masterfilmen i 9:16 med juveleren som indlagt portræt.
   Filmen vises aldrig bredere end sine egne 720 px — den skaleres ikke op. */
.hero__media {
  position: relative;
  margin: 0;
  justify-self: end;
  width: 100%;
  max-width: 26rem;
  padding-left: clamp(2.2rem, 4vw, 3.6rem);
}

.hero__film { position: relative; }
.hero__film::after {
  content: "";
  position: absolute;
  inset: -0.85rem;
  border: 1px solid rgba(228, 212, 180, 0.32);
  pointer-events: none;
}
.hero__film-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--green-800);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

/* Juveleren beholder sin plads i heroen — samme greb som .gift__media-sub */
.hero__portrait {
  position: absolute;
  left: 0;
  bottom: clamp(2.2rem, 5vw, 3.6rem);
  z-index: 1;
  width: 42%;
  margin: 0;
}
.hero__portrait img {
  width: 100%;
  aspect-ratio: 85 / 91;
  object-fit: cover;
  object-position: 50% 50%;
  border: 1px solid rgba(228, 212, 180, 0.3);
  box-shadow: 0 0 0 9px var(--green-900), 0 22px 48px rgba(0, 0, 0, 0.42);
}

.hero__caption {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Trust-strip */
.trust {
  border-top: 1px solid rgba(228, 212, 180, 0.16);
  position: relative;
}
.trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-block: 1.5rem;
}
.trust__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 240, 228, 0.74);
}
.trust__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
  flex: none;
}

/* ----------------------------------------------------- 9. Tre veje (kort) */

.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
}

.route {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1px solid var(--line-soft);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.route:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
}

.route__media {
  position: relative;
  overflow: hidden;
}
.route__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.route:hover .route__media img { transform: scale(1.04); }

.route__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
}

.route__label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 0.9rem;
}

.route h3 {
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.route p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 1.4rem;
}

.route__specs {
  margin: 0 0 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}
.route__specs li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-faint);
  margin-bottom: 0.45rem;
}
.route__specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
}

.route__cta { margin-top: auto; align-self: flex-start; }

/* ------------------------------------------------------- 10. Problemblokke */

.problem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.problem__num {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 2rem + 5vw, 6rem);
  line-height: 0.8;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.section--dark .problem__num { -webkit-text-stroke-color: var(--gold-light); }

.problem h2 { margin-bottom: 0.5rem; }

.problem__answer {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.1rem);
  line-height: 1.1;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-ink);
  margin: 0 0 1.8rem;
}
h2 + .problem__answer { margin-top: 0.5rem; }
.section--dark .problem__answer { color: var(--champagne); }

.problem__aside {
  border: 1px solid var(--line-gold);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--off-white);
}
.section--dark .problem__aside {
  background: rgba(246, 240, 228, 0.05);
  border-color: var(--line-on-dark);
}
.problem__aside h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* Nummereret liste (3 måder / metoder) */
.steps-list { counter-reset: steplist; }
.prose + .steps-list,
.lead + .steps-list { margin-top: 2.2rem; }
.steps-list > li {
  counter-increment: steplist;
  position: relative;
  padding: 1.5rem 0 1.5rem 3.4rem;
  border-bottom: 1px solid var(--line-soft);
}
.steps-list > li:first-child { padding-top: 0; }
.steps-list > li:first-child::before { top: 0; }
.steps-list > li:last-child { border-bottom: 0; padding-bottom: 0; }
.steps-list > li::before {
  content: counter(steplist, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold-ink);
  letter-spacing: 0.06em;
}
.section--dark .steps-list > li::before { color: var(--gold-light); }
.section--dark .steps-list > li { border-color: var(--line-on-dark); }
.steps-list h3,
.steps-list h4 {
  font-size: 1.28rem;
  line-height: 1.3;
  margin-bottom: 0.45rem;
}
.steps-list p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin: 0;
}
.section--dark .steps-list p { color: rgba(246, 240, 228, 0.76); }

/* Note-boks (leveringstid m.m.) */
.note {
  border-left: 1px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1.3rem;
  margin: 1.8rem 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
}
.section--dark .note {
  border-color: var(--gold-light);
  color: rgba(246, 240, 228, 0.8);
}

/* ------------------------------------------------------- 11. Gaveløfte */

.gift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.gift__media {
  position: relative;
  margin: 0;
  padding-bottom: clamp(2rem, 5vw, 4rem);
  padding-right: clamp(2rem, 5vw, 4rem);
}
.gift__media img { box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34); }

.gift__media-main { width: 74%; }
.gift__media-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  border: 1px solid rgba(228, 212, 180, 0.3);
  box-shadow: 0 0 0 10px var(--green-900), 0 26px 60px rgba(0, 0, 0, 0.34);
}

.gift__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--line-on-dark);
  padding: 0.55rem 1.1rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.6rem;
}
.gift__badge::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
}

.gift__points {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line-on-dark);
}
.gift__points li {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.7rem;
  border-bottom: 1px solid var(--line-on-dark);
  font-size: 0.98rem;
  color: rgba(246, 240, 228, 0.82);
}
.gift__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.85rem;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  transform: rotate(45deg);
}
.gift__points strong {
  font-weight: 400;
  color: var(--cream);
}

/* ------------------------------------------------- 12. Split-sektioner */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split--wide-left { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.split--wide-right { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }

.split__media { position: relative; margin: 0; }
.split__media img { width: 100%; }
.split__media--framed::after {
  content: "";
  position: absolute;
  inset: -0.8rem;
  border: 1px solid var(--line-gold);
  pointer-events: none;
}
.section--dark .split__media--framed::after { border-color: var(--line-on-dark); }

.figure-caption {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Highlight-liste med guldflueben */
.check-list { margin: 1.8rem 0 0; }
.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 2rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 11px;
  height: 6px;
  border-left: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(-45deg);
}
.section--dark .check-list li { color: rgba(246, 240, 228, 0.82); }
.section--dark .check-list li::before {
  border-color: var(--gold-light);
}

.check-list--cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0 2.5rem;
}
.check-list--lg li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  padding-block: 0.75rem;
}
.check-list--lg li::before { top: 1.35em; }

/* --------------------------------- 13. Portræt, citat, galleri og film */

/* Citat fra juveleren */
.quote {
  margin: 2.2rem 0 0;
  border-left: 1px solid var(--gold);
  padding: 0.1rem 0 0.1rem clamp(1.2rem, 2.5vw, 2rem);
  max-width: 34rem;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.1rem + 1.15vw, 1.95rem);
  line-height: 1.34;
  font-style: italic;
  font-weight: 300;
  color: var(--green-800);
}
.section--dark .quote { border-color: var(--gold-light); }
.section--dark .quote p { color: var(--champagne); }

/* Navn + faglig titel */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.1rem;
  margin: 1.7rem 0 0;
}
.byline__name {
  position: relative;
  padding-left: 1.15rem;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--green-900);
}
.byline__name::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.byline__role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.section--dark .byline__name { color: var(--cream); }
.section--dark .byline__name::before { background: var(--gold-light); }
.section--dark .byline__role { color: var(--gold-light); }
.byline + .prose { margin-top: 1.7rem; }

/* Fremhævet prisniveau (Custom Design fra 5.000 kr.) */
.price-flag {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.2rem;
  margin: 1.9rem 0 0;
  padding: 0.95rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.15rem + 1vw, 1.95rem);
  line-height: 1.2;
  color: var(--green-900);
}
.price-flag small {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.section--dark .price-flag {
  color: var(--cream);
  border-color: var(--gold-light);
}
.section--dark .price-flag small { color: var(--gold-light); }
.price-flag + .prose { margin-top: 1.7rem; }

/* Lille indrammet påmindelse (fx størrelse) */
.cue {
  margin-top: 2.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line-gold);
  background: var(--off-white);
}
.cue p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
  line-height: 1.25;
  font-style: italic;
  font-weight: 300;
  color: var(--green-800);
  margin-bottom: 1.1rem;
}
.section--dark .cue {
  background: rgba(246, 240, 228, 0.05);
  border-color: var(--line-on-dark);
}
.section--dark .cue p { color: var(--champagne); }

/* Galleri (showroom, GIA-materiale, mastersten) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
}
.gallery figure {
  margin: 0;
  position: relative;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.gallery figcaption { margin-top: 0.9rem; }

/* Filmsektion — lyd er fravalgt, afspilning styres af manich.js */
.film {
  margin: 0 auto;
  max-width: 40rem;
}
.film__frame {
  position: relative;
}
.film__frame::after {
  content: "";
  position: absolute;
  inset: -0.85rem;
  border: 1px solid var(--line-on-dark);
  pointer-events: none;
}
.film__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--green-800);
}
.film figcaption { text-align: center; margin-top: 1.9rem; }
.section--dark .figure-caption { color: rgba(246, 240, 228, 0.6); }

/* Portrætfilm (9:16) — MANICHs kampagnefilm. Vises aldrig bredere end
   kildens 720 px, så de ikke skaleres op. Afspilning styres af manich.js. */
.film-block { margin-top: clamp(3.5rem, 7vw, 5.5rem); }
.film-block__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}
.film-block__head .eyebrow--rule { justify-content: center; }
.film-block__head .eyebrow--rule::after {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.8rem, 4vw, 3.2rem);
  max-width: 46rem;
  margin-inline: auto;
}

.film-portrait {
  margin: 0;
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}
.film-portrait__frame { position: relative; }
.film-portrait__frame::after {
  content: "";
  position: absolute;
  inset: -0.7rem;
  border: 1px solid var(--line-gold);
  pointer-events: none;
}
.section--dark .film-portrait__frame::after { border-color: var(--line-on-dark); }
.film-portrait__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: var(--green-800);
}
.film-portrait figcaption { text-align: center; margin-top: 1.6rem; }

/* Afsluttende linje under filmene */
.finale-close {
  text-align: center;
  max-width: 44rem;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}

/* Pause/afspil til hero-filmen. Knappen vises kun, når JavaScript er aktivt —
   uden JS beholder filmen sine indbyggede kontroller, så den stadig kan
   styres. Ikonet tegnes i CSS som resten af sidens ornamenter. */
.film-toggle { display: none; }
.js .film-toggle {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  background: rgba(11, 42, 32, 0.7);
  border: 1px solid rgba(228, 212, 180, 0.34);
  color: var(--cream);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.js .film-toggle:hover {
  background: rgba(11, 42, 32, 0.92);
  border-color: var(--gold-light);
}

.film-toggle__icon {
  position: relative;
  width: 9px;
  height: 11px;
  flex: none;
}
.film-toggle__icon::before,
.film-toggle__icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-light);
}
.film-toggle__icon::before { left: 0; }
.film-toggle__icon::after { right: 0; }

/* aria-pressed="false" = filmen holder pause → knappen viser afspil */
.film-toggle[aria-pressed="false"] .film-toggle__icon::before {
  left: 1px;
  width: 0;
  height: 0;
  background: none;
  border-left: 9px solid var(--gold-light);
  border-top: 5.5px solid transparent;
  border-bottom: 5.5px solid transparent;
}
.film-toggle[aria-pressed="false"] .film-toggle__icon::after { display: none; }

/* --------------------------------------------------------- 14. Proces */

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}
.process__step {
  padding: 2.4rem 1.6rem 0 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.process__step:last-child { border-right: 0; padding-right: 0; }
.process__step:not(:first-child) { padding-left: 1.6rem; }

.process__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 300;
  color: var(--gold-ink);
  margin-bottom: 1.1rem;
}
.section--dark .process__num { color: var(--gold-light); }

.process__step h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.section--dark .process__step h3 { color: var(--cream); }

.process__step p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-faint);
  margin: 0;
}
.section--dark .process__step p { color: rgba(246, 240, 228, 0.7); }
.section--dark .process,
.section--dark .process__step { border-color: var(--line-on-dark); }

/* --------------------------------------------------------- 15. Budget */

.tiers {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}
.tiers__row {
  display: grid;
  grid-template-columns: minmax(11rem, 0.4fr) 1fr auto;
  gap: 1rem clamp(1.5rem, 4vw, 3.5rem);
  align-items: baseline;
  padding: clamp(1.5rem, 2.6vw, 2.1rem) 0;
  border-bottom: 1px solid var(--line);
}
.tiers__price {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.75rem);
  font-weight: 400;
  color: var(--green-800);
  white-space: nowrap;
}
.tiers__desc {
  color: var(--ink-soft);
  font-size: 0.99rem;
}
.tiers__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-ink);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.tiers__link:hover { border-color: var(--gold); }

/* ------------------------------------------------------------- 16. FAQ */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.faq__item > div { padding: clamp(1.5rem, 2.4vw, 2rem) 0; }
.faq__item p {
  color: var(--ink-soft);
  font-size: 0.99rem;
  max-width: 44rem;
}

/* -------------------------------------------------------- 17. Slut-CTA */

.final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 90% at 50% 0%, rgba(31, 77, 57, 0.6), transparent 70%);
  pointer-events: none;
}
.final > * { position: relative; }
.final h2 { margin-bottom: 1.1rem; }

/* ---------------------------------------------------------- 18. Footer */

.site-footer {
  background: var(--green-900);
  color: rgba(246, 240, 228, 0.72);
  border-top: 1px solid var(--line-on-dark);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.9rem;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.8rem;
  border-bottom: 1px solid var(--line-on-dark);
}

.footer__tagline {
  margin-top: 1.6rem;
  max-width: 24rem;
  color: rgba(246, 240, 228, 0.62);
  font-size: 0.92rem;
}

.footer h2 {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.3rem;
}

.footer__links li { margin-bottom: 0.75rem; }
.footer__links a {
  text-decoration: none;
  color: rgba(246, 240, 228, 0.78);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--cream); border-color: var(--gold-light); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding-top: 1.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(246, 240, 228, 0.5);
}
.footer__bottom a { color: inherit; }

/* --------------------------------------------------- 19. Reveal/motion */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------ 20. Responsive */

@media (max-width: 64rem) {
  .routes { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step {
    padding: 2rem 1.4rem 2rem 0;
    border-bottom: 1px solid var(--line);
  }
  .process__step:nth-child(2n) { border-right: 0; padding-right: 0; }
  .process__step:nth-child(odd) { padding-left: 0; }
  .process__step:last-child { border-bottom: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 56rem) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__copy { max-width: none; }
  .hero__media {
    justify-self: start;
    max-width: 24rem;
    margin-left: 0.85rem;
  }
  .problem,
  .gift,
  .split,
  .split--wide-left,
  .split--wide-right { grid-template-columns: 1fr; }
  .gift__media { order: -1; }
  .gift__media-main { width: 70%; }
  .gift__media-sub { width: 42%; }
  .tiers__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .tiers__link { justify-self: start; }
}

@media (max-width: 40rem) {
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .route__cta { width: 100%; }
  .process { grid-template-columns: 1fr; }
  .process__step {
    padding: 1.8rem 0;
    border-right: 0;
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 0 1rem;
  }
  .process__step:nth-child(2n) { padding-right: 0; }
  .process__step:not(:first-child) { padding-left: 0; }
  .process__num { grid-row: span 2; margin-bottom: 0; font-size: 2rem; }
  .gift__media { padding-right: 2.5rem; padding-bottom: 3rem; }
  .gift__media-main { width: 78%; }
  .gift__media-sub { width: 50%; box-shadow: 0 0 0 7px var(--green-900), 0 18px 40px rgba(0, 0, 0, 0.34); }
  .footer__top { grid-template-columns: 1fr; }
  .trust__list { gap: 0.85rem; }
  .trust__list li { font-size: 0.64rem; }
}
