/* ============================================
   Antik Urmageren – Sektion 1 (Hero)
   ============================================ */

:root {
  --color-white: #ffffff;
  --color-gold: #c5a059;
  --color-gold-light: #d4b87a;
  --color-bg: #000000;
  --color-text-muted: rgba(255, 255, 255, 0.62);
  --section-blend: clamp(110px, 14vh, 180px);
  --font-serif: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --header-height: 96px;
  --content-padding-x: clamp(48px, 8.5vw, 140px);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  background: #000000;
}

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

ul {
  list-style: none;
}

/* ---- Smooth section transitions ---- */

.hero,
.intro,
.showcase,
.workshop,
.atelier,
.contact {
  position: relative;
  isolation: isolate;
}

.intro,
.showcase,
.workshop,
.atelier,
.contact {
  margin-top: calc(var(--section-blend) * -0.55);
  padding-top: calc(var(--section-blend) * 0.55);
}

.intro::before,
.showcase::before,
.workshop::before,
.atelier::before,
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--section-blend);
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.72) 28%,
    rgba(0, 0, 0, 0.28) 58%,
    transparent 100%
  );
}

.hero::after,
.intro::after,
.showcase::after,
.workshop::after,
.atelier::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--section-blend);
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.72) 72%,
    #000000 100%
  );
}

/* ---- Hero section ---- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #000000;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 91%;
  z-index: 0;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
}

.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      transparent 28%,
      transparent 52%,
      rgba(0, 0, 0, 0.35) 78%,
      rgba(0, 0, 0, 0.88) 92%,
      #000000 100%
    ),
    linear-gradient(
      90deg,
      #000000 0%,
      #000000 14%,
      rgba(0, 0, 0, 0.96) 20%,
      rgba(0, 0, 0, 0.82) 26%,
      rgba(0, 0, 0, 0.58) 33%,
      rgba(0, 0, 0, 0.32) 40%,
      rgba(0, 0, 0, 0.12) 47%,
      rgba(0, 0, 0, 0.03) 52%,
      transparent 58%
    );
}

/* ---- Header ---- */

.header {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  border-top: 1px solid rgba(196, 162, 101, 0.55);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 18px var(--content-padding-x) 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-self: start;
}

.logo__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}

.logo__subtitle {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav {
  justify-self: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav__link--active {
  color: var(--color-white);
  box-shadow: inset 0 -1px 0 0 var(--color-gold);
  padding-bottom: 2px;
}

.nav__link:hover {
  color: var(--color-white);
}

.header__phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header__phone:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
}

/* ---- Hero content ---- */

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 620px;
  padding: 0 var(--content-padding-x) 72px;
  margin-top: -12px;
}

.hero__eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 22px;
}

.hero__divider {
  width: 72px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 18px;
}

.hero__name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 28px;
}

.hero__text {
  max-width: 430px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero__cta:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
}

.hero__cta-arrow {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-1px);
}

/* ---- Responsive adjustments ---- */

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
  }

  .header__phone {
    grid-column: 2;
    grid-row: 1;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    overflow-x: auto;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .nav__list {
    gap: 22px;
  }
}

@media (min-width: 1600px) {
  .hero__media {
    width: 93%;
  }

  .hero__image {
    object-position: 52% 44%;
  }

  .hero__fade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 22%,
        transparent 50%,
        rgba(0, 0, 0, 0.45) 82%,
        #000000 100%
      ),
      linear-gradient(
        90deg,
        #000000 0%,
        #000000 13%,
        rgba(0, 0, 0, 0.95) 19%,
        rgba(0, 0, 0, 0.78) 25%,
        rgba(0, 0, 0, 0.52) 32%,
        rgba(0, 0, 0, 0.26) 39%,
        rgba(0, 0, 0, 0.08) 46%,
        transparent 54%
      );
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: auto;
  }

  .header__inner {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .hero__media {
    width: 100%;
  }

  .hero__image {
    object-position: 62% 40%;
  }

  .hero__fade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        transparent 20%,
        transparent 48%,
        rgba(0, 0, 0, 0.5) 80%,
        #000000 100%
      ),
      linear-gradient(
        90deg,
        #000000 0%,
        #000000 18%,
        rgba(0, 0, 0, 0.94) 26%,
        rgba(0, 0, 0, 0.72) 36%,
        rgba(0, 0, 0, 0.38) 48%,
        rgba(0, 0, 0, 0.12) 58%,
        transparent 68%
      );
  }

  .hero__content {
    margin-top: 0;
    padding-bottom: 48px;
  }

  .hero__name {
    letter-spacing: 0.28em;
  }
}

/* ============================================
   Sektion 2 – Scroll-fortælling (Om)
   ============================================ */

.intro {
  background-color: var(--color-bg);
}

.intro-story {
  --clock: 0;
  --about: 0;
  --exp: 0;
  --del: 0;
  --qual: 0;
  --wave: 0;
  --about-title: 0;
  --about-divider: 0;
  --about-body: 0;
  --about-cta: 0;
  position: relative;
}

.intro-story__track {
  height: 500vh;
}

.intro-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.intro-story__clock {
  position: absolute;
  left: -8%;
  top: 50%;
  width: clamp(280px, 46vw, 560px);
  height: clamp(340px, 58vh, 580px);
  transform: translate3d(
    calc((1 - var(--clock)) * -10%),
    calc(-50% + (1 - var(--clock)) * 48px),
    0
  ) scale(calc(0.92 + var(--clock) * 0.08));
  opacity: var(--clock);
  filter: blur(calc((1 - var(--clock)) * 8px));
  z-index: 2;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease-out,
    filter 0.4s ease-out;
}

.intro-story__clock-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.55) 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.55) 82%,
    transparent 100%
  );
}

.intro-story__icon-hand {
  transform-box: view-box;
  transform-origin: 50% 50%;
}

.intro-story.is-animated .intro-story__feature--experience .intro-story__icon-hand--hour {
  animation: intro-icon-hour-spin 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-story.is-animated .intro-story__feature--experience .intro-story__icon-hand--minute {
  animation: intro-icon-minute-spin 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes intro-icon-hour-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes intro-icon-minute-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(720deg); }
}

.intro-story__about {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  top: 50%;
  width: min(520px, 46vw);
  transform: translate3d(calc((1 - var(--about)) * 40px), -50%, 0);
  opacity: var(--about);
  z-index: 3;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease-out;
}

.intro-story__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 18px;
  opacity: var(--about-title);
  transform: translate3d(calc((1 - var(--about-title)) * 24px), 0, 0);
}

.intro-story__divider {
  width: 56px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 28px;
  opacity: var(--about-divider);
  transform: scaleX(var(--about-divider));
  transform-origin: left;
}

.intro-story__text {
  max-width: 520px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  opacity: var(--about-body);
}

.intro-story__text:last-of-type {
  margin-bottom: 32px;
}

.intro-story__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 12px 26px;
  border: 1px solid rgba(197, 160, 89, 0.75);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  opacity: var(--about-cta);
}

.intro-story__cta:hover {
  background-color: rgba(197, 160, 89, 0.08);
  border-color: var(--color-gold);
}

.intro-story__cta-arrow {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gold);
}

.intro-story__features {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px) clamp(56px, 9vh, 96px);
  pointer-events: none;
}

.intro-story__wave {
  position: absolute;
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(148px, 22vh, 220px);
  height: clamp(56px, 8vh, 88px);
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.intro-story__wave-path {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--wave));
  opacity: calc(0.15 + var(--wave) * 0.75);
  filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.25));
}

.intro-story__feature {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 180px;
  pointer-events: auto;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.28s ease-out;
}

.intro-story__feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(300px, 100%);
  padding: 28px 24px 24px;
  border: 1px solid rgba(197, 160, 89, 0.12);
  background: linear-gradient(
    180deg,
    rgba(197, 160, 89, 0.04) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.intro-story__feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  transform: translate3d(-50%, 0, 0) scaleX(0);
  transform-origin: center;
}

.intro-story__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--color-gold);
}

.intro-story__feature-icon svg {
  width: 44px;
  height: 44px;
}

.intro-story__feature-title {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.intro-story__feature-text {
  max-width: 260px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.intro-story__feature--experience {
  grid-column: 1;
  transform: translate3d(0, calc((1 - var(--exp)) * 20px), 0) scale(calc(0.94 + var(--exp) * 0.06));
  opacity: var(--exp);
}

.intro-story__feature--experience .intro-story__feature-card::before {
  transform: translate3d(-50%, 0, 0) scaleX(var(--exp));
}

.intro-story__feature--experience .intro-story__feature-icon,
.intro-story__feature--experience .intro-story__feature-title,
.intro-story__feature--experience .intro-story__feature-text {
  opacity: var(--exp);
  transform: none;
  filter: none;
}

.intro-story__feature--delivery {
  grid-column: 2;
  transform: translate3d(0, calc((1 - var(--del)) * 28px), 0) scale(calc(0.94 + var(--del) * 0.06));
  opacity: var(--del);
}

.intro-story__feature--delivery .intro-story__feature-card::before {
  transform: translate3d(-50%, 0, 0) scaleX(var(--del));
}

.intro-story__feature--delivery .intro-story__feature-icon,
.intro-story__feature--delivery .intro-story__feature-title,
.intro-story__feature--delivery .intro-story__feature-text {
  opacity: var(--del);
  transform: none;
  filter: none;
}

.intro-story__feature--quality {
  grid-column: 3;
  transform: translate3d(0, calc((1 - var(--qual)) * 28px), 0) scale(calc(0.94 + var(--qual) * 0.06));
  opacity: var(--qual);
}

.intro-story__feature--quality .intro-story__feature-card::before {
  transform: translate3d(-50%, 0, 0) scaleX(var(--qual));
}

.intro-story__feature--quality .intro-story__feature-icon,
.intro-story__feature--quality .intro-story__feature-title,
.intro-story__feature--quality .intro-story__feature-text {
  opacity: var(--qual);
  transform: none;
  filter: none;
}

.intro-story.is-complete .intro-story__feature {
  transform: translate3d(0, 0, 0);
}

.intro-story.is-complete .intro-story__feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: calc(100% - 36px);
  background: rgba(255, 255, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .intro-story__track {
    height: auto;
  }

  .intro-story__stage {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 80px var(--content-padding-x) 64px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .intro-story__clock,
  .intro-story__about,
  .intro-story__features,
  .intro-story__feature {
    position: static;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .intro-story__clock {
    height: 320px;
  }

  .intro-story__icon-hand {
    animation: none !important;
  }

  .intro-story__feature-card,
  .intro-story__feature-icon,
  .intro-story__feature-title,
  .intro-story__feature-text,
  .intro-story__title,
  .intro-story__divider,
  .intro-story__text,
  .intro-story__cta {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .intro-story__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }
}

@media (max-width: 960px) {
  .intro-story__track {
    height: 500vh;
  }

  .intro-story__stage {
    min-height: 100svh;
  }

  .intro-story__clock {
    left: 50%;
    top: 30%;
    width: min(88vw, 400px);
    height: clamp(240px, 38vh, 340px);
    transform: translate3d(
      -50%,
      calc(-50% + (1 - var(--clock)) * 40px),
      0
    ) scale(calc(0.94 + var(--clock) * 0.06));
  }

  .intro-story__about {
    right: auto;
    left: 50%;
    top: auto;
    bottom: clamp(220px, 32vh, 300px);
    width: min(88vw, 480px);
    transform: translate3d(-50%, 0, 0);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .intro-story__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .intro-story__features {
    display: block;
    padding: 0 var(--content-padding-x) clamp(40px, 7vh, 64px);
  }

  .intro-story__wave {
    left: var(--content-padding-x);
    right: var(--content-padding-x);
    bottom: clamp(200px, 30vh, 280px);
    height: 64px;
  }

  .intro-story__feature {
    position: absolute;
    left: 50%;
    bottom: clamp(40px, 7vh, 64px);
    width: min(88vw, 380px);
    min-height: 0;
    margin: 0;
  }

  .intro-story__feature-card {
    width: 100%;
  }

  .intro-story__feature--experience {
    transform: translate3d(-50%, calc((1 - var(--exp)) * 32px), 0) scale(calc(0.94 + var(--exp) * 0.06));
    z-index: 3;
  }

  .intro-story__feature--delivery {
    transform: translate3d(-50%, calc((1 - var(--del)) * 32px), 0) scale(calc(0.94 + var(--del) * 0.06));
    z-index: 4;
  }

  .intro-story__feature--quality {
    transform: translate3d(-50%, calc((1 - var(--qual)) * 32px), 0) scale(calc(0.94 + var(--qual) * 0.06));
    z-index: 5;
  }

  .intro-story.is-complete .intro-story__features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .intro-story.is-complete .intro-story__feature {
    position: relative;
    left: auto;
    bottom: auto;
    transform: translate3d(0, 0, 0);
  }

  .intro-story.is-complete .intro-story__feature:not(:last-child)::after {
    display: none;
  }
}

/* ============================================
   Sektion 3 – Galleri & Proces
   ============================================ */

.showcase {
  background-color: #000000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
}

.section-head__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}

.section-head__divider {
  width: 52px;
  height: 1px;
  margin: 0 auto;
  background-color: var(--color-gold);
}

.gallery {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px var(--content-padding-x) 56px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}

.gallery__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.gallery__frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.35);
  background-color: #000000;
}

.gallery__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery__caption {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-gold);
}

.gallery__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 12px 28px;
  border: 1px solid rgba(197, 160, 89, 0.75);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.showcase__cta:hover {
  background-color: rgba(197, 160, 89, 0.08);
  border-color: var(--color-gold);
}

.showcase__cta-arrow {
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gold);
}

.process {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px var(--content-padding-x) 80px;
}

.process__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 28px;
}

.process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  width: 1px;
  height: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.1);
}

.process__number {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.process__text {
  max-width: 220px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

@media (max-width: 1100px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .gallery {
    padding-top: 56px;
    padding-bottom: 48px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .process__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 540px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================
   Sektion 5 – Værksted
   ============================================ */

.workshop {
  background-color: #000000;
}

.workshop-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-color: #000000;
}

.workshop-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 68%;
  z-index: 0;
}

.workshop-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

.workshop-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.2) 0%,
      transparent 30%,
      transparent 50%,
      rgba(0, 0, 0, 0.4) 78%,
      rgba(0, 0, 0, 0.9) 92%,
      #000000 100%
    ),
    linear-gradient(
      90deg,
      #000000 0%,
      #000000 34%,
      rgba(0, 0, 0, 0.96) 42%,
      rgba(0, 0, 0, 0.78) 50%,
      rgba(0, 0, 0, 0.42) 58%,
      rgba(0, 0, 0, 0.12) 64%,
      transparent 70%
    );
}

.workshop-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 72px var(--content-padding-x) 64px;
}

.workshop-hero__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.workshop-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.workshop-hero__divider {
  width: 56px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.workshop-hero__text {
  max-width: 520px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.workshop-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workshop-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workshop-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.workshop-feature__icon svg {
  width: 40px;
  height: 40px;
}

.workshop-feature__title {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.workshop-feature__text {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.workshop-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background-color: #000000;
  width: 100%;
}

.workshop-strip::before,
.workshop-strip::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(48px, 6vh, 90px);
  pointer-events: none;
  z-index: 2;
}

.workshop-strip::before {
  top: 0;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0.55) 45%,
    transparent 100%
  );
}

.workshop-strip::after {
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 55%,
    #000000 100%
  );
}

.workshop-strip__item {
  position: relative;
  height: clamp(155px, 11.5vw, 188px);
  overflow: hidden;
  background-color: #000000;
}

.workshop-strip__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.workshop-strip__item:nth-child(1) img { object-position: 50% 55%; }
.workshop-strip__item:nth-child(2) img { object-position: 50% 38%; }
.workshop-strip__item:nth-child(3) img { object-position: 50% 45%; }
.workshop-strip__item:nth-child(4) img { object-position: 50% 40%; }
.workshop-strip__item:nth-child(5) img { object-position: 50% 45%; }

.workshop-trust {
  padding: 48px var(--content-padding-x) 72px;
}

.workshop-trust__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px clamp(28px, 3vw, 40px);
  border: 1px solid rgba(197, 160, 89, 0.35);
  background-color: rgba(255, 255, 255, 0.02);
}

.workshop-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.workshop-trust__icon svg {
  width: 46px;
  height: 46px;
}

.workshop-trust__title {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.workshop-trust__text {
  max-width: 560px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.workshop-trust__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 11px 22px;
  border: 1px solid rgba(197, 160, 89, 0.75);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.workshop-trust__cta:hover {
  background-color: rgba(197, 160, 89, 0.08);
  border-color: var(--color-gold);
}

.workshop-trust__cta-arrow {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 1100px) {
  .workshop-hero__media {
    width: 75%;
  }

  .workshop-hero__features {
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .workshop-hero {
    min-height: auto;
  }

  .workshop-hero__media {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .workshop-hero__fade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .workshop-hero__content {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding-top: 40px;
  }

  .workshop-hero__features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workshop-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .workshop-strip__item {
    height: clamp(140px, 22vw, 170px);
  }

  .workshop-trust__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .workshop-trust__text {
    max-width: none;
  }
}

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

  .workshop-strip__item {
    height: 130px;
  }
}

/* ============================================
   Sektion 6 – Værksted & Kontakt
   ============================================ */

.atelier {
  background-color: #000000;
}

.atelier-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background-color: #000000;
}

.atelier-hero__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  z-index: 0;
}

.atelier-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
}

.atelier-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.28) 0%,
      transparent 32%,
      transparent 48%,
      rgba(0, 0, 0, 0.45) 76%,
      rgba(0, 0, 0, 0.9) 92%,
      #000000 100%
    ),
    linear-gradient(
      90deg,
      #000000 0%,
      #000000 28%,
      rgba(0, 0, 0, 0.94) 36%,
      rgba(0, 0, 0, 0.72) 44%,
      rgba(0, 0, 0, 0.35) 54%,
      rgba(0, 0, 0, 0.08) 62%,
      transparent 70%
    );
}

.workshop-hero::after,
.atelier-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: clamp(90px, 12vh, 150px);
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.82) 75%,
    #000000 100%
  );
}

.atelier-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 680px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px var(--content-padding-x) 56px;
}

.atelier-hero__intro {
  max-width: 560px;
}

.atelier-hero__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.atelier-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.atelier-hero__divider {
  width: 56px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.atelier-hero__text {
  max-width: 520px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.atelier-hero__text:last-of-type {
  margin-bottom: 0;
}

.atelier-hero__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  padding-top: 48px;
}

.atelier-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.atelier-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--color-gold);
}

.atelier-feature__icon svg {
  width: 40px;
  height: 40px;
}

.atelier-feature__title {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.atelier-feature__text {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.contact {
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

.contact__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px var(--content-padding-x) 88px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin-bottom: 48px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--color-gold);
}

.contact__icon svg {
  width: 42px;
  height: 42px;
}

.contact__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 12px;
}

.contact__value {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-muted);
}

a.contact__value:hover {
  color: var(--color-white);
}

.contact__action {
  display: flex;
  justify-content: center;
}

.contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact__cta:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
}

.contact__cta-arrow {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 1100px) {
  .atelier-hero__media {
    width: 85%;
  }

  .atelier-hero__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .atelier-hero,
  .atelier-hero__inner {
    min-height: auto;
  }

  .atelier-hero__media {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .atelier-hero__fade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
  }

  .atelier-hero__inner {
    padding-top: 40px;
  }

  .atelier-hero__features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact__inner {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}

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