/* ========================================
   TATTOO FASHION — LANDING PAGE (GHL LEAD FORM)
   Selvstændigt stylesheet — deler tokens med style.css
   ======================================== */

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

/* Varm, "åben" sort — løftet fra kulsort (#0a0a0a) til en dyb,
   let brunlig tone der spiller sammen med guldet */
:root {
  --bg-primary: #151210;
  --bg-secondary: #1c1814;
  --bg-card: #241e18;
  --text-primary: #ffffff;
  --text-secondary: #a49c93;
  --text-muted: #6e665d;
  --accent: #c9a55c;
  --accent-hover: #dbb978;
  --border: #322a22;
  --success: #4ade80;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- FÆLLES TYPOGRAFI --- */
.lp-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}
.lp-label::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.lp-title {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  margin-bottom: 40px;
}

.lp-stars {
  color: var(--accent);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(201, 165, 92, 0.4);
}

/* --- KNAPPER --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 8px 25px -10px rgba(201, 165, 92, 0.5);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -10px rgba(201, 165, 92, 0.7);
}
.btn-primary:hover::after { left: 100%; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* --- HEADER --- */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}
.lp-header.scrolled {
  background: rgba(21, 18, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 165, 92, 0.25);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  height: 62px;
}

.lp-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.lp-logo-sub {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.lp-header-phone:hover { color: var(--text-primary); }

.lp-header-cta {
  padding: 9px 22px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: 0 4px 15px -5px rgba(201, 165, 92, 0.5);
  transition: background 0.3s, box-shadow 0.3s;
}
.lp-header-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px -5px rgba(201, 165, 92, 0.8);
}

/* --- HERO + FORMULAR --- */
.lp-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 110px 0 72px;
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--bg-primary);
}
.lp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  animation: lp-kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes lp-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.09); }
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(19, 16, 13, 0.88) 0%,
    rgba(19, 16, 13, 0.7) 55%,
    rgba(19, 16, 13, 0.85) 100%
  );
}

.lp-hero .container {
  position: relative;
  z-index: 2;
}

/* Hero får lidt ekstra bredde, og formular-kolonnen er den brede */
.lp-hero .container {
  max-width: 1280px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.lp-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}

.lp-h1 {
  font-family: 'Bebas Neue', sans-serif;
  /* Loftet er sat, så overskriften holder to linjer i den smalle
     hero-kolonne ved siden af formularen (536px på store skærme) */
  font-size: clamp(2.6rem, 5.5vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

/* Tilbuds-boksen — kampagnens hovedbudskab */
.lp-offer {
  position: relative;
  display: block;
  padding: 26px 30px;
  margin: 10px 0 30px;
  background: linear-gradient(135deg, rgba(201, 165, 92, 0.22), rgba(201, 165, 92, 0.05));
  border: 2px solid var(--accent);
  border-radius: 14px;
  animation: lp-offer-glow 3s ease-in-out infinite;
}
@keyframes lp-offer-glow {
  0%, 100% { box-shadow: 0 14px 50px -12px rgba(201, 165, 92, 0.45); }
  50% { box-shadow: 0 14px 64px -8px rgba(201, 165, 92, 0.8); }
}

/* Glans-strejf der fejer hen over tilbuddet — som lys over poleret guld.
   Egen wrapper med overflow:hidden, så badgen ovenover ikke klippes */
.lp-offer-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.lp-offer-shine::before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: 0;
  width: 45%;
  background: linear-gradient(
    105deg,
    transparent 15%,
    rgba(255, 244, 214, 0.16) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 244, 214, 0.16) 60%,
    transparent 85%
  );
  transform: translateX(-260%) skewX(-18deg);
  animation: lp-offer-shine 4.5s ease-in-out infinite;
}
@keyframes lp-offer-shine {
  0% { transform: translateX(-260%) skewX(-18deg); }
  55%, 100% { transform: translateX(460%) skewX(-18deg); }
}

.lp-offer-badge {
  position: absolute;
  top: -13px;
  left: 18px;
  padding: 4px 14px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  white-space: nowrap;
}

.lp-offer-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
}
.lp-offer-price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
/* Desktop: normalpris og rabat står side om side med prisen */
.lp-offer-secondary {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lp-offer-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 4.6rem);
  line-height: 0.95;
  color: var(--accent);
  text-shadow: 0 0 40px rgba(201, 165, 92, 0.5);
}
.lp-offer-unit {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

/* Normalpris fremhævet: tydelig, med rød overstregning som "før-pris" */
.lp-offer-was {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.35;
}
.lp-offer-was-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.lp-offer-was-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  line-height: 1.3;
  color: #ddd7d0;
  text-decoration: line-through;
  text-decoration-color: #e0554e;
  text-decoration-thickness: 2px;
}

.lp-offer-save {
  align-self: center;
  padding: 7px 17px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 100px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px -4px rgba(201, 165, 92, 0.8);
}


.lp-hero-sub {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #c4c4c4;
  max-width: 520px;
  margin-bottom: 24px;
}


.lp-hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-hero-checks li {
  position: relative;
  padding-left: 32px;
  font-size: 1rem;
  font-weight: 500;
}
.lp-hero-checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--accent);
  border-radius: 50%;
  margin-top: 2px;
}

/* Formular-kortet */
.lead-card {
  position: relative;
  scroll-margin-top: 84px;
  background: linear-gradient(180deg, #262019 0%, #1a1613 100%);
  border: 1.5px solid rgba(201, 165, 92, 0.35);
  border-radius: 16px;
  padding: 30px 28px 24px;
  box-shadow: 0 25px 60px -20px rgba(0, 0, 0, 0.7),
              0 0 0 1px rgba(201, 165, 92, 0.08);
}
.lead-card::before {
  content: "";
  position: absolute;
  top: -1.5px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  border-radius: 2px;
}





/* GHL-formularens plads — embed-scriptet styrer selv højden.
   min-height ligger tæt på formularens reelle højde (976px), så
   siden ikke hopper, mens scriptet loader */
.ghl-form-wrap {
  min-height: 700px;
}
.ghl-form-wrap iframe {
  width: 100%;
  border: none;
  border-radius: 8px;
  min-height: 700px;
}


/* --- STATS --- */
.lp-stats {
  padding: 56px 0;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(201, 165, 92, 0.15);
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lp-stat {
  padding: 20px 18px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(201, 165, 92, 0.05) 0%, transparent 100%);
}
.lp-stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

/* --- LILLE ELLER STOR --- */
.lp-paths {
  padding: 110px 0;
}

/* Størrelsesskalaen — sidens signatur */
.size-scale {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 720px;
  margin: -8px 0 48px;
  padding-top: 14px;
}
.size-scale-line {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 165, 92, 0.15), var(--accent) 50%, rgba(201, 165, 92, 0.15));
  border-radius: 2px;
}
.size-tick {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.size-tick::before {
  content: "";
  width: 2px;
  height: 12px;
  background: var(--accent);
  margin-top: -5px;
  margin-bottom: 8px;
}
.size-tick span {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  white-space: nowrap;
}
.size-tick:first-child { align-items: flex-start; }
.size-tick:last-child { align-items: flex-end; }

.lp-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--bg-card) 0%, #1a1512 100%);
  border: 1.5px solid #362e25;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.path-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -20px rgba(201, 165, 92, 0.35);
}

.path-chip {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(201, 165, 92, 0.1);
  border: 1px solid rgba(201, 165, 92, 0.35);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 18px;
}

.path-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.path-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.path-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.path-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
}
.path-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.path-list s {
  color: var(--text-muted);
}

.path-cta {
  margin-top: auto;
  font-size: 0.78rem;
  padding: 13px 24px;
}

/* --- STØRRELSESGUIDE --- */
.size-guide {
  padding: 84px 0;
}

.size-guide-sub {
  max-width: 620px;
  margin: -16px 0 48px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.size-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.size-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1.5px solid #362e25;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.size-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -20px rgba(201, 165, 92, 0.35);
}

.size-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #1a1512;
  overflow: hidden;
}
.size-media img,
.size-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.size-card-info {
  padding: 16px 18px 18px;
}
.size-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.size-card-tag {
  padding: 4px 12px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 100px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.size-card-cm {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}
.size-card-info h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.size-card-info p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* --- SÅDAN FOREGÅR DET --- */
.lp-steps {
  padding: 110px 0;
  background: var(--bg-secondary);
  position: relative;
}
.lp-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.lp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.lp-step-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.lp-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.lp-step p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.lp-inline-cta {
  text-align: center;
}

/* --- INSPIRATION — MASONRY-GALLERI --- */
.insp-section {
  padding: 110px 0;
}

.insp-sub {
  max-width: 620px;
  margin: -16px 0 40px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* To automatisk glidende rækker — samme marquee-princip som anmeldelserne */
.gal-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.gal-row {
  overflow: hidden;
  /* Marqueen auto-scroller, så touch skal kun panorere siden lodret —
     ellers "hopper" siden, når man ruller forbi på mobil */
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gal-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: tp-scroll var(--gal-dur, 60s) linear infinite;
}
.gal-row-reverse .gal-track {
  animation-direction: reverse;
}
.gal-row:hover .gal-track {
  animation-play-state: paused;
}

.gal-group {
  display: flex;
  gap: 14px;
  padding: 0 7px;
}

.insp-item {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 210px;
  height: 280px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  cursor: zoom-in;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.insp-item-large {
  width: 300px; /* featured = bredere felt */
}
.insp-item:hover {
  border-color: var(--accent);
  box-shadow: 0 15px 40px -18px rgba(201, 165, 92, 0.4);
}
.insp-item img,
.insp-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.insp-item:hover img,
.insp-item:hover video {
  transform: scale(1.04);
}

/* Play-badge på video-felter */
.media-play-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 18, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}
.media-play-badge svg {
  margin-left: 2px;
}

.insp-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(19, 16, 13, 0) 40%, rgba(19, 16, 13, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insp-item:hover .insp-item-overlay,
.insp-item:focus-visible .insp-item-overlay {
  opacity: 1;
}

/* Lightbox */
.insp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(13, 11, 9, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 72px;
}
.insp-lightbox[hidden] {
  display: none;
}
.insp-lb-img,
.insp-lb-video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}
.insp-lb-img[hidden],
.insp-lb-video[hidden] {
  display: none;
}
.insp-lb-close,
.insp-lb-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.insp-lb-close:hover,
.insp-lb-nav:hover {
  background: rgba(201, 165, 92, 0.25);
  border-color: var(--accent);
}
.insp-lb-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}
.insp-lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
  padding-bottom: 4px;
}
.insp-lb-prev { left: 16px; }
.insp-lb-next { right: 16px; }
.insp-lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

/* --- KUNSTNERE --- */
.lp-artists {
  padding: 110px 0;
  background: var(--bg-secondary);
  position: relative;
}
.lp-artists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.lp-artists-sub {
  max-width: 640px;
  margin: -16px 0 48px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.lp-artists-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-artist {
  background: var(--bg-card);
  border: 1.5px solid #362e25;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-artist:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px -18px rgba(201, 165, 92, 0.35);
}
.lp-artist img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.lp-artist-info {
  padding: 16px 18px 18px;
}
.lp-artist strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp-artist span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-top: 2px;
}
.lp-artist p {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* --- STUDIET --- */
.lp-studio {
  padding: 110px 0;
}

.lp-studio-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.lp-studio-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.lp-studio-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.lp-title-left {
  margin-bottom: 20px;
}

.lp-studio-info > p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.lp-studio-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-studio-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.lp-studio-facts svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

/* --- FIND OS — ADRESSE OG KORT --- */
.lp-map-section {
  padding: 110px 0;
  position: relative;
}
.lp-map-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.lp-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.lp-map-info > p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.lp-map-info > p:last-child {
  margin-bottom: 0;
}
.lp-map-address strong {
  color: var(--text-primary);
}

/* Kortet ligger nu i bunden af den sammenslåede studie-sektion */
.lp-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-top: 32px;
}
.lp-map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* --- ANMELDELSER — TRUSTPILOT-MARQUEE --- */
.tp-section {
  padding: 110px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.tp-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.tp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: #ffffff;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.6);
}
.tp-badge strong {
  font-size: 0.9rem;
  font-weight: 700;
  color: #191919;
}
.tp-badge-stars {
  display: inline-flex;
  gap: 2px;
}
.tp-badge-stars span {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00b67a;
  color: #ffffff;
  font-size: 0.7rem;
  line-height: 1;
}

.tp-title {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 720px;
}
.tp-score {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(201, 165, 92, 0.3);
}

.tp-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 32px;
}

.tp-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 48px;
}
.tp-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.tp-stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--accent);
}
.tp-stat span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Marquee-rækker */
.tp-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tp-row {
  overflow: hidden;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tp-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: tp-scroll var(--tp-dur, 50s) linear infinite;
}
.tp-row-reverse .tp-track {
  animation-direction: reverse;
}
.tp-row:hover .tp-track {
  animation-play-state: paused;
}
@keyframes tp-scroll {
  to { transform: translateX(-50%); }
}

.tp-group {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 0 10px;
}

/* Kort — hvide med Trustpilot-grønne stjerner */
.tp-card {
  display: flex;
  flex-direction: column;
  width: 360px;
  flex-shrink: 0;
  padding: 24px 24px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 35px -18px rgba(0, 0, 0, 0.55);
}

.tp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tp-stars {
  display: inline-flex;
  gap: 3px;
}
.tp-stars i {
  font-style: normal;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00b67a;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1;
}
.tp-quote {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  line-height: 0.6;
  color: rgba(201, 165, 92, 0.55);
}

.tp-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #141414;
  margin-bottom: 8px;
}
.tp-card > p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.tp-card-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.tp-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3ead8;
  color: #8a6d2f;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.tp-card-author {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tp-card-author strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #141414;
}
.tp-card-author span {
  font-size: 0.76rem;
  color: #767676;
}
.tp-verified {
  margin-left: auto;
  padding: 5px 10px;
  background: rgba(0, 182, 122, 0.12);
  color: #00875c;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* --- FAQ --- */
.lp-faq {
  padding: 110px 0;
}

.lp-faq-list {
  max-width: 780px;
}

.lp-faq-item {
  border: 1.5px solid #362e25;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 4px 24px;
  background: var(--bg-card);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lp-faq-item:hover {
  border-color: rgba(201, 165, 92, 0.4);
}
.lp-faq-item.open {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201, 165, 92, 0.05), transparent);
}

.lp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}
.lp-faq-q:hover { color: var(--accent); }

.lp-faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.lp-faq-item.open .lp-faq-icon {
  transform: rotate(180deg);
}

.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.lp-faq-item.open .lp-faq-a {
  max-height: 260px;
}
.lp-faq-a p {
  padding-bottom: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- AFSLUTTENDE CTA --- */
.lp-final {
  padding: 110px 0;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
}
.lp-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.lp-final-title {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 14px;
}
.lp-final-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.lp-final-sub strong {
  color: var(--accent);
}
.lp-final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.lp-final-cta {
  font-size: 0.95rem;
  padding: 17px 48px;
}
.lp-final-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.3s;
}
.lp-final-phone:hover { color: var(--accent-hover); }
.lp-final-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- INSTAGRAM --- */
.ig-section {
  padding: 110px 0;
  position: relative;
}
.ig-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.ig-sub {
  max-width: 620px;
  margin: -16px 0 40px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

.ig-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.ig-item img,
.ig-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ig-item:hover img,
.ig-item:hover video {
  transform: scale(1.06);
}

.ig-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 165, 92, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-item:hover .ig-item-overlay,
.ig-item:focus-visible .ig-item-overlay {
  opacity: 1;
}

.ig-btn {
  gap: 10px;
}

/* --- FOOTER --- */
.lp-footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.lp-footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.lp-footer p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.lp-footer a { color: var(--accent); }
.lp-footer-legal {
  font-size: 0.75rem !important;
  color: var(--text-muted) !important;
}

/* --- FLYDENDE ELEMENTER --- */
.lp-mobile-cta {
  display: none;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVT --- */
@media (max-width: 1024px) {
  .lp-hero {
    min-height: 0;
    padding: 92px 0 56px;
  }
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp-hero-sub { max-width: none; }
  .lp-artists-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-studio-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .lp-paths,
  .lp-steps,
  .size-guide,
  .insp-section,
  .lp-artists,
  .lp-studio,
  .lp-map-section,
  .tp-section,
  .lp-faq,
  .lp-final,
  .ig-section {
    padding: 64px 0;
  }

  /* Størrelsesguide bliver en swipebar række på mobil.
     touch-action: pan-x = rækken reagerer KUN på vandret swipe, så den
     står helt stille, når man scroller lodret op/ned på siden */
  .size-guide-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px;
    margin: -4px 0 32px;
  }
  .size-guide-grid::-webkit-scrollbar { display: none; }
  .size-card {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
  }

  .lp-map-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .lp-map-wrap iframe { height: 300px; }
  .lp-title { margin-bottom: 28px; }

  .lp-stats { padding: 36px 0; }
  .lp-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .lp-paths-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .size-scale { margin-bottom: 36px; }
  .size-tick:nth-child(4) span { display: none; }

  .lp-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Kunstnerne bliver en swipebar række, så sektionen holder sig kompakt.
     touch-action: pan-x = rækken står stille ved lodret scroll og
     reagerer kun på vandret swipe */
  .lp-artists-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px;
    margin: -4px;
  }
  .lp-artists-row::-webkit-scrollbar { display: none; }
  .lp-artist {
    flex: 0 0 auto;
    width: 240px;
    scroll-snap-align: start;
  }
  .lp-artist-info { padding: 12px 14px 14px; }
  .lp-artist p { font-size: 0.8rem; }

  .gal-rows { gap: 10px; margin-bottom: 28px; }
  .gal-group { gap: 10px; padding: 0 5px; }
  .insp-item {
    width: 132px;
    height: 176px;
    border-radius: 8px;
  }
  .insp-item-large { width: 176px; }
  .media-play-badge { top: 8px; right: 8px; width: 28px; height: 28px; }
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 28px;
  }
  .insp-lightbox { padding: 64px 12px; }
  .insp-lb-nav { width: 42px; height: 42px; }
  .insp-lb-prev { left: 8px; }
  .insp-lb-next { right: 8px; }

  .tp-header { margin-bottom: 36px; }
  .tp-stats { gap: 10px 28px; }
  .tp-card {
    width: 300px;
    padding: 20px 20px 16px;
  }
  .tp-group { gap: 14px; padding: 0 7px; }
  .tp-rows { gap: 16px; }

  .lead-card {
    padding: 24px 20px 20px;
  }

  /* På mobil trækkes formularen så højt op som muligt:
     eyebrow'en fjernes (headeren siger allerede brandnavnet), og
     USP-punkterne flyttes ned UNDER formular-kortet.
     display: contents gør hero-teksten til direkte flex-børn, så
     rækkefølgen kan styres med order. */
  .lp-hero-copy { display: contents; }
  .lp-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .lp-eyebrow { display: none; }
  /* Skalerer med skærmbredden, så overskriften altid holder to rene
     linjer (ellers står "pris" alene på linje tre på smalle telefoner) */
  .lp-h1 { order: 1; margin-bottom: 0; font-size: min(2.3rem, 9.1vw); }
  .lp-offer { order: 2; margin: 0; }
  .lead-card { order: 4; }
  .lp-hero-checks { order: 5; margin-bottom: 4px; }

  /* Tilbudsboksen ryddes op: prisen står alene øverst, og
     normalpris + rabat deler en rolig linje nedenunder */
  .lp-offer { padding: 22px 20px 18px; }
  .lp-offer-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .lp-offer-price { font-size: 2.9rem; }
  .lp-offer-secondary {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .lp-offer-was {
    flex-direction: row;
    align-items: baseline;
    gap: 7px;
  }
  .lp-offer-was-price { font-size: 1.35rem; }

  .lp-header-phone span { display: none; }
  .lp-header-actions { gap: 12px; }

  /* På mobil gemmer headeren sig, når man ruller ned (bund-CTA'en
     overtager) — og glider frem igen, når man ruller op */
  .lp-header.lp-header-hidden {
    transform: translateY(-100%);
  }

  /* Sticky mobil-CTA — fast højde og ingen linjeskift, så den ikke bliver for høj */
  .lp-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 12px;
    background: var(--accent);
    color: var(--bg-primary);
    text-align: center;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .lp-mobile-cta.visible {
    transform: translateY(0);
  }

  .lp-footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 480px) {
  .lp-logo-sub { display: none; }
  .lp-logo { font-size: 1.2rem; }
}

/* --- REDUCERET BEVÆGELSE --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  /* Marqueerne står stille — rækkerne kan i stedet scrolles manuelt */
  .tp-track,
  .gal-track {
    animation: none;
    width: auto;
  }
  .tp-row,
  .gal-row {
    overflow-x: auto;
    touch-action: auto; /* rækkerne står stille, så manuel scroll skal virke */
    -webkit-mask-image: none;
    mask-image: none;
  }
  .tp-group[aria-hidden="true"],
  .gal-group[aria-hidden="true"] {
    display: none;
  }
}


/* ==========================================================
   PRISER — kun brugt på smaa.html (små tatoveringer).
   Egne klassenavne, så sessions-siden (landing.html) er
   upåvirket: den refererer ingen af dem.
   ========================================================== */
.lp-prices {
  padding: 84px 0;
  background: var(--bg-secondary);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 12px; /* plads til "Bedste pris"-flaget, der stikker op */
  margin-bottom: 26px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 26px 22px 24px;
  background: var(--bg-card);
  border: 1.5px solid #362e25;
  border-radius: 14px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px -20px rgba(201, 165, 92, 0.35);
}

.price-card-what {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.price-card-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.9rem;
  line-height: 1;
  color: var(--accent);
}
.price-card-note {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
.price-card-save {
  margin-top: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(201, 165, 92, 0.45);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-hover);
}

/* Pakketilbuddet træder frem som det bedste køb */
.price-card-best {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(201, 165, 92, 0.16), var(--bg-card) 60%);
}
.price-card-best .price-card-amount {
  text-shadow: 0 0 34px rgba(201, 165, 92, 0.5);
}
.price-card-best .price-card-save {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
}
.price-card-flag {
  position: absolute;
  top: -12px;
  left: 18px;
  padding: 4px 13px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 100px;
  white-space: nowrap;
}

.price-foot {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Tilbudsboksens størrelsesmål: samme plads som normalprisen på
   sessions-siden, men uden overstregning */
.lp-offer-size {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  line-height: 1.3;
  color: #ddd7d0;
}

/* Variant til små tatoveringer: prisenheden er længere end sessions-sidens
   "pr. session", så målet står på én linje, og prisen får sin egen linje
   på mobil i stedet for at knække midt i "400 kr." */
.lp-offer-sm .lp-offer-was {
  flex-direction: row;
  align-items: baseline;
  gap: 7px;
}

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

@media (max-width: 768px) {
  .lp-prices { padding: 60px 0; }
  .price-grid { gap: 12px; }
  .price-card { padding: 22px 16px 20px; }
  .price-card-amount { font-size: 2.3rem; }
  .price-foot { text-align: left; }
  .lp-offer-size { font-size: 1.35rem; }
  .lp-offer-sm .lp-offer-price-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

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