/* body { background: red !important; }



/* =========================
   Base
========================== */
:root{
  --bg: #f7f4ee;
  --card: #fffdf9;
  --text: #2a2420;
  --muted: #79705f;

  --brand: #5c6b5a;
  --brand-2: #4a5749;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --shadow-soft: 0 6px 18px rgba(0,0,0,.06);

  --wrap: 1100px;

  --border-soft: rgba(0,0,0,.06);
  --border-med: rgba(0,0,0,.10);
  --border-strong: rgba(0,0,0,.18);
  --overlay-hover: rgba(0,0,0,.06);
  --surface-translucent: rgba(255,255,255,.55);
  --surface-translucent-strong: rgba(255,255,255,.60);
  --input-bg: #ffffff;
}

@media (prefers-color-scheme: dark){
  :root{
    --bg: #1b1815;
    --card: #26221d;
    --text: #f0ebe3;
    --muted: #b3a696;

    --brand: #7c9478;
    --brand-2: #8fa989;

    --shadow: 0 10px 25px rgba(0,0,0,.35);
    --shadow-soft: 0 6px 18px rgba(0,0,0,.28);

    --border-soft: rgba(240,235,227,.08);
    --border-med: rgba(240,235,227,.14);
    --border-strong: rgba(240,235,227,.24);
    --overlay-hover: rgba(240,235,227,.08);
    --surface-translucent: rgba(38,34,29,.65);
    --surface-translucent-strong: rgba(38,34,29,.75);
    --input-bg: #2c2822;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

.wrap{
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }


/* =========================
   Header + Nav
========================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,238,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  text-decoration: none;
  color: var(--text);
  display: grid;
  gap: 2px;
}

.brand-title{
  font-weight: 800;
  letter-spacing: .2px;
}

.brand-tagline{
  font-size: .9rem;
  color: var(--muted);
}

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

.site-nav a{
  text-decoration: none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}

.site-nav a:hover{
  background: rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.nav-cta{
  background: var(--brand);
  color: #fff !important;
}

.nav-cta:hover{
  background: var(--brand-2);
}

.nav-toggle{
  display: none;
  border: 1px solid rgba(0,0,0,.12);
  background: var(--card);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}


/* =========================
   Hero
========================== */
.hero{
  padding: 28px 0 10px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

.hero-text h1{
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
}

.hero-text p{
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.trust-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-pill{
  font-size: .9rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
}

.hero-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* =========================
   Sections
========================== */
.section{
  padding: 52px 0;
}

.section-muted{
  background: rgba(0,0,0,.03);
}

.section-head{
  margin-bottom: 22px;
}

.section-head h2{
  margin: 0 0 6px;
  font-size: 1.7rem;
}

.section-head p{
  margin: 0;
  color: var(--muted);
}


/* =========================
   Gallery Grid + Cards
========================== */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  display: grid;
}

.card-media{
  position: relative;
  cursor: pointer;
}

.card-media img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .25s;
}

.card-media:hover img{
  transform: scale(1.03);
}

.card-body{
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}

.card-title{
  margin: 0;
  font-weight: 800;
}

.card-meta{
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.card-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}


/* =========================
   Buttons
========================== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.btn:hover{
  transform: translateY(-1px);
  background: var(--brand-2);
}

.btn-outline{
  background: transparent;
  color: var(--text);
  border-color: rgba(0,0,0,.18);
}

.btn-outline:hover{
  background: rgba(0,0,0,.06);
}


/* =========================
   About + Contact
========================== */
.about-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}

.about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-facts{
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.fact{
  background: rgba(0,0,0,.04);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.contact-grid{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
  align-items: start;
}

.list-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
}

.clean-list{
  margin: 0;
  padding-left: 18px;
}

.form{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.form-honeypot{
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label{
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: .95rem;
}

input, select, textarea{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  font: inherit;
}

input:focus, select:focus, textarea:focus{
  outline: 2px solid rgba(0,0,0,.22);
  outline-offset: 2px;
}

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-note{
  margin: 0;
  font-size: .95rem;
}

.form-disclaimer{
  margin: 0;
  font-size: .9rem;
}


/* =========================
   Lightbox
========================== */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.86);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.lightbox.active{
  display: flex;
}

.lightbox img{
  max-width: min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.lightbox-close{
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
}


/* =========================
   Footer
========================== */
.site-footer{
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.footer-inner{
  display: grid;
  gap: 10px;
}

.footer-links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a{
  color: var(--text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
}

.footer-links a:hover{
  background: rgba(0,0,0,.08);
}


/* =========================
   Responsive
========================== */
@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .hero-grid{ grid-template-columns: 1fr; }
  .about-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
}

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

  .nav-toggle{ display: inline-flex; }

  .site-nav{
    position: absolute;
    right: 16px;
    top: 62px;
    background: var(--card);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 10px;
    display: none;
    flex-direction: column;
    width: min(240px, calc(100vw - 32px));
  }

  .site-nav.open{ display: flex; }
}

/* =========================
   Homepage sections (mobile-first)
========================== */

/* Hero split */
.hero-split { padding-top: 28px; }

.hero-split-grid{
  display: grid;
  gap: 18px;
  align-items: center;
}

.hero-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  padding: 18px;
}

.hero-card h1{
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
}

.hero-actions{ margin-top: 12px; }

/* Artist portrait link */
.artist-link{
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--text);
  gap: 10px;
}

.artist-portrait{
  width: min(320px, 84vw);
  height: 260px;              /* “rund men lidt bredere” */
  object-fit: cover;
  border-radius: 999px;       /* pill/ellipse */
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.08);
}

.artist-link-label{
  font-weight: 700;
  background: rgba(0,0,0,.06);
  padding: 8px 12px;
  border-radius: 999px;
}

/* Works header alignment */
.works-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

/* Carousel */
.carousel{
  overflow: hidden;
  margin-top: 14px;
}

.carousel-track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar{
  height: 10px;
}

.carousel-item{
  flex: 0 0 85%;
  scroll-snap-align: start;
}

.carousel-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}

.carousel-media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform .25s;
}

.carousel-media:hover img{ transform: scale(1.02); }

.carousel-body{
  padding: 12px 12px 14px;
  display: grid;
  gap: 8px;
}

.carousel-title{
  margin: 0;
  font-weight: 800;
}

.works-footer{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

/* Reviews */
.reviews-grid{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.review-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
}

/* Responsive upgrades */
@media (min-width: 900px){
  .hero-split-grid{
    grid-template-columns: 1.1fr .9fr;
  }

  .carousel-item{
    flex: 0 0 calc((100% - 42px) / 4); /* 4 synlige cards */
  }

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

@media (min-width: 620px) and (max-width: 899px){
  .carousel-item{
    flex: 0 0 48%; /* 2 synlige */
  }
}




/* Carousel drag feel */
.carousel-track{
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-track.is-dragging{
  cursor: grabbing;
}

/* Optional: skjul scrollbar (renere look) */
.carousel-track{
  scrollbar-width: none; /* Firefox */
}
.carousel-track::-webkit-scrollbar{
  display: none; /* Chrome/Safari/Edge */
}










/* NY ADDITION 16.03.2026 - TILDE HASTEOPGAVE START ÆNDRING AF HJEMMESIDE   */

/* =========================================
   Index Redesign – Editorial / Gallery Frontpage
   Formål:
   - Ny forside baseret på sketch
   - Bevarer eksisterende footer/lightbox-logik
   - Let at vedligeholde og udvide senere
========================================= */

/* ---------- Variabler til forsiden ---------- */
:root{
  --art-bg: #f7f4ee;
  --art-surface: #fffdf9;
  --art-line: rgba(42,36,32,.10);
  --art-line-soft: rgba(42,36,32,.06);
  --art-text: #2a2420;
  --art-muted: #79705f;
  --art-accent: #5c6b5a;
  --art-accent-2: #4a5749;
  --art-badge-dark: rgba(58,51,44,.92);
  --art-badge-light: rgba(255,253,249,.94);
}

/* Badges sit on top of photos, not page chrome - deliberately left
   unchanged between themes so they read consistently against artwork. */
@media (prefers-color-scheme: dark){
  :root{
    --art-bg: #1b1815;
    --art-surface: #26221d;
    --art-line: rgba(240,235,227,.14);
    --art-line-soft: rgba(240,235,227,.08);
    --art-text: #f0ebe3;
    --art-muted: #b3a696;
    --art-accent: #7c9478;
    --art-accent-2: #8fa989;
  }
}

/* ---------- Base override kun til ny frontpage ---------- */
body{
  background: var(--art-bg);
  color: var(--art-text);
}

/* =========================================
   Header
========================================= */
.site-header-art{
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247,244,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--art-line-soft);
}

.site-header-art .wrap{
  padding-top: 18px;
  padding-bottom: 14px;
}

.header-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-bottom: 14px;
}

.brand-art{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--art-text);
  min-width: 0;
}

.brand-mark{
  width: 72px;
  height: 72px;
  border: 1.5px solid var(--art-text);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  flex-shrink: 0;
}

.brand-mark-text{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  transform: rotate(-8deg);
}

.brand-copy{
  display: grid;
  gap: 2px;
}

.brand-copy .brand-title{
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.header-title-block{
  text-align: center;
}

.header-kicker{
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.1;
}

.header-socials{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.header-socials a:hover{
  transform: translateY(-1px);
  opacity: .82;
}

.header-socials svg{
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.6;
}

.social-icon-facebook svg{
  fill: #1877F2;
}

.social-icon-instagram svg rect,
.social-icon-instagram svg circle:not(.social-icon-dot){
  stroke-width: 1.8;
}

@media (max-width: 640px){
  .header-socials a{
    width: 36px;
    height: 36px;
  }

  .header-socials svg{
    width: 17px;
    height: 17px;
  }
}

.site-nav-art{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--art-line);
}

.site-nav-art a{
  position: relative;
  text-decoration: none;
  color: var(--art-text);
  padding: 8px 2px;
  border-radius: 0;
  background: transparent;
  font-size: .98rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-nav-art a:hover{
  background: transparent;
  transform: none;
}

.site-nav-art a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .22s ease;
}

.site-nav-art a:hover::after,
.site-nav-art a.is-active::after{
  width: 100%;
}

/* =========================================
   Shared section helpers
========================================= */
.section{
  padding: 72px 0;
}

.section-intro{
  margin-bottom: 26px;
}

.section-intro-centered,
.section-head-centered{
  text-align: center;
}

.section-note{
  margin: 0;
  color: var(--art-muted);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-head{
  margin-bottom: 30px;
}

.section-head h2{
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}

.is-hidden-for-now{
  display: none;
}

/* =========================================
   Hero
========================================= */
.hero-editorial{
  padding: 26px 0 32px;
}

.hero-editorial .wrap{
  display: grid;
  gap: 26px;
}

.hero-editorial-media{
  position: relative;
  background: var(--art-surface);
}

.hero-editorial-image{
  width: 100%;
  height: min(72vh, 760px);
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.04);
}

.hero-editorial-content{
  text-align: center;
  display: grid;
  gap: 8px;
}

.hero-editorial-overline{
  margin: 0;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}

.hero-editorial-title{
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.hero-editorial-view-all{
  justify-self: center;
  margin-top: 6px;
  color: var(--art-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
  border-bottom: 1px solid var(--art-line);
  padding-bottom: 2px;
  transition: color .18s ease, border-color .18s ease;
}

.hero-editorial-view-all:hover{
  color: var(--art-text);
  border-color: var(--art-text);
}

/* =========================================
   Featured collection
========================================= */
.featured-collection-section{
  padding-top: 44px;
}

.featured-collection-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: center;
}

.collection-visual-card,
.collection-copy-card{
  min-width: 0;
}

.collection-visual-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-visual-media{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--art-surface);
  border: 1px solid var(--art-line-soft);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  cursor: pointer;
}

.collection-visual-media img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.collection-visual-media::after{
  content: "Preview";
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.92);
  color: #2a2420;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.collection-visual-media:hover img{
  transform: scale(1.035);
  filter: saturate(1.02);
}

.collection-visual-media:hover::after{
  opacity: 1;
  transform: translateY(0);
}

.collection-copy-card{
  display: grid;
  gap: 14px;
}

.collection-label{
  margin: 0;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .85rem;
}

.collection-copy-card h2{
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.collection-copy-card .muted{
  font-size: 1rem;
  line-height: 1.8;
  color: var(--art-muted);
}

.card-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* =========================================
   Buttons
========================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--art-accent);
  background: var(--art-accent);
  color: #fff;
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .84rem;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: var(--art-accent-2);
  border-color: var(--art-accent-2);
}

.btn-outline{
  background: transparent;
  color: var(--art-text);
  border-color: rgba(0,0,0,.16);
}

.btn-outline:hover{
  background: rgba(0,0,0,.05);
  border-color: rgba(0,0,0,.22);
}

/* =========================================
   More Art
========================================= */
.more-art-section{
  padding-top: 48px;
}

.art-preview-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.art-preview-card{
  display: grid;
  gap: 12px;
}

.art-preview-image-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.art-preview-media{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--art-surface);
  border: 1px solid var(--art-line-soft);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  cursor: pointer;
}

.art-preview-media img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
}

.art-preview-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  z-index: 1;
}

.art-preview-media::after{
  content: "Preview";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: #2a2420;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.art-preview-media:hover img{
  transform: scale(1.04);
  filter: saturate(1.03);
}

.art-preview-media:hover::before,
.art-preview-media:hover::after{
  opacity: 1;
}

.art-preview-media:hover::after{
  transform: translateY(0);
}

.art-preview-body{
  display: grid;
  gap: 4px;
  padding: 0 2px;
}

.art-preview-body h3{
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.art-preview-body h3 a{
  text-decoration: none;
  color: var(--art-text);
}

.art-preview-body h3 a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.art-preview-body .muted{
  margin: 0;
  font-size: .95rem;
}

.art-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.art-badge-sold{
  background: var(--art-badge-dark);
  color: #fff;
}

.art-badge-available{
  background: var(--art-badge-light);
  color: #2a2420;
  border: 1px solid rgba(42,36,32,.08);
}

.more-art-actions{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
   Reviews
========================================= */
.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card{
  background: var(--art-surface);
  border-radius: 20px;
  border: 1px solid var(--art-line-soft);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  padding: 20px;
}

/* =========================================
   Lightbox polish
========================================= */
.lightbox{
  background: rgba(12,12,12,.90);
  padding: 28px;
  z-index: 9999;
}

.lightbox img{
  max-width: min(1200px, 94vw);
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.40);
}

/* =========================================
   Footer polish
========================================= */
.site-footer{
  margin-top: 20px;
  padding: 40px 0 48px;
  border-top: 1px solid var(--art-line-soft);
  background: transparent;
}

.footer-inner{
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.footer-links{
  justify-content: center;
}

.footer-links a{
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 1100px){
  .art-preview-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-collection-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px){
  .header-top{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-art{
    justify-content: center;
  }

  .header-socials{
    justify-content: center;
  }

  .site-nav-art{
    gap: 16px;
  }

  .hero-editorial-image{
    height: 58vh;
    min-height: 340px;
    border-radius: 18px;
  }

  .featured-collection-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collection-copy-card{
    text-align: center;
  }

  .card-actions{
    justify-content: center;
  }

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

@media (max-width: 640px){
  .section{
    padding: 54px 0;
  }

  .site-header-art .wrap{
    padding-top: 14px;
    padding-bottom: 12px;
  }

  .brand-mark{
    width: 62px;
    height: 62px;
  }

  .header-kicker{
    letter-spacing: .12em;
    line-height: 1.2;
  }

  .site-nav-art{
    gap: 10px 14px;
    padding-top: 12px;
  }

  .site-nav-art a{
    font-size: .9rem;
    letter-spacing: .05em;
  }

  .hero-editorial{
    padding-top: 18px;
  }

  .hero-editorial-image{
    height: 46vh;
    min-height: 280px;
  }

  .hero-editorial-overline{
    letter-spacing: .12em;
    font-size: .76rem;
  }

  .hero-editorial-title{
    letter-spacing: .06em;
  }

  .art-preview-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .more-art-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .more-art-actions .btn{
    width: 100%;
  }

  .lightbox{
    padding: 16px;
  }
}




/* =========================================
   Originals / Collections Overview Page
   Formål:
   - Collections-landing page
   - Visuelle bokse med billede bag navn
   - 2 ekstra slots kan skjules indtil senere
========================================= */

.collections-hero{
  padding: 48px 0 22px;
}

.collections-hero-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 12px;
}

.collections-hero-kicker{
  margin: 0;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}

.collections-hero-inner h1{
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.collections-hero-text{
  margin: 0;
  color: var(--art-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.collections-hero-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.collections-overview-section{
  padding-top: 26px;
}

.collections-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.collection-overview-card{
  min-width: 0;
}

.collection-overview-card-large{
  grid-column: span 2;
}

.collection-overview-link{
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border-radius: 24px;
  background: var(--art-surface);
  box-shadow: 0 18px 40px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.04);
}

.collection-overview-media{
  position: relative;
}

.collection-overview-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.12) 45%, rgba(0,0,0,.08));
  z-index: 1;
}

.collection-overview-media img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .35s ease;
}

.collection-overview-card-large .collection-overview-media img{
  height: 520px;
}

.collection-overview-overlay{
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.collection-overview-label{
  display: inline-block;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(6px);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.collection-overview-overlay h2{
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.collection-overview-link:hover .collection-overview-media img{
  transform: scale(1.04);
  filter: saturate(1.03);
}

.collection-overview-link:hover .collection-overview-overlay h2{
  text-decoration: underline;
  text-underline-offset: 5px;
}

.is-hidden-collection-slot{
  display: none;
}

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

  .collection-overview-card-large{
    grid-column: span 1;
  }

  .collection-overview-media img,
  .collection-overview-card-large .collection-overview-media img{
    height: 360px;
  }
}

@media (max-width: 640px){
  .collections-hero{
    padding: 30px 0 12px;
  }

  .collection-overview-link{
    border-radius: 18px;
  }

  .collection-overview-overlay{
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .collection-overview-media img,
  .collection-overview-card-large .collection-overview-media img{
    height: 300px;
  }
}


/* =========================================
   Collection Page – Untamed
   Formål:
   - Hero til collection-side
   - Story card
   - Grid med værker
========================================= */

.collection-hero{
  padding: 34px 0 28px;
}

.collection-hero-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 460px);
  gap: 34px;
  align-items: center;
}

.collection-hero-media,
.collection-hero-copy{
  min-width: 0;
}

.collection-hero-image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--art-line-soft);
  background: var(--art-surface);
  box-shadow: 0 18px 42px rgba(0,0,0,.10);
  cursor: pointer;
}

.collection-hero-image-wrap::after{
  content: "Preview";
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.94);
  color: #2a2420;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 2;
}

.collection-hero-image{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.collection-hero-image-wrap:hover .collection-hero-image{
  transform: scale(1.03);
  filter: saturate(1.03);
}

.collection-hero-image-wrap:hover::after{
  opacity: 1;
  transform: translateY(0);
}

.collection-hero-copy{
  display: grid;
  gap: 14px;
}

.collection-hero-kicker{
  margin: 0;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}

.collection-hero-copy h1{
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.collection-hero-text{
  margin: 0;
  color: var(--art-muted);
  font-size: 1rem;
  line-height: 1.9;
}

.collection-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.collection-story-section{
  padding-top: 10px;
  padding-bottom: 24px;
}

.collection-story-card{
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,.60);
  border: 1px solid var(--art-line-soft);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.collection-story-label{
  margin: 0 0 10px;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
}

.collection-story-text{
  margin: 0;
  color: var(--art-text);
  font-size: 1rem;
  line-height: 1.9;
}

/* About page: same story-card language, repeated per topic */
.about-story-section .wrap{
  display: grid;
  gap: 18px;
}

.about-story-section .collection-story-card{
  width: 100%;
}

.about-materials-list{
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
  display: grid;
  gap: 8px;
  color: var(--art-text);
  line-height: 1.7;
}

.about-story-actions{
  justify-content: center;
  margin-top: 6px;
}

.collection-works-section{
  padding-top: 24px;
}

.collection-works-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.collection-work-card{
  display: grid;
  gap: 12px;
}

.collection-work-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.collection-work-media{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--art-surface);
  border: 1px solid var(--art-line-soft);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  cursor: pointer;
}

.collection-work-media img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .34s ease, filter .34s ease;
}

.collection-work-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
  pointer-events: none;
}

.collection-work-media::after{
  content: "Preview";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: #2a2420;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.collection-work-media:hover img{
  transform: scale(1.04);
  filter: saturate(1.03);
}

.collection-work-media:hover::before,
.collection-work-media:hover::after{
  opacity: 1;
}

.collection-work-media:hover::after{
  transform: translateY(0);
}

.collection-work-body{
  display: grid;
  gap: 4px;
  padding: 0 2px;
}

.collection-work-body h3{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.collection-work-body h3 a{
  text-decoration: none;
  color: var(--art-text);
}

.collection-work-body h3 a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.collection-work-body .muted{
  margin: 0;
  font-size: .94rem;
}

@media (max-width: 1100px){
  .collection-works-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px){
  .collection-hero-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collection-hero-copy{
    text-align: center;
  }

  .collection-hero-actions{
    justify-content: center;
  }
}

@media (max-width: 640px){
  .collection-hero{
    padding-top: 22px;
  }

  .collection-hero-image-wrap{
    border-radius: 18px;
  }

  .collection-story-card{
    padding: 22px 18px;
    border-radius: 18px;
  }

  .collection-works-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


/* =========================================
   Dynamic Artwork Detail Page
   Formål:
   - Enkel, eksklusiv detaljeside for ét værk
========================================= */

/* =========================================
   Artwork Detail Thumbnails
========================================= */

.artwork-detail-thumbs{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 10px;
}

.artwork-thumb{
  appearance: none;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.artwork-thumb:hover{
  transform: translateY(-2px);
}

.artwork-thumb.is-active{
  border-color: rgba(0,0,0,.28);
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}

.artwork-thumb img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 640px){
  .artwork-detail-thumbs{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}



.artwork-detail-section{
  padding: 38px 0 56px;
}

.artwork-back-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--art-muted);
  text-decoration: none;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .18s ease, transform .18s ease;
}

.artwork-back-link:hover{
  color: var(--art-text);
  transform: translateX(-2px);
}

.artwork-back-link svg{
  flex-shrink: 0;
}

.artwork-detail-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 520px);
  gap: 34px;
  align-items: start;
}

.artwork-detail-media-col,
.artwork-detail-copy{
  min-width: 0;
}

.artwork-detail-image-wrap{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--art-surface);
  border: 1px solid var(--art-line-soft);
  box-shadow: 0 18px 42px rgba(0,0,0,.10);
  cursor: pointer;
}

.artwork-detail-image-wrap::after{
  content: "Preview";
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: rgba(255,255,255,.94);
  color: #2a2420;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 2;
}

.artwork-detail-image-wrap:hover::after{
  opacity: 1;
  transform: translateY(0);
}

.artwork-detail-image{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, filter .35s ease;
}

.artwork-detail-image-wrap:hover .artwork-detail-image{
  transform: scale(1.03);
  filter: saturate(1.03);
}

.artwork-detail-copy{
  display: grid;
  gap: 18px;
}

.artwork-detail-kicker{
  margin: 0;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}

.artwork-detail-copy h1{
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.artwork-detail-subtitle{
  margin: 0;
  color: var(--art-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.artwork-detail-meta-card,
.artwork-detail-story-card,
.artwork-not-found-card{
  background: rgba(255,255,255,.62);
  border: 1px solid var(--art-line-soft);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,.05);
}

.artwork-detail-meta-card h2,
.artwork-detail-story-card h2{
  margin: 0 0 14px;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.artwork-detail-list{
  margin: 0;
}

.artwork-detail-story-card p{
  margin: 0;
  line-height: 1.9;
}

.artwork-detail-actions{
  margin-top: 4px;
}

.artwork-not-found-card{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.artwork-not-found-card h1{
  margin: 0 0 10px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px){
  .artwork-detail-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px){
  .artwork-detail-section{
    padding-top: 24px;
  }

  .artwork-detail-image-wrap,
  .artwork-detail-meta-card,
  .artwork-detail-story-card,
  .artwork-not-found-card{
    border-radius: 18px;
  }

  .artwork-detail-meta-card,
  .artwork-detail-story-card,
  .artwork-not-found-card{
    padding: 20px 18px;
  }
}

/* =========================================
   Sold Artworks Page - single source of truth
========================================= */

.sold-artworks-hero{
  padding: 48px 0 22px;
}

.sold-artworks-hero-inner{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 12px;
}

.sold-artworks-kicker{
  margin: 0;
  color: var(--art-muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .82rem;
}

.sold-artworks-hero-inner h1{
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.sold-artworks-text{
  margin: 0;
  color: var(--art-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.sold-artworks-section{
  padding-top: 26px;
}

.sold-artworks-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sold-artwork-card{
  display: grid;
  gap: 12px;
  min-width: 0;
}

.sold-artwork-link{
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.sold-artwork-media{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: var(--art-surface);
  border: 1px solid var(--art-line-soft);
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  cursor: pointer;
}

.sold-artwork-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .34s ease, filter .34s ease;
  filter: saturate(.92);
}

.sold-artwork-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
  pointer-events: none;
}

.sold-artwork-media::after{
  content: "Preview";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(255,255,255,.94);
  color: #2a2420;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.sold-artwork-media:hover img{
  transform: scale(1.04);
  filter: saturate(1);
}

.sold-artwork-media:hover::before,
.sold-artwork-media:hover::after{
  opacity: 1;
}

.sold-artwork-media:hover::after{
  transform: translateY(0);
}

.sold-artwork-body{
  display: grid;
  gap: 4px;
  padding: 0 2px;
}

.sold-artwork-body h2{
  margin: 0;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.sold-artwork-body h2 a{
  text-decoration: none;
  color: var(--art-text);
}

.sold-artwork-body h2 a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sold-artwork-body .muted{
  margin: 0;
  font-size: .95rem;
}

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

/* =========================================
   Dark mode - remaining hardcoded (non-variable) chrome colors
   Formål:
   - Everything driven by --bg/--text/--art-* etc. already adapts via
     the :root overrides above. This block only patches the handful of
     rules that hardcoded a light-mode color instead of using a token.
========================================= */
@media (prefers-color-scheme: dark){
  .site-header,
  .site-header-art{
    background: rgba(27,24,21,.90);
  }

  input, select, textarea{
    background: var(--input-bg);
    color: var(--text);
    border-color: var(--border-med);
  }

  input:focus, select:focus, textarea:focus{
    outline-color: var(--border-strong);
  }

  .card,
  .list-card,
  .form{
    border-color: var(--border-soft);
  }

  .btn-outline{
    border-color: var(--border-strong);
  }

  .btn-outline:hover{
    background: var(--overlay-hover);
  }

  .collection-story-card{
    background: var(--surface-translucent-strong);
  }

  .footer-links a{
    background: var(--surface-translucent);
    border-color: var(--border-soft);
  }

  .footer-links a:hover{
    background: var(--card);
  }

  .fact{
    background: rgba(240,235,227,.06);
  }

  .about-facts .fact{
    color: var(--text);
  }
}

@media (max-width: 640px){
  .sold-artworks-hero{
    padding: 30px 0 12px;
  }

  .sold-artworks-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}