/*
  Stylesheet til præsentationsportfolio (1. semester).
  Layout og struktur er opbygget med mobile first og BEM-navngivning.
  Enkelte løsninger (flex/grid, sticky elementer) er inspireret af
  dokumentation fra MDN Web Docs og CSS-Tricks og tilpasset projektets design.
  Kilder:
  https://developer.mozilla.org/
  https://css-tricks.com/
*/

/* ---------- VARIABLER & GLOBALT ---------- */

:root {
  /* Blå må gerne eksistere – men vi bruger den KUN som subtil accent */
  --accent-blue: #000066;

  --color-bg: #f2e1c5;
  --color-grid: #ddc6a1;
  --color-dark: #111111;
  --color-black: #000000;
  --color-accent: #df7c3b; /* orange */
  --color-muted: #9a8f80;

  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;

  --page-width: 1120px;
}

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

html { scroll-behavior: smooth; }

body.page {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-dark);
  background-color: var(--color-bg);
  background-image:
    linear-gradient(var(--color-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ---------- HEADER ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(242, 225, 197, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header--scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  text-decoration: none;
  color: var(--color-dark);
  line-height: 1.1;
}

.header__logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.header__logo-sub {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--color-muted);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav__link {
  position: relative;
  text-decoration: none;
  color: var(--color-dark);
  padding-bottom: 0.15rem;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: var(--color-accent); /* ORANGE som før */
  transition: width 0.15s ease;
}

.nav__link--active::after,
.nav__link:hover::after { width: 100%; }

/* ---------- KNAPPER ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  border-radius: 2px;
  border: 1px solid var(--color-dark);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease,
              background-color 0.1s ease, color 0.1s ease;
}

.button--filled {
  background-color: var(--color-black);
  color: var(--color-bg);
}

.button--filled:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

.button--outline {
  background-color: transparent;
  color: var(--color-dark);
}

.button--outline:hover {
  background-color: var(--color-dark);
  color: var(--color-bg);
}

/* ---------- HERO ---------- */

.hero { padding: 4rem 1.5rem 4rem; }

.hero__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3.2rem;
  align-items: center;
}

.hero__content { max-width: 640px; }

.hero__title { margin: 0 0 1rem; }

.hero__title-main {
  font-family: var(--font-serif);
  font-size: 3rem;
}

.hero__title-sub {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero__tagline {
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.hero__text {
  margin: 0 0 1.5rem;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* =========================================
   HERO FOTO – LØST PRINT + GAMMELDAGS NÅL
   ========================================= */

.hero__image-wrapper{
  position: relative;
  align-self: flex-start;
  margin-left: auto;

  width: 100%;
  max-width: 300px;

  padding: 0;
  background: transparent;
  border: none;

  transform: rotate(-2deg);

  box-shadow:
    0 24px 45px rgba(0,0,0,0.22),
    0 6px 14px rgba(0,0,0,0.14);
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* LILLE GAMMELDAGS KNAPPENÅL (METAL) */
.hero__image-wrapper::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 52%;
  transform: translateX(-50%);

  width: 14px;
  height: 14px;
  border-radius: 50%;

  background:
    radial-gradient(circle at 30% 30%,
      #f5f5f5 0%,
      #cfcfcf 40%,
      #9c9c9c 70%,
      #6f6f6f 100%
    );

  border: 1px solid rgba(0,0,0,0.45);

  box-shadow:
    0 3px 6px rgba(0,0,0,0.35);

  z-index: 3;
}

/* lille hul/skygge i papiret */
.hero__image-wrapper::after{
  content: "";
  position: absolute;
  top: 2px;
  left: 52%;
  transform: translateX(-50%);

  width: 6px;
  height: 4px;
  border-radius: 50%;

  background: rgba(0,0,0,0.35);
  filter: blur(2px);

  z-index: 2;
}

/* ---------- GENEREL SEKTION ---------- */

.section { padding: 4rem 1.5rem 4.6rem; }

.section--light { background-color: rgba(246, 231, 207, 0.92); }

.section__heading {
  max-width: var(--page-width);
  margin: 0 auto 2.2rem;
  padding: 0 1.5rem;
  text-align: left;

  /* ✅ vigtigt: INGEN ekstra venstre-padding til blå linje */
}

.section__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.4rem;
}

.section__intro {
  margin: 0.6rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.projects-cta{
  max-width: var(--page-width);
  margin: 2rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
}

/* ---------- POST-IT KORT (CLEAN) ---------- */

.card-grid {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.card {
  background-color: #EFE7D3;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.15rem 1.15rem 1.35rem;
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
  position: relative;
}

.card--postit::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  width: 60px;
  height: 18px;

  background-color: rgba(223, 124, 59, 0.85);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.25) 0px,
    rgba(255,255,255,0.25) 4px,
    transparent 4px,
    transparent 8px
  );

  border-radius: 2px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.18);
}

.card--postit::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 6px;
  opacity: 0.65;

  background-image: repeating-linear-gradient(
    -45deg,
    rgba(239,239,239,0.9) 0px,
    rgba(239,239,239,0.9) 3px,
    rgba(220,220,220,0.7) 3px,
    rgba(220,220,220,0.7) 6px
  );

  clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 85% 60%, 70% 100%, 55% 55%, 40% 100%, 25% 60%, 10% 100%, 0% 60%);
  pointer-events: none;
}

.card__overtitle {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin: 0 0 0.4rem;
}

.card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.card__note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ---------- PROJEKTER (FORSIDE GRID) ---------- */

.project-grid {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.4rem;
}

.project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.project__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.project__category {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent); /* ✅ tilbage til orange */
}

.project__image {
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 0.4rem 0 0.8rem;
  border-radius: 4px;
}

.project__video{
  width: 100%;
  display: block;
  border-radius: 4px;
  margin: 0.4rem 0 0.8rem;
  background: #000;
}

.project__meta {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ---------- PROJECT SLIDER (SANGHÆFTER) ---------- */

.project-slider {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin: 1.1rem 0 0.6rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.project-slider__item {
  flex: 0 0 55%;
  max-width: 220px;
  background: #f9f2e3;
  border-radius: 4px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.08);
  scroll-snap-align: start;
}

.project-slider__image {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.project-slider__caption {
  margin: 0;
  padding: 0.4rem 0.55rem 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.project-slider__hint {
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.project-slider::-webkit-scrollbar { height: 6px; }
.project-slider::-webkit-scrollbar-track { background: transparent; }
.project-slider::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 3px;
}

/* ---------- PROJEKTER: KATEGORI-NAV + CASES ---------- */

.project-nav {
  max-width: var(--page-width);
  margin: 0 auto 2.2rem;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.project-nav__link {
  text-decoration: none;
  color: var(--color-dark);
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.35);
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
}

.project-nav__link:hover {
  background: rgba(0,0,0,0.06);
}

.project-section {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.project-section + .project-section { margin-top: 3.2rem; }

.project-section__title {
  margin: 0 0 1.2rem;
  font-family: var(--font-serif);
  font-size: 1.9rem;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
}

.case__title { margin: 0 0 0.35rem; }

.case__tags {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.case__image {
  width: 100%;
  display: block;
  border-radius: 4px;
  margin: 0.3rem 0 1rem;
  object-fit: cover;
}

.case__details p {
  margin: 0 0 0.6rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---------- OM MIG ---------- */

.about {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.8rem;
  align-items: flex-start;
}

.about__subtitle {
  margin: 1.2rem 0 0.45rem;
  font-size: 1rem;
}

.about__text p {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about__photo {
  width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

/* ---------- ERFARING & SKILLS ---------- */

.experience {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  gap: 2.8rem;
}

.experience__list {
  border-left: 1px solid rgba(0,0,0,0.15);
  padding-left: 1.6rem;
}

.experience-item { margin-bottom: 1.8rem; position: relative; }

.experience-item::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.experience-item__year {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin: 0 0 0.2rem;
}

.experience-item__title { margin: 0 0 0.3rem; font-weight: 600; }

.experience-item__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.experience-item--secondary { opacity: 0.85; }

.skills__title {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 1.6rem;
  margin-bottom: 1.5rem;
}

.skill__label { margin: 0 0 0.4rem; font-size: 0.9rem; }

.skill__bar {
  position: relative;
  width: 100%;
  height: 3px;
  background-color: rgba(0,0,0,0.1);
}

.skill__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  background-color: var(--color-accent);
}

.skills__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 26rem;
}

/* ---------- KONTAKT ---------- */

.contact {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.contact__info p { margin: 0 0 0.6rem; font-size: 0.95rem; }
.contact__info a { color: var(--color-dark); }

.contact__form { display: grid; gap: 0.9rem; }

.contact__field { display: flex; flex-direction: column; gap: 0.25rem; }

.contact__field label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact__field input,
.contact__field textarea {
  border: 1px solid rgba(0,0,0,0.2);
  padding: 0.55rem 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  background-color: rgba(255,255,255,0.85);
}

.contact__field textarea { resize: vertical; }
.contact__submit { justify-self: flex-start; }

/* ---------- FOOTER ---------- */

.footer {
  padding: 1.6rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ---------- RESPONSIV ---------- */

.hero__image-wrapper {
  position: relative;
  align-self: flex-start;
  margin-left: auto;

  width: 100%;
  max-width: 380px;
  margin-top: 1.5rem;

  padding: 0;
  background: none;
  border-radius: 12px;

  transform: rotate(-2deg);

  box-shadow:
    0 12px 28px rgba(0,0,0,0.18),
    0 4px 10px rgba(0,0,0,0.12);
}

/* ---------- OM MIG – FINPUDS ---------- */

.about--spaced {
  margin-bottom: 4rem;
}

.about {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about__text--narrow {
  max-width: 520px;
}

.about__lead {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about__images {
  display: grid;
  gap: 1.6rem;
}

.about__image {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.about--sport {
  margin-top: 4rem;
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__images { order: -1; }
}

/* ---------- CASE: GÅSETORVET ---------- */

.case--large { padding-top: 2rem; }

.case__header { margin-bottom: 1.2rem; }

.case__subtitle {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.case__intro {
  max-width: 600px;
  margin-bottom: 1.6rem;
}

.case-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.case-block + .case-block { margin-top: 3rem; }

.case-block__title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.case-block__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.case-block__image {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.case-block__text p {
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .case-facts { grid-template-columns: 1fr; }
  .case-block__grid { grid-template-columns: 1fr; }
}

.case-block__video {
  width: 100%;
  display: block;
  border-radius: 12px;
  background: #000;
}

/* ---------- CASE: GÅSETORVET – NARROW + LUFT ---------- */

.case--narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.2rem 2.2rem 2.6rem;
}

.case__intro { max-width: 62ch; }

.case-facts {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-facts li { line-height: 1.5; }

.case-block__grid { gap: 2.4rem; }

.case-block__image,
.case-block__video { border-radius: 14px; }

@media (max-width: 900px) {
  .case--narrow { padding: 1.6rem 1.3rem 2rem; }
  .case__intro { max-width: none; }
}

/* ---------- TRÆDESIGN GALLERI ---------- */

.case-block__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.case-block__gallery img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .case-block__gallery { grid-template-columns: 1fr; }
}

/* OM MIG: gør billedkolonnen smallere og billederne mindre */
.about{ grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.85fr); }

.about__images{
  max-width: 430px;
  margin-left: auto;
}

.about__image{ aspect-ratio: 16 / 10; }

.about__image {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.about__images { gap: 1.2rem; }

/* ==================================================
   MOBIL FIRST – FINPUDS (projekter + om mig)
   ================================================== */

.project-grid { gap: 1.2rem; }

.project.card { padding: 0.9rem; }

.project__image,
.case__image { margin-bottom: 0.6rem; }

.card__text { font-size: 0.9rem; line-height: 1.5; }

.about,
.about--sport {
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.about__image { border-radius: 12px; }

.about__text { font-size: 0.92rem; }

.about__lead { font-size: 1rem; }

@media (min-width: 768px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .project.card { padding: 1.1rem; }

  .about,
  .about--sport {
    grid-template-columns: 1.3fr 1fr;
    gap: 2.4rem;
  }

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

@media (min-width: 1100px) {
  .project-grid { gap: 2.2rem; }
  .project.card { padding: 1.2rem; }
  .about__text { font-size: 0.95rem; }
}

/* ==================================================
   PROJEKTSIDE – MERE LUFT + MINDRE BOKSE
   ================================================== */

.project-section { margin-bottom: 4rem; }

.case-grid { gap: 2.8rem; }

.case.card { padding: 1.2rem; }

.case__image,
.case-block__image,
.case-block__video { margin-bottom: 0.8rem; }

.case__details p,
.case-block__text p {
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .case-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .case.card { padding: 1rem; }
  .project-section { margin-bottom: 3rem; }
}

@media (min-width: 1100px) {
  .case-grid { gap: 3.2rem; }
  .case.card { padding: 1.4rem; }
}

/* ---------- GALLERI ---------- */

.project__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 600px) {
  .project__gallery { grid-template-columns: repeat(2, 1fr); }
}

.project__gallery img {
  width: 100%;
  max-width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== Univers page (scroll + bog-agtig) ===== */

html, body { height: auto; }

.page--universe{
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

.page--universe.page{
  overflow-x: hidden;
  overflow-y: auto;
}

.univers__cover{
  padding: 48px 24px 18px;
  display: grid;
  place-items: center;
}

.univers__cover-inner{
  width: min(980px, 92vw);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

.univers__kicker { letter-spacing: .14em; text-transform: uppercase; opacity:.75; }
.univers__title { font-size: clamp(2rem, 4vw, 3rem); margin: 10px 0 8px; }
.univers__subtitle { opacity:.9; line-height:1.5; max-width: 70ch; }

.univers__btn{
  display:inline-block;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.65);
  color: inherit;
  text-decoration:none;
}

.book__tabs{
  display:flex;
  gap:10px;
  justify-content:center;
  padding: 10px 16px 18px;
  position: sticky;
  top: 90px;
  z-index: 5;
  background: rgba(242, 225, 199, 0.65);
  backdrop-filter: blur(6px);
}

.tab{
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.55);
  padding: 10px 12px;
  border-radius: 999px;
  cursor:pointer;
}
.tab.is-active{ background: rgba(255,255,255,0.85); }

.book{
  padding: 10px 24px 64px;
  display: grid;
  place-items: center;
}

.book__frame{
  width: min(1100px, 94vw);
  border-radius: 26px;
  padding: 14px;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 60px rgba(0,0,0,0.12);
  position: relative;
}

.book__controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 10px;
}

.book__btn{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.8);
  cursor:pointer;
}

.book__counter{ opacity:.8; }

.spread{
  position: relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow:hidden;
  min-height: 520px;
  background: #f4f0e8;
}

@media (max-width: 820px){
  .spread{ grid-template-columns: 1fr; }
  .sheet--left{ display:none; }
  .spine{ display:none; }
}

.sheet{
  position:relative;
  background:#f4f0e8;
}

.sheet::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(0,0,0,0.06), transparent 60%),
    radial-gradient(700px 400px at 80% 70%, rgba(0,0,0,0.05), transparent 60%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 1px, transparent 2px, transparent 6px);
  opacity:.55;
  pointer-events:none;
}

.pagecard__img img{
  width:100%;
  height:100%;
  display:block;
  object-fit: contain;
}

.pagecard__text{
  padding: 10px 14px 14px;
  font-size: 0.95rem;
  opacity: .85;
}

.spine{
  position:absolute;
  top:0; bottom:0;
  left: calc(50% - 10px);
  width: 20px;
  background: linear-gradientgradient(90deg, rgba(0,0,0,0.12), rgba(0,0,0,0.04), rgba(0,0,0,0.12));
  opacity:.4;
}

/* Univers teaser – force "rigtig boks" + klikbar card */
.univers-teaser__card--link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.univers-teaser__card{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}

@media (max-width: 820px){
  .univers-teaser__card{ grid-template-columns: 1fr; }
}

.univers-teaser__thumbs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.univers-teaser__thumbs img{
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
}

.univers-teaser{
  padding: 34px 16px !important;
}

.univers-teaser__card.univers-teaser__card--link{
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  gap: 18px !important;
  align-items: center !important;

  max-width: 980px !important;
  margin: 0 auto !important;

  padding: 22px !important;
  border-radius: 22px !important;

  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12) !important;

  text-decoration: none !important;
  color: inherit !important;
}

.univers-teaser__card.univers-teaser__card--link:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.14);
}

@media (max-width: 820px){
  .univers-teaser__card.univers-teaser__card--link{
    grid-template-columns: 1fr !important;
  }
}

.univers-teaser__card *{ text-decoration: none !important; }

.univers-teaser__cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.7);
  font-weight: 600;
}

.univers-teaser__card--link:hover .univers-teaser__cta{
  background: rgba(255,255,255,0.92);
}

@media (max-width: 768px) {
  section { padding: 2rem 1rem; }
  .container { padding: 0 1rem; }
  .project-card { margin-bottom: 1.5rem; }
}

body { font-size: 16px; line-height: 1.6; }
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
p { max-width: 65ch; }

.case-feature { margin-top: 2rem; }

/* ==================================================
   VISUELLE FORBEDRINGER – PROJEKTSIDE (CASES)
   ================================================== */

.case-grid { gap: 3rem; }
.project-section + .project-section { margin-top: 4rem; }

.case.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.case__tags {
  opacity: 0.75;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  margin: 0 0 1rem;
}

.case__image { aspect-ratio: 4 / 3; object-fit: cover; }

.case-feature { margin-top: 2.5rem; }

@media (prefers-reduced-motion: reduce) {
  .case.card { transition: none; }
  .case.card:hover { transform: none; }
}

@media (max-width: 768px) {
  .case-grid { gap: 2.2rem; }
  .project-section + .project-section { margin-top: 3rem; }
}

/* ==================================================
   OM MIG – BILLEDER (3 stk)
   ================================================== */

.about-images--three{
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.hang{
  position: relative;
  background: rgba(255,255,255,0.55);
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  transform: rotate(-1deg);
}

.hang:nth-child(2){ transform: rotate(1deg); }
.hang:nth-child(3){ transform: rotate(-0.6deg); }

.hang img{
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.hang::before{
  content:"";
  position:absolute;
  top:-8px;
  left:50%;
  transform:translateX(-50%);
  width:14px;
  height:14px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, #fff, #cfcfcf 60%, #8f8f8f);
  border:1px solid rgba(0,0,0,0.25);
  box-shadow:0 6px 12px rgba(0,0,0,0.35);
}

.hang::after{
  content:"";
  position:absolute;
  top:6px;
  left:50%;
  transform:translateX(-50%);
  width:6px;
  height:4px;
  border-radius:50%;
  background:rgba(0,0,0,0.3);
  filter:blur(2px);
}

@media (max-width: 900px){
  .about-images--three{ grid-template-columns: 1fr; }
}

/* ==================================================
   OM MIG – ASIDE (idé 1)
   ================================================== */

.about-block{
  max-width: var(--page-width);
  margin: 0 auto 4rem;
  padding: 0 1.5rem;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.2rem 3rem;
  align-items: start;
}

.about-block .about__text{ grid-column: 1; }
.about-block .about-aside{ grid-column: 2; }
.about-block .about-images{ grid-column: 1 / -1; }

.about-aside{
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);

  /* ✅ ingen blå kant */
}

.about-aside__title{
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.about-aside__list{
  margin: 0;
  padding-left: 1.1rem;
}

.about-aside__list li{
  margin: 0 0 0.6rem;
  line-height: 1.5;
  font-size: 0.92rem;
}

@media (max-width: 1000px){
  .about-block{ grid-template-columns: 1fr; }
  .about-block .about-aside{ grid-column: 1; }
}

/* ==================================================
   ERFARING – CLEAN LISTE
   ================================================== */

.skills--clean .skills__list{
  margin: 0;
  padding-left: 1.1rem;
}

.skills--clean .skills__list li{
  margin: 0 0 0.6rem;
  line-height: 1.55;
  font-size: 0.92rem;
}

.skills__note{
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* ==================================================
   FORSIDE – PROJEKT SLIDER (HORIZONTAL + FADE)
   ================================================== */

.project-slider{
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.5rem 0.8rem;
  margin-top: 1.2rem;

  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  cursor: grab;
}
.project-slider:active{ cursor: grabbing; }

.project-slide{
  scroll-snap-align: start;
  flex: 0 0 340px;
  max-width: 340px;
  text-decoration: none;
  color: inherit;
  display: block;
}

@media (max-width: 640px){
  .project-slide{
    flex-basis: 82%;
    max-width: 82%;
  }
}

.project-slide:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.10);
}

.project-slide .project__image{
  margin-top: 0.6rem;
  border-radius: 10px;
}

.project-slide__meta{
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--color-muted);
}

/* scrollbar diskret */
.project-slider::-webkit-scrollbar { height: 7px; }
.project-slider::-webkit-scrollbar-track { background: transparent; }
.project-slider::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
}

/* ✅ FJERN TAPE KUN I SLIDER */
.project-slider .card--postit::before,
.project-slider .card--postit::after{
  display: none !important;
  content: none !important;
}

/* “Usynlig væg” + blød fade (mere naturlig) */
.project-slider-viewport{
  overflow: hidden;

  /* en smule mindre fade end før, så det ikke ser “fake” ud */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}

/* Træk slideren lidt ud men mindre aggressivt */
.project-slider{
  padding: 0.75rem 56px 1rem;
  margin: 0 -56px;
}

/* ==================================================
   ✅ BLÅ ACCENT – KUN SUBTIL (OPTION 1)
   Bruges kun som outline på projektkort ved hover/focus
   ================================================== */

.project-slide:focus-visible{
  outline: 2px solid rgba(0,0,102,0.35);
  outline-offset: 4px;
  border-radius: 12px;
}

.project-slide:hover{
  /* samme hover som før, men med meget diskret outline */
  outline: 2px solid rgba(0,0,102,0.18);
  outline-offset: 4px;
  border-radius: 12px;
}
.section__kicker{
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
}
.card-grid{
  margin-top: 1.6rem;
}

.card{
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

/* lille “accent dot” i hjørnet */
.card::marker{ content: none; } /* bare safety */
.card::before{
  /* behold din tape som den er (den ligger på card--postit) */
}

.card__overtitle{
  display: flex;
  align-items: center;
  gap: 10px;
}

.card__overtitle::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.9;
}
/* ===== OM MIG: 3 billeder – større ===== */
.about-images--three{
  /* behold 3 kolonner, men gør dem mere “fyldige” */
  gap: 2.2rem;
}

.about-images--three .hang{
  padding: 12px;            /* lidt mere “print kant” */
  border-radius: 20px;
}

/* gør selve billedet større + ens højde */
.about-images--three .hang img{
  width: 100%;
  height: 240px;            /* 🔼 gør dem større */
  object-fit: cover;
  border-radius: 16px;
}

/* på store skærme: endnu større */
@media (min-width: 1100px){
  .about-images--three .hang img{
    height: 280px;          /* 🔼 endnu mere wow */
  }
}

/* mobil: stadig pænt */
@media (max-width: 900px){
  .about-images--three .hang img{
    height: 220px;
  }
}
/* ==================================================
   MOBILMENU + NAV (NYT)
   ================================================== */

.header__toggle{
  display: none;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-weight: 600;
}

.header__toggle:focus-visible{
  outline: 2px solid rgba(0,0,102,0.35);
  outline-offset: 4px;
}

@media (max-width: 820px){
  .header__toggle{ display: inline-flex; align-items:center; gap: 8px; }

  .nav{
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  }

  .header.is-open .nav{ display: flex; }

  .nav__link{
    padding: 0.5rem 0.2rem;
  }
}

/* ==================================================
   NAV: AKTIV TILSTAND (LIDT TYDELIGERE)
   ================================================== */
.nav__link--active{
  font-weight: 600;
}

/* ==================================================
   UNIVERS: FIX SPINE GRADIENT TYPO (DIN FEJL)
   ================================================== */
.spine{
  background: linear-gradient(90deg,
    rgba(0,0,0,0.12),
    rgba(0,0,0,0.04),
    rgba(0,0,0,0.12)
  );
}

/* ==================================================
   UNIVERS: MOODBOARD GRID (NYT)
   ================================================== */
.mood-grid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.mood-card{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}
.mood-card img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.mood-card p{
  margin: 0;
  padding: 0.8rem 0.9rem 0.95rem;
  font-size: 0.92rem;
  opacity: .9;
}
@media (max-width: 900px){
  .mood-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .mood-grid{ grid-template-columns: 1fr; }
  .mood-card img{ height: 220px; }
}
/* ==================================================
   PRISER (NYT) – matcher dit “papir/post-it” look
   ================================================== */

.pricing{
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media (max-width: 900px){
  .pricing__grid{ grid-template-columns: 1fr; }
}

.price-card{
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.price-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.13);
}

.price-card__kicker{
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.price-card__title{
  margin: 0 0 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.price-card__price{
  margin: 0 0 0.2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.price-card__note{
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.price-card__list{
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
}

.price-card__list li{
  margin: 0 0 0.5rem;
  line-height: 1.5;
  font-size: 0.92rem;
}

.price-card__badge{
  position: absolute;
  top: -12px;
  right: 16px;
  background: rgba(223,124,59,0.92);
  color: #fff;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.pricing__cta{
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* A la carte */
.alacarte{
  margin-top: 2.6rem;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.35rem;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.alacarte__title{
  margin: 0 0 0.8rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.price-table{
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
}

.price-table th,
.price-table td{
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
}

.price-table th{
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.price-table tr:hover td{
  background: rgba(0,0,0,0.03);
}

.price-table__muted{
  color: var(--color-muted);
  font-size: 0.86rem;
}

@media (max-width: 720px){
  .price-table th:nth-child(3),
  .price-table td:nth-child(3){
    display: none; /* skjul “tid/levering” på mobil */
  }
}

/* FAQ */
.faq{
  margin-top: 2.4rem;
  display: grid;
  gap: 0.8rem;
}

.faq details{
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 0.9rem 1rem;
}

.faq summary{
  cursor: pointer;
  font-weight: 600;
}

.faq p{
  margin: 0.8rem 0 0;
  opacity: 0.9;
}
/* ==================================================
   OM MIG + ARBEJDE I BEVÆGELSE (RYDDET) – CLOTHESLINE
   ================================================== */

/* Wrapper */
.about-one{
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- CLOTHESLINE (SNOR + 5 BILLEDER) ---------- */

.clothesline{
  /* vigtigt: position til pseudo-elementer */
  position: relative;

  /* layout */
  max-width: 980px;
  margin: 1.2rem auto 0;
  padding: 2.6rem 0 1.4rem;

  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;

  /* sluk alt “lige streg” der kan komme fra andre styles */
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  overflow: visible;
}

/* Buet snor (den ENESTE snor) */
.clothesline::before{
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  right: calc(-50vw + 50%);
  top: 18px;
  height: 72px; /* hvor meget den hænger */

  /* brug border-bottom (mere stabilt til bue-look) */
  border-bottom: 2px solid rgba(0,0,0,0.32);
  border-radius: 0 0 220% 220%;

  /* snoren bag billederne */
  z-index: 1;
  pointer-events: none;
}

/* ---------- POLAROIDS ---------- */

.clip{
  position: relative;
  z-index: 2;                 /* over snoren */
  justify-self: center;

  width: 100%;
  max-width: 170px;

  /* “hænger ned fra snoren” */
  margin-top: 18px;

  /* smooth hover */
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

/* selve “polaroid” billedet */
.clip img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;

  background: #fff;
  padding: 4px;              /* tynd papir-kant */
  border-radius: 10px;

  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* lille klemme (træ) */
.clip::before{
  content:"";
  position:absolute;
  top: -22px;                /* op til snoren */
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);

  width: 16px;
  height: 24px;
  border-radius: 3px;

  background: linear-gradient(180deg, #caa26c, #a9773f);
  box-shadow: 0 6px 10px rgba(0,0,0,0.18);

  z-index: 3;
}

/* lille “split” i klemmen */
.clip::after{
  content:"";
  position:absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);

  width: 12px;
  height: 2px;
  background: rgba(0,0,0,0.18);
  border-radius: 999px;

  z-index: 4;
}

/* variation (så de ikke er ens) */
.clip--1{ transform: rotate(-2deg) translateY(8px); }
.clip--2{ transform: rotate(1.2deg) translateY(2px); }
.clip--3{ transform: rotate(-0.6deg) translateY(12px); }
.clip--4{ transform: rotate(1.8deg) translateY(6px); }
.clip--5{ transform: rotate(-1.4deg) translateY(10px); }

/* hover = “bevægelse” */
.clip:hover{
  transform: translateY(6px) rotate(0.4deg);
  filter: saturate(1.05);
}

.clip:hover img{
  box-shadow: 0 16px 34px rgba(0,0,0,0.22);
}

/* ---------- MOBIL ---------- */
@media (max-width: 900px){
  .clothesline{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 2.6rem 0 1rem;
  }
  .clip{ max-width: 190px; }
  .clip img{ height: 180px; }
}

/* ===== Arbejde i bevægelse: samlet kort med header + grid ===== */
.movement{
  max-width: 980px;
  margin: 0 auto;
  padding: 1.6rem 1.6rem 1.8rem;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);

  transition: transform 160ms ease, box-shadow 160ms ease;
}

.movement:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.14);
}

/* header inde i boksen */
.movement__header{
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed rgba(0,0,0,0.18);
}

.movement__kicker{
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.movement__headline{
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.movement__sub{
  margin: 0;
  max-width: 60ch;
  opacity: 0.9;
  line-height: 1.6;
}

/* grid: tekst + papir */
.movement__grid{
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px){
  .movement__grid{
    grid-template-columns: 1.35fr 0.9fr;
    gap: 1.4rem 2.2rem;
    align-items: start;
  }
}

.movement__text p{
  margin: 0 0 0.9rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* papir på højre side */
.movement__paper{
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  position: relative;
}

/* fold hjørne */
.movement__paper::after{
  content:"";
  position:absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,0,0,0.10), transparent 60%);
  border-top-right-radius: 16px;
  opacity: 0.35;
  pointer-events: none;
}

.movement__paperTitle{
  margin: 0 0 0.7rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
}

.movement__list{
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.movement__list li{
  margin: 0 0 0.6rem;
  line-height: 1.5;
  font-size: 0.92rem;
}

.movement__btn{
  width: fit-content;
}
/* ===== Om mig: 2 tekstkolonner + kompakt aside ===== */
.about-one__content{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.2rem 3rem;
  align-items: start;
}

.about-one__columns{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 2.2rem;
}

.about-one__col p{
  margin: 0 0 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* gør kort-fortalt mere “kompakt” og mindre hvid */
.about-aside{
  background: rgba(255,255,255,0.38); /* mindre hvid */
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.about-aside__list li{
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* mobil: alt under hinanden */
@media (max-width: 1000px){
  .about-one__content{ grid-template-columns: 1fr; }
  .about-one__columns{ grid-template-columns: 1fr; }
}

/* ===== SAFE ALIGN FIX: kun spacing (ingen layout-skub) ===== */

/* fjern top-margin på første element i hver kolonne */
.about-one__col > :first-child{
  margin-top: 0 !important;
}

/* ens afstand før underoverskrifter */
.about-one__subtitle{
  margin: 1.6rem 0 0.6rem !important;
}

/* men hvis underoverskrift er det første i kolonnen, så ingen ekstra luft */
.about-one__col > .about-one__subtitle:first-child{
  margin-top: 0 !important;
}
/* Mere luft mellem billeder og tekst */
/* Mere luft mellem billeder og tekst (finjusteret) */
.clothesline{
  margin-bottom: 2.4rem;      /* var 1.8 */
  padding-bottom: 2.8rem;     /* var 2.2 */
}
/* ================================
   FLOW PATCH (ro + bedre flow)
   Læg nederst i din CSS
   ================================ */

/* Pusterum = små pauser mellem tunge sektioner */
.breather{
  height: 28px;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.breather::after{
  content:"";
  width: min(980px, 92vw);
  height: 1px;
  background: rgba(0,0,0,0.06);
}
.breather--hero{ height: 30px; }
.breather--before-projects{ height: 36px; }
.breather--after-projects{ height: 40px; }

/* Gør projekter mere rolige (mindre kontrast, mindre “råb”) */
#projekter .project-slide{
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* dæmp hover så det føles roligt */
#projekter .project-slide:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.10);
  outline: none !important;
}

/* fjern den blå outline på hover i slideren (den gør det hårdt) */
#projekter .project-slide:hover{
  outline: none !important;
}
#projekter .project-slide:focus-visible{
  outline: 2px solid rgba(0,0,0,0.18);
  outline-offset: 4px;
  border-radius: 16px;
}

/* gør teksten i projekter lidt blødere */
#projekter .project__category{
  opacity: 0.85;
}
#projekter .project-slide__meta{
  opacity: 0.85;
}

/* slider viewport fade: mindre “teater”, mere naturlig */
.project-slider-viewport{
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 56px,
    #000 calc(100% - 56px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 56px,
    #000 calc(100% - 56px),
    transparent 100%
  );
}

/* =========================
   PROJEKTER – GALLERI LOOK
   ========================= */

.projects-gallery{
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

/* selve kortet */
.project-card{
  display: block;
  text-decoration: none;
  color: inherit;

  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 0.8rem;

  box-shadow: 0 14px 32px rgba(0,0,0,0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;

  transform: rotate(-0.6deg);
}

.project-card:nth-child(2n){
  transform: rotate(0.6deg);
}

.project-card:hover{
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 22px 46px rgba(0,0,0,0.14);
}

.project-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* tekst */
.project-card__meta{
  margin-top: 0.8rem;
}

.project-card__meta span{
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}

.project-card__meta h3{
  margin: 0.3rem 0 0;
  font-size: 1rem;
}

/* variationer */
.project-card--wide{
  grid-column: span 2;
}

.project-card--tall img{
  height: 300px;
}

/* mobil */
@media (max-width: 900px){
  .projects-gallery{
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-card--wide{
    grid-column: span 1;
  }
}
/* ==================================================
   PROJEKTER – roligt galleri (6 lige store “postkort”)
   ================================================== */

.projects-gallery{
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

@media (max-width: 980px){
  .projects-gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .projects-gallery{ grid-template-columns: 1fr; }
}

.project-card{
  text-decoration: none;
  color: inherit;

  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.05rem 1.05rem 1.1rem;

  box-shadow: 0 14px 34px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 0.55rem;

  transition: transform 160ms ease, box-shadow 160ms ease;
  transform: rotate(var(--tilt, 0deg));
}

.project-card:hover{
  transform: rotate(var(--tilt, 0deg)) translateY(-3px);
  box-shadow: 0 20px 46px rgba(0,0,0,0.12);
}

/* små “skæve” variationer – stadig roligt */
.project-card:nth-child(1){ --tilt: -0.6deg; }
.project-card:nth-child(2){ --tilt:  0.4deg; }
.project-card:nth-child(3){ --tilt: -0.2deg; }
.project-card:nth-child(4){ --tilt:  0.7deg; }
.project-card:nth-child(5){ --tilt: -0.4deg; }
.project-card:nth-child(6){ --tilt:  0.3deg; }

.project-card__tag{
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
}

.project-card__title{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.project-card__media{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);

  /* gør alle ens i højden */
  aspect-ratio: 4 / 3;
}

.project-card__media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* til logo/illustration: mere “plakat/print” look */
.project-card__media--contain img{
  object-fit: contain;
  padding: 14px;
}

.project-card__meta{
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: auto; /* holder metatekst nede, så kortene bliver lige høje */
}
/* ==============================
   PROJEKTER (NYT REDESIGN)
   Rolig oversigt + fold-ud cases
   ============================== */

.filters{
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.filter{
  border: 1px solid rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.45);
  padding: .55rem .9rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
}
.filter.is-active{
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,0,0,0.22);
  font-weight: 600;
}

.cases{
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.6rem;
}

@media (max-width: 900px){
  .cases{ grid-template-columns: 1fr; }
}

/* Card */
.case-card{
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  overflow: hidden;
}

/* remove default marker */
.case-card > summary{
  list-style: none;
}
.case-card > summary::-webkit-details-marker{ display: none; }

.case-card__summary{
  padding: 1.1rem 1.1rem 1rem;
  cursor: pointer;
  position: relative;
}

.case-card__tag{
  margin: 0 0 .4rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--color-accent);
}

.case-card__title{
  margin: 0 0 .8rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.case-card__thumb{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
}
.case-card__thumb img{
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

/* hvis thumbnail er et logo (centreret) */
.case-card__thumb--logo{
  display: grid;
  place-items: center;
  padding: 18px;
}
.case-card__thumb--logo img{
  height: 140px;
  width: auto;
  object-fit: contain;
}

.case-card__meta{
  margin: .75rem 0 0;
  font-size: .85rem;
  color: var(--color-muted);
}

.case-card__cta{
  display: inline-flex;
  margin-top: .65rem;
  font-weight: 600;
  font-size: .92rem;
}

/* fold-ud body */
.case-card__body{
  border-top: 1px dashed rgba(0,0,0,0.18);
  padding: 1.1rem 1.1rem 1.2rem;
  background: rgba(255,255,255,0.28);
}

.case-body__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.6rem;
}
@media (max-width: 900px){
  .case-body__grid{ grid-template-columns: 1fr; }
}

.case-body__h{
  margin: 0 0 .5rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-muted);
}

.case-body__list{
  margin: 0;
  padding-left: 1.1rem;
}
.case-body__list li{ margin: 0 0 .5rem; line-height: 1.5; }

.case-body__muted{
  margin: 0;
  color: var(--color-muted);
}

/* subtle hover */
.case-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.13);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
/* ===== Case: indhold når den åbnes ===== */
.case-card__body{
  padding: 1rem 1rem 1.2rem;
  display: grid;
  gap: 1rem;
}

.case-card__text p{
  margin: 0 0 0.6rem;
  line-height: 1.65;
}

/* ===== Gallery layout ===== */
.case-gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

/* Billede wrapper */
.case-media{
  margin: 0;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.case-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Wide = fylder hele bredden */
.case-media--wide{
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

/* Tall = højere billede */
.case-media--tall{
  aspect-ratio: 3 / 4;
}

/* Normal (små) */
.case-media:not(.case-media--wide):not(.case-media--tall){
  aspect-ratio: 4 / 3;
}

/* Mobil */
@media (max-width: 700px){
  .case-gallery{
    grid-template-columns: 1fr;
  }
  .case-media--wide{
    aspect-ratio: 4 / 3;
  }
}
/* =========================
   CASE: Åben/Luk + Gallery
   ========================= */

.case__top{
  display: grid;
  gap: 0.7rem;
}

/* knappen der åbner/lukker */
.case__toggle{
  margin-top: 0.2rem;
  justify-self: start;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  font-weight: 600;
}

.case__toggle:hover{
  background: rgba(255,255,255,0.8);
}

.case__desc{
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* details wrapper */
.case__details{
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.case__details-grid{
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 900px){
  .case__details-grid{
    grid-template-columns: 1fr 1.2fr;
    gap: 1.8rem;
    align-items: start;
  }
}

.case__details-text h4{
  margin: 0.2rem 0 0.5rem;
  font-family: var(--font-serif);
}

.case__details-text ul{
  margin: 0.2rem 0 0;
  padding-left: 1.1rem;
}

.case__details-text li{
  margin: 0 0 0.45rem;
  line-height: 1.5;
}

/* Gallery: fleksibel grid med “varierende” størrelser */
.case-gallery{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}

@media (min-width: 900px){
  .case-gallery{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.case-shot{
  margin: 0;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

.case-shot img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* variationer */
.case-shot--tall img{ height: 320px; }
.case-shot--wide{ grid-column: 1 / -1; }
.case-shot--wide img{ height: 240px; }

/* close button */
.case__toggle--close{
  margin-top: 1rem;
}
