/* ============================================================
   Viborg Tattoo & Kunst Studie — Design System
   Editorial, artistic, sustainable. Mobile-first.
   ============================================================ */

:root {
  /* Color tokens */
  --bg: #181410;
  --bg-soft: #1f1a14;
  --surface: #231d16;
  --surface-elevated: #2b241c;
  --border: #3a302568;
  --border-strong: #4a3d2e;
  --foreground: #f5f0e6;
  --muted: #b6ae9e;
  --muted-strong: #d6cfbf;
  --accent: #f5f0e6;        /* warm cream - primary CTA fill */
  --accent-soft: #ffffff;   /* pure white - hover / link */
  --accent-deep: #b8ad97;   /* muted cream for shadows / depth */
  --copper: #d4a26a;        /* warm artistic copper (kept for stars/details) */
  --copper-soft: #e8c39b;
  --ring: #f5f0e6;          /* bright cream focus ring */
  --danger: #d77878;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 22px;
  --header-h: 4.75rem;

  /* Type scale (fluid) */
  --step--1: clamp(0.875rem, 0.84rem + 0.18vw, 0.95rem);
  --step-0:  clamp(1rem, 0.97rem + 0.18vw, 1.0625rem);
  --step-1:  clamp(1.125rem, 1.07rem + 0.3vw, 1.25rem);
  --step-2:  clamp(1.25rem, 1.18rem + 0.4vw, 1.5rem);
  --step-3:  clamp(1.5rem, 1.35rem + 0.8vw, 2rem);
  --step-4:  clamp(2rem, 1.7rem + 1.6vw, 2.85rem);
  --step-5:  clamp(2.5rem, 1.9rem + 3vw, 4rem);
  --step-6:  clamp(3rem, 2.2rem + 4vw, 5.25rem);

  /* Shadows */
  --shadow-soft: 0 1px 2px rgb(0 0 0 / 0.25), 0 8px 32px rgb(0 0 0 / 0.25);
  --shadow-card: 0 1px 1px rgb(0 0 0 / 0.4), 0 14px 40px -12px rgb(0 0 0 / 0.55);

  color-scheme: dark;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@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;
  }
}
body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
h1 { font-size: var(--step-6); }
h2 { font-size: var(--step-5); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

p { color: var(--muted-strong); max-width: 70ch; }
.lead { font-size: var(--step-1); color: var(--muted-strong); max-width: 62ch; }
.muted { color: var(--muted); }

::selection { background: rgb(245 240 230 / 0.28); color: var(--foreground); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

.section { padding-block: clamp(3rem, 5vw + 2rem, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 3vw + 1.5rem, 4.5rem); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  padding: 0.55rem 1rem;
  background: var(--accent);
  color: #1a1610;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; }
.btn--primary { background: var(--accent); color: #14110b; font-weight: 700; }
.btn--primary:hover { background: var(--accent-soft); }
.btn--outline { background: transparent; color: var(--foreground); border-color: rgb(245 240 230 / 0.32); }
.btn--outline:hover { background: rgb(245 240 230 / 0.08); border-color: var(--accent-soft); }
.btn--ghost { background: transparent; color: var(--foreground); padding-inline: 0.5rem; }
.btn--ghost:hover { color: var(--accent); }
.btn--lg { padding: 0.95rem 1.7rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgb(24 20 16 / 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--foreground);
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, #f5f0e6 0%, #b8ad97 100%);
  display: grid;
  place-items: center;
  color: #14110b;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.brand__name { line-height: 1; }
.brand__name span { display: block; }
.brand__sub { font-family: "Inter", sans-serif; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: 0.4rem; list-style: none; padding: 0; }
.nav__link {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--muted-strong);
  transition: color 180ms ease, background 180ms ease;
}
.nav__link:hover { color: var(--foreground); background: rgb(245 240 230 / 0.05); }
.nav__link[aria-current="page"] { color: var(--foreground); background: rgb(245 240 230 / 0.1); }
.nav__cta { margin-left: 0.5rem; }

@media (min-width: 960px) {
  .nav { display: block; }
  .nav-toggle { display: none !important; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  color: var(--foreground);
}
.nav-toggle:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.nav-toggle__icon, .nav-toggle__icon::before, .nav-toggle__icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 150ms ease;
}
.nav-toggle__icon { position: relative; }
.nav-toggle__icon::before, .nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__icon::before { top: -7px; }
.nav-toggle__icon::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 49;
  background: rgb(24 20 16 / 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 1.25rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 240ms ease, visibility 0s linear 240ms;
}
.mobile-nav[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
  transition: transform 240ms ease, visibility 0s linear 0s;
}
.mobile-nav__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  color: var(--foreground);
  border: 1px solid transparent;
}
.mobile-nav__link[aria-current="page"] { border-color: var(--border-strong); background: rgb(245 240 230 / 0.06); }
.mobile-nav__link:hover { background: rgb(245 240 230 / 0.05); }
.mobile-nav__cta { margin-top: 1rem; }
@media (min-width: 960px) { .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(540px, 78vh, 760px);
  display: flex;
  align-items: flex-end;
  background: var(--bg);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(24 20 16 / 0.45) 0%, rgb(24 20 16 / 0.15) 35%, rgb(24 20 16 / 0.85) 90%, var(--bg) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.hero__title { max-width: 22ch; line-height: 1.04; }
.hero__title span { display: block; }
.hero__lead { margin-top: 1.5rem; max-width: 50ch; color: var(--muted-strong); }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero--small {
  min-height: clamp(560px, 78vh, 760px);
  padding-block: clamp(3rem, 6vw, 5rem);
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
}
.hero--small .hero__media { opacity: 0.5; }
.hero--small .hero__title { max-width: 22ch; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}
.card:hover { border-color: var(--border-strong); }
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(245 240 230 / 0.08);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.card__icon svg { width: 22px; height: 22px; }
.card__title { font-size: var(--step-2); margin-bottom: 0.5rem; }
.card__text { color: var(--muted); }

/* Feature list (Vores Værdi grid) */
.feature {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgb(245 240 230 / 0.02);
}
.feature__title { font-family: "Inter", sans-serif; font-size: 1rem; font-weight: 600; color: var(--foreground); letter-spacing: 0.02em; }
.feature__text { color: var(--muted); font-size: 0.95rem; }

/* ---------- Image frames ---------- */
.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4 / 3;
}
.frame--16x9 { aspect-ratio: 16 / 9; }
.frame--1x1 { aspect-ratio: 1 / 1; }
.frame--portrait { aspect-ratio: 3 / 4; }
.frame img,
.frame video { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; display: block; }
.frame:hover img { transform: scale(1.03); }
.frame--video { background: #0c0c0c; }
.frame--video video { object-fit: contain; }

/* Full-bleed feature video / image — bigger radius, lifted shadow */
.frame--feature {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -28px rgb(0 0 0 / 0.85), 0 8px 24px -10px rgb(0 0 0 / 0.55);
}
@media (min-width: 768px) {
  .frame--feature { border-radius: 28px; }
}

/* Wider video layout for sections like "Vores historie" */
.split--video { align-items: center; }
@media (min-width: 900px) {
  .split--video {
    grid-template-columns: 0.85fr 1.25fr;
    gap: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .split--video {
    grid-template-columns: 0.8fr 1.3fr;
  }
}

/* ============================================================
   SUSTAINABILITY SECTION (om-os)
   ============================================================ */
.sustain { position: relative; }
.sustain::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgb(245 240 230 / 0.04), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgb(245 240 230 / 0.03), transparent 50%);
  pointer-events: none;
}
.sustain > * { position: relative; }

.sustain__head {
  margin-inline: auto;
  margin-bottom: 2.75rem;
  max-width: 56ch;
}
.sustain__head h2 { line-height: 1.1; }
.sustain__head .lead { color: var(--muted-strong); max-width: 60ch; margin-inline: auto; }
@media (min-width: 768px) {
  .sustain__head { margin-bottom: 3.5rem; }
}

.sustain__split { gap: 2.5rem; align-items: start; }
@media (min-width: 900px) {
  .sustain__split { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}
.sustain__content { display: flex; flex-direction: column; gap: 1.4rem; max-width: 60ch; }
.sustain__content > p { color: var(--muted-strong); line-height: 1.7; }

/* Big "1 = 1" stat callout */
.sustain-stat {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgb(245 240 230 / 0.06), rgb(245 240 230 / 0.02));
  border: 1px solid var(--border-strong);
  margin-block: 0.5rem 0.25rem;
}
.sustain-stat__big {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1;
}
.sustain-stat__num {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--accent-soft);
  font-feature-settings: "tnum" 1;
}
.sustain-stat__eq {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--muted);
  font-weight: 300;
}
.sustain-stat__caption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-left: 1px solid var(--border-strong);
  padding-left: 1.25rem;
}
.sustain-stat__caption strong {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}
.sustain-stat__caption span {
  font-size: 0.95rem;
  color: var(--muted-strong);
  line-height: 1.5;
}

/* Checklist of values */
.sustain-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sustain-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--muted-strong);
  font-size: 0.97rem;
  line-height: 1.6;
}
.sustain-list li strong { color: var(--foreground); font-weight: 600; }
.sustain-list__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgb(245 240 230 / 0.1);
  color: var(--accent-soft);
  margin-top: 0.05rem;
}
.sustain-list__icon svg { width: 16px; height: 16px; }

/* Two-image collage on the right */
.sustain-media {
  position: relative;
  min-height: 420px;
  margin: 0;
}
@media (min-width: 900px) {
  .sustain-media { min-height: 560px; }
}
.sustain-media__main,
.sustain-media__sub {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 24px 60px -22px rgb(0 0 0 / 0.85);
}
.sustain-media__main { aspect-ratio: 4 / 5; width: 100%; max-width: 32rem; margin-inline: auto; }
.sustain-media__sub { display: none; }
.sustain-media__main img,
.sustain-media__sub img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 900px) {
  .sustain-media__main {
    width: 78%;
    max-width: none;
    margin-inline: 0;
  }
  .sustain-media__sub {
    display: block;
    position: absolute;
    right: 0;
    bottom: -2rem;
    width: 52%;
    aspect-ratio: 4 / 3;
    border: 3px solid var(--bg);
  }
}

/* ---------- Gallery grid ---------- */
.gallery {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery .frame { aspect-ratio: 1 / 1; border-radius: var(--radius); }

/* ---------- Reviews / pull-quotes ---------- */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.65;
}
.quote__text { font-family: "Cormorant Garamond", serif; font-size: var(--step-2); line-height: 1.4; color: var(--foreground); font-style: italic; }
.quote__cite { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); display: flex; gap: 0.6rem; align-items: center; }
.quote__stars { color: var(--copper); letter-spacing: 0.1em; font-size: 1rem; }

/* ---------- Form ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.85rem; color: var(--muted-strong); font-weight: 600; letter-spacing: 0.02em; }
.field .req { color: var(--copper); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--foreground);
  min-height: 48px;
  width: 100%;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(245 240 230 / 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: rgb(182 174 158 / 0.55); }
.field--full { grid-column: 1 / -1; }
.field-help { font-size: 0.85rem; color: var(--muted); }
.form__submit { display: flex; justify-content: flex-start; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.form__feedback {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: rgb(245 240 230 / 0.08);
  border: 1px solid rgb(245 240 230 / 0.2);
  color: var(--foreground);
}
.form__feedback[data-state="ok"] { display: block; }

/* ---------- Info card / contact info ---------- */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  gap: 1.5rem;
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent-soft); margin-top: 2px; }
.info-row strong { display: block; font-family: "Inter", sans-serif; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.25rem; }
.info-row a { color: var(--foreground); }
.info-row a:hover { color: var(--accent-soft); text-decoration: underline; }

/* ---------- Marquee / list separator ---------- */
.divider { height: 1px; background: linear-gradient(90deg, transparent 0%, var(--border-strong) 50%, transparent 100%); margin-block: 3rem; }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-block: 3.5rem 2rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h4 { font-family: "Inter", sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer a { color: var(--muted-strong); transition: color 180ms ease; }
.site-footer a:hover { color: var(--foreground); }
.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Blog ---------- */
.blog-list { display: grid; gap: 1.75rem; }
@media (min-width: 768px) { .blog-list { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease;
}
.post-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.post-card__image { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-elevated); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; }
.post-card__meta { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.post-card__title { font-size: var(--step-3); }
.post-card__title a { color: var(--foreground); }
.post-card__title a:hover { color: var(--accent-soft); }
.post-card__excerpt { color: var(--muted); }
.post-card__cta { margin-top: auto; padding-top: 0.5rem; color: var(--accent-soft); font-weight: 600; }
.post-card__cta::after { content: "  \2192"; transition: transform 220ms ease; display: inline-block; }
.post-card:hover .post-card__cta::after { transform: translateX(4px); }

/* Article */
.article {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 4rem);
}
.article__hero { aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 2.5rem; }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__meta { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; }
.article__title { margin-top: 0.75rem; font-size: var(--step-5); max-width: 22ch; }
.article__lead { margin-top: 1.5rem; font-size: var(--step-1); color: var(--muted-strong); }
.article__body { margin-top: 2.5rem; }
.article__body h2 { font-size: var(--step-3); margin-top: 2.5rem; margin-bottom: 1rem; }
.article__body h3 { font-size: var(--step-2); margin-top: 2rem; margin-bottom: 0.75rem; }
.article__body p { color: var(--muted-strong); margin-bottom: 1.1rem; }
.article__body a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgb(194 207 153 / 0.45); }
.article__body a:hover { color: var(--foreground); }
.article__body ul { padding-left: 1.25rem; color: var(--muted-strong); margin-bottom: 1.25rem; }
.article__body ul li { margin-bottom: 0.5rem; }
.article__body blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: var(--step-2);
  color: var(--foreground);
}
.article__cta {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgb(245 240 230 / 0.06) 0%, transparent 60%);
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .article__cta { grid-template-columns: 1fr auto; align-items: center; }
}
.article__cta h3 { margin: 0; }
.article__cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Trust badges */
.badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgb(245 240 230 / 0.04);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted-strong);
}
.badge svg { width: 14px; height: 14px; color: var(--accent); }

/* Generic prose */
.prose p { margin-bottom: 1.1rem; color: var(--muted-strong); }
.prose h2 { margin-top: 2.25rem; margin-bottom: 0.75rem; }

/* Pricelist */
.pricelist { display: grid; gap: 0.75rem; }
.pricelist__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgb(245 240 230 / 0.02);
  font-size: 0.98rem;
}
.pricelist__row strong { font-family: "Inter", sans-serif; font-weight: 600; color: var(--foreground); }
.pricelist__row span { color: var(--muted); }
.pricelist__price { color: var(--accent-soft) !important; font-weight: 600; white-space: nowrap; }

/* Section heading */
.section-head { display: grid; gap: 0.85rem; margin-bottom: 2.5rem; max-width: 60ch; }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head--center .eyebrow::before { display: none; }

/* Pull section variant */
.section--surface { background: var(--bg-soft); }

/* Two-col content/image */
.split { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.split--reverse > :first-child { order: 2; }
@media (min-width: 900px) {
  .split--reverse > :first-child { order: 0; }
}

/* Tag pills */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.7rem;
  background: rgb(245 240 230 / 0.06);
  border: 1px solid rgb(245 240 230 / 0.18);
  border-radius: 999px;
  color: var(--foreground);
}

/* CTA banner */
.cta-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .cta-banner { grid-template-columns: 1fr auto; align-items: center; }
}
.cta-banner h2 { font-size: var(--step-4); max-width: 22ch; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta-banner > * { position: relative; z-index: 1; }

/* ---- Aurora light effect (top-right corner) ---- */
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  background-image:
    repeating-linear-gradient(
      100deg,
      rgba(245, 240, 230, 0.55) 0%,
      rgba(245, 240, 230, 0.55) 7%,
      transparent 10%,
      transparent 12%,
      rgba(245, 240, 230, 0.55) 16%
    ),
    repeating-linear-gradient(
      100deg,
      rgba(245, 240, 230, 0.7) 10%,
      rgba(212, 162, 106, 0.55) 15%,
      rgba(184, 173, 151, 0.55) 20%,
      rgba(255, 255, 255, 0.75) 25%,
      rgba(245, 240, 230, 0.7) 30%
    );
  background-size: 300% 200%, 200% 100%;
  background-position: 50% 50%, 50% 50%;
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000 5%, transparent 65%);
          mask-image: radial-gradient(ellipse at 100% 0%, #000 5%, transparent 65%);
  opacity: 0.45;
}
.cta-banner::after {
  background-size: 200% 100%, 200% 100%;
  mix-blend-mode: screen;
  animation: aurora 60s linear infinite;
  opacity: 0.6;
}

@keyframes aurora {
  from { background-position: 50% 50%, 50% 50%; }
  to   { background-position: 350% 50%, 350% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner::after { animation: none; }
}

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   STUDIO MAP (booking section)
   ============================================================ */
.studio-map { display: flex; flex-direction: column; gap: 1rem; min-width: 0; }
.studio-map__frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
  min-height: 360px;
}
@media (min-width: 768px) {
  .studio-map__frame { aspect-ratio: auto; height: 100%; min-height: 460px; }
}
.studio-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.studio-map__open {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  background: var(--accent);
  color: #14110b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 6px 20px -6px rgb(0 0 0 / 0.7), 0 1px 0 rgb(255 255 255 / 0.1) inset;
  transition: background 200ms ease, transform 200ms ease;
}
.studio-map__open:hover { background: #ffffff; transform: translateX(-50%) translateY(-1px); }
.studio-map__open:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; }
.studio-map__address {
  margin: 0;
  font-size: 0.95rem;
  color: var(--foreground);
  font-weight: 600;
}
.studio-map__hours { margin: 0; font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   BOOKING GRID (kontakt section)
   ============================================================ */
.booking-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .booking-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
  }
}

/* Booking info column (left) */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}
.booking-info .studio-map__frame {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  height: auto;
}
@media (min-width: 768px) {
  .booking-info .studio-map__frame {
    aspect-ratio: 5 / 4;
    min-height: 440px;
    height: auto;
  }
}
.booking-info__block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.booking-info__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-info__text {
  margin: 0;
  color: var(--foreground);
  font-size: 0.98rem;
  line-height: 1.7;
}
.booking-info__help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 44ch;
}
.booking-info__socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.booking-info__socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--foreground);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 200ms ease;
}
.booking-info__socials a:hover { color: var(--accent); }
.booking-info__socials svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted-strong);
  transition: color 200ms ease;
}
.booking-info__socials a:hover svg { color: var(--accent); }

/* Booking form panel (right) */
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) {
  .booking-form { padding: 1.75rem 1.5rem; }
}
.booking-form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .booking-form__row { grid-template-columns: 1fr 1fr; }
}
.booking-form .field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-form .field .req { color: var(--copper); margin-left: 3px; }
.booking-form .field input,
.booking-form .field select,
.booking-form .field textarea {
  background: rgb(0 0 0 / 0.32);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--foreground);
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  min-height: 44px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.booking-form .field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}
.booking-form .field input:focus,
.booking-form .field select:focus,
.booking-form .field textarea:focus {
  outline: none;
  border-color: var(--ring);
  background: rgb(0 0 0 / 0.5);
  box-shadow: 0 0 0 3px rgb(245 240 230 / 0.18);
}
.booking-form .field input::placeholder,
.booking-form .field textarea::placeholder { color: rgb(182 174 158 / 0.55); }

.booking-form__submit {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* File input */
.file-input {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgb(0 0 0 / 0.32);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.45rem 0.7rem 0.45rem 0.5rem;
  min-height: 48px;
}
.file-input input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.file-input__btn {
  cursor: pointer;
  background: var(--accent);
  color: #14110b;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  display: inline-block;
  transition: background 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.file-input__btn:hover { background: var(--accent-soft); transform: translateY(-1px); }
.file-input input[type="file"]:focus-visible + .file-input__btn {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}
.file-input__name {
  font-size: 0.92rem;
  color: var(--muted);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================================
   REVIEWS SECTION (Google reviews look)
   ============================================================ */
.reviews { background: var(--bg); }

.reviews__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.75rem;
  text-align: center;
}
.reviews__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.reviews__google-g { width: 16px; height: 16px; flex-shrink: 0; }

.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.2rem;
}
.reviews__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.star {
  width: 22px;
  height: 22px;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23f1c14a' d='M12 2l2.95 6.6 7.05.7-5.3 4.95L18.2 22 12 18.2 5.8 22l1.5-7.75L2 9.3l7.05-.7L12 2z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.star--half {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><defs><linearGradient id='h' x1='0' x2='1' y1='0' y2='0'><stop offset='50%25' stop-color='%23f1c14a'/><stop offset='50%25' stop-color='%233a3025'/></linearGradient></defs><path fill='url(%23h)' d='M12 2l2.95 6.6 7.05.7-5.3 4.95L18.2 22 12 18.2 5.8 22l1.5-7.75L2 9.3l7.05-.7L12 2z'/></svg>");
}
.star--empty {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%233a3025' d='M12 2l2.95 6.6 7.05.7-5.3 4.95L18.2 22 12 18.2 5.8 22l1.5-7.75L2 9.3l7.05-.7L12 2z'/></svg>");
}
.reviews__score {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  font-weight: 500;
  color: var(--foreground);
  letter-spacing: 0.01em;
}
.reviews__count {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.reviews__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1612;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.review-card__avatar[data-tone="moss"]   { background: #e0d8c5; }
.review-card__avatar[data-tone="copper"] { background: #d8a576; }
.review-card__avatar[data-tone="bronze"] { background: #b9924f; }

.review-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  line-height: 1.3;
}
.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 2px 0 0;
}
.review-card__google { width: 12px; height: 12px; flex-shrink: 0; }

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.review-card__stars {
  color: #f1c14a;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.review-card__meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted-strong);
  font-style: normal;
  font-weight: normal;
}
.review-card__service {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.review-card__service span { color: var(--muted-strong); font-weight: 600; }

.reviews__address {
  margin: 3rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ARTIST SECTION
   ============================================================ */
.artist { padding-block: clamp(3.5rem, 6vw + 2rem, 6.5rem); border-top: 1px solid var(--border); }
.artist__intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .artist__intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 3.5rem;
  }
}

/* LEFT: instagram + bio + see-gallery link */
.artist__left { display: flex; flex-direction: column; gap: 2rem; min-width: 0; }

.artist__insta {
  display: block;
  background: #0c0c0c;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgb(0 0 0 / 0.45);
  max-width: 32rem;
  transition: border-color 200ms ease, transform 200ms ease;
}
.artist__insta:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.artist__insta:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; }
.artist__insta img { display: block; width: 100%; height: auto; }

.artist__bio { display: flex; flex-direction: column; gap: 1.1rem; max-width: 56ch; color: var(--muted-strong); }
.artist__bio p { color: var(--muted-strong); line-height: 1.72; }

.artist__gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  align-self: flex-start;
  padding: 0.85rem 1.6rem;
  border: 1px solid rgb(245 240 230 / 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--foreground);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
  cursor: pointer;
}
.artist__gallery-link:hover { background: rgb(245 240 230 / 0.06); border-color: var(--accent-soft); }
.artist__gallery-link svg { color: var(--accent-soft); flex-shrink: 0; }

/* RIGHT: portrait with overlay caption */
.artist__portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
@media (min-width: 960px) {
  .artist__portrait { margin-inline: 0 0 0 auto; max-width: none; }
}
.artist__portrait img { width: 100%; height: 100%; object-fit: cover; }

.artist__portrait-caption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  text-align: right;
  text-shadow: 0 2px 12px rgb(0 0 0 / 0.7);
}
.artist__portrait-caption .role {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--foreground);
  line-height: 1;
}
.artist__portrait-caption .role-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--foreground);
  margin-top: 0.15rem;
}
.artist__portrait-caption .name {
  margin-top: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--foreground);
  line-height: 1;
}

/* WORKS BLOCK */
.artist__works { margin-top: clamp(3rem, 5vw, 4.5rem); }
.artist__works .eyebrow-center {
  display: block;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.artist__caption {
  margin: 1.75rem 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: left;
}
.artist__cta {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .artist__cta { flex-direction: row; align-items: center; gap: 2rem; }
}
.artist__cta p { color: var(--muted); font-size: 0.9rem; max-width: 36ch; }
.artist__cta strong { color: var(--foreground); font-weight: 600; }

.btn--book-now {
  background: #f5f0e6;
  color: #14110b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  min-width: 11rem;
}
.btn--book-now:hover { background: #ffffff; }

/* CAROUSEL */
.carousel {
  position: relative;
  width: 100%;
  background: #080807;
  border-radius: 22px;
  padding: clamp(0.85rem, 2vw, 1.25rem);
  overflow: hidden;
  isolation: isolate;
}
.carousel__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}
.carousel__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 580ms cubic-bezier(0.33, 0.94, 0.25, 1);
}
.carousel__slide {
  position: relative;
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  width: clamp(180px, 28vw, 320px);
  aspect-ratio: 9 / 16;
  max-height: min(640px, 78vh);
  transform: scale(0.78);
  transform-origin: center;
  transition: transform 580ms cubic-bezier(0.33, 0.94, 0.25, 1), width 580ms cubic-bezier(0.33, 0.94, 0.25, 1);
}
@media (max-width: 900px) {
  .carousel__slide {
    width: clamp(160px, 60vw, 320px);
    aspect-ratio: 4 / 5;
    max-height: min(560px, 70vh);
    transform: scale(0.82);
  }
}
.carousel__slide img {
  position: absolute;
  inset: -5% -8%;
  width: 116%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.42);
  transition: filter 720ms cubic-bezier(0.33, 0.94, 0.25, 1);
}
.carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 0.52);
  transition: opacity 720ms cubic-bezier(0.33, 0.94, 0.25, 1);
  pointer-events: none;
  border-radius: inherit;
}
.carousel__slide[data-pos="0"] {
  width: clamp(280px, 46vw, 480px);
  transform: scale(1);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.12);
  z-index: 2;
}
@media (max-width: 900px) {
  .carousel__slide[data-pos="0"] { width: min(92vw, 480px); }
}
.carousel__slide[data-pos="0"] img { filter: brightness(1); }
.carousel__slide[data-pos="0"]::after { opacity: 0; }
.carousel__slide:focus-visible { outline: 2px solid var(--ring); outline-offset: 4px; }

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.35);
  background: rgb(0 0 0 / 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--foreground);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 200ms ease;
}
.carousel__nav:hover { background: rgb(245 240 230 / 0.08); }
.carousel__nav:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; }
.carousel__nav--prev { left: clamp(8px, 2vw, 18px); }
.carousel__nav--next { right: clamp(8px, 2vw, 18px); }
.carousel__nav svg { width: 20px; height: 20px; }

@media (prefers-reduced-motion: reduce) {
  .carousel__track, .carousel__slide, .carousel__slide img, .carousel__slide::after {
    transition: none !important;
  }
}

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  max-width: 640px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: none;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--muted-strong);
}
.cookie[data-show="true"] { display: flex; }
.cookie__actions { display: flex; gap: 0.5rem; margin-left: auto; }
.cookie button { font-size: 0.85rem; padding: 0.5rem 0.9rem; border-radius: 999px; }
