/* =============================================
   HIDN TATTOO — style.css
   Retro-clean redesign v3
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F5F0E8;
  --cream-dark: #EDE8DF;
  --white:      #FDFCFA;
  --black:      #1a1a1a;
  --grey-dark:  #2a2a2a;
  --grey-mid:   #6a6a6a;
  --grey-light: #9a9a9a;
  --grey-rule:  #d4d0c8;
  --red:        #C41E3A;
  --red-dark:   #A3162E;

  --font-display: 'Archivo Black', 'Impact', sans-serif;
  --font-body:    'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-sans:    'Roboto', 'Helvetica Neue', Arial, sans-serif;

  --nav-h: 64px;
  --max-w: 1200px;
  --section-px: clamp(1.5rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 28px 9px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--section-px);
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--red); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: var(--nav-h);
  border-bottom: 2px solid var(--black);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vh, 8rem) var(--section-px) clamp(3rem, 7vh, 5rem);
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 2rem;
}

.hero__claim {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--black);
  max-width: 1100px;
  margin-bottom: 2.5rem;
}

.hero__booking-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55em 1.4em 0.4em;
  border: 2px solid var(--red);
  background: var(--red);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.hero__booking-btn--large {
  font-size: 1.2rem;
  padding: 0.6em 2em 0.45em;
}

.hero__booking-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

/* =============================================
   ARTISTS — compact cards
   ============================================= */
.artists {
  border-bottom: 2px solid var(--black);
  padding: clamp(2.5rem, 6vw, 4rem) var(--section-px);
}

.artists__inner {
  max-width: var(--max-w);
  margin-inline: auto;
}

.artists__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.artists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.artist-card {
  border: 2px solid var(--black);
}

.artist-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}

.artist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

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

.artist-card__info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.artist-card__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.artist-card__style {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--grey-mid);
  margin-bottom: 0.8rem;
}

.artist-card__bio {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--grey-dark);
  margin-bottom: 1.2rem;
}

.artist-card__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.artist-card__ig {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-mid);
  transition: color 0.2s;
}

.artist-card__ig:hover { color: var(--red); }

.artist-card__cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.artist-card__cta:hover {
  color: var(--red-dark);
  border-color: var(--red-dark);
}

/* =============================================
   GALLERY — curated grid
   ============================================= */
.gallery {
  border-bottom: 2px solid var(--black);
  padding: clamp(2.5rem, 6vw, 4rem) var(--section-px);
}

.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.gallery__grid {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  border-bottom: 2px solid var(--black);
  padding: clamp(2.5rem, 6vw, 4rem) var(--section-px);
}

.reviews-section__inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.reviews-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.reviews__slider {
  position: relative;
  min-height: 140px;
}

.review {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeIn 0.5s ease;
}

.review.is-active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review__stars {
  color: var(--red);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.review__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--grey-dark);
  max-width: 560px;
}

.review__author {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-rule);
  cursor: pointer;
  transition: background 0.2s;
}

.reviews__dot.is-active { background: var(--red); }

/* =============================================
   VOUCHER — split layout
   ============================================= */
.voucher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--black);
}

.voucher__photo {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.voucher__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.voucher__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  border-left: 2px solid var(--black);
}

.voucher__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 0.8rem;
}

.voucher__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.voucher__text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--grey-mid);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 2rem;
}

/* =============================================
   FORM SECTION
   ============================================= */
.form-section {
  border-bottom: 2px solid var(--black);
  background: var(--white);
  padding: clamp(3rem, 8vw, 6rem) var(--section-px);
}

.form-section__inner {
  max-width: 700px;
  margin-inline: auto;
}

.form-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  margin-bottom: 2rem;
}

/* TABS */
.form-tabs {
  display: flex;
  border-bottom: 2px solid var(--black);
  margin-bottom: 2.5rem;
}

.form-tab {
  flex: 1;
  padding: 1rem 1rem 0.8rem;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.form-tab--active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.form-tab:hover:not(.form-tab--active) { color: var(--black); }

/* TAB PANELS */
.tab-panel--hidden { display: none; }

/* FORM */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group[hidden] { display: none !important; }

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 2px solid var(--grey-rule);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75em 1em;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-light);
  font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%236a6a6a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.5em;
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* --- FILE DROP ZONE --- */
.file-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  border: 2px dashed var(--grey-rule);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.file-drop:hover,
.file-drop--active {
  border-color: var(--red);
  background: rgba(196, 30, 58, 0.03);
}

.file-drop__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-drop__icon {
  width: 28px;
  height: 28px;
  color: var(--grey-light);
  transition: color 0.25s;
}

.file-drop:hover .file-drop__icon,
.file-drop--active .file-drop__icon {
  color: var(--red);
}

.file-drop__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--grey-mid);
  text-align: center;
}

.file-drop__text strong {
  color: var(--red);
  font-weight: 600;
  font-style: normal;
}

.file-drop__hint {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--grey-light);
}

/* --- FILE PREVIEWS --- */
.file-previews { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.file-previews:empty { display: none; }

.file-preview {
  position: relative;
  width: 72px;
  height: 72px;
  border: 2px solid var(--grey-rule);
  overflow: hidden;
}

.file-preview img { width: 100%; height: 100%; object-fit: cover; }

.file-preview__remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: var(--cream);
  border: 1px solid var(--grey-rule);
  color: var(--black);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.file-preview__remove:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 0;
  margin-top: -0.5rem;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--grey-mid);
  cursor: pointer;
  line-height: 1.5;
}

.form__consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.15em;
  accent-color: var(--red);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

.form__consent a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__success {
  padding: 1rem;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.voucher-info {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
  border-bottom: 2px solid var(--black);
  background: var(--cream-dark);
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--section-px);
  text-align: center;
}

.newsletter__inner {
  max-width: 500px;
  margin-inline: auto;
}

.newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.newsletter__text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--grey-mid);
  margin-bottom: 1.5rem;
}

.newsletter__form {
  display: flex;
  gap: 0;
}

.newsletter__input {
  flex: 1;
  padding: 0.7em 1em;
  border: 2px solid var(--black);
  border-right: none;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  border-radius: 0;
  -webkit-appearance: none;
}

.newsletter__input::placeholder {
  color: var(--grey-light);
  font-style: italic;
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--red);
}

.newsletter__btn {
  padding: 0.7em 1.5em 0.55em;
  background: var(--red);
  border: 2px solid var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
}

.newsletter__btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.newsletter__success {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--red);
}

@media (max-width: 480px) {
  .newsletter__form {
    flex-direction: column;
    gap: 0;
  }
  .newsletter__input {
    border-right: 2px solid var(--black);
    border-bottom: none;
  }
  .newsletter__btn {
    width: 100%;
  }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: var(--cream);
}

.footer__map {
  border-bottom: 2px solid var(--grey-dark);
}

.map-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  filter: grayscale(100%) contrast(0.8);
  transition: filter 0.4s ease;
}

.map-wrapper:hover { filter: grayscale(0%) contrast(1); }

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 2.5rem var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
}

.footer__logo:hover { opacity: 0.8; }

.footer__meta {
  display: flex;
  gap: 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--grey-light);
  flex-wrap: wrap;
}

.footer__meta a { color: var(--grey-light); }
.footer__meta a:hover { color: var(--cream); }

.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--grey-light);
  letter-spacing: 0.08em;
}

/* LANG TOGGLE */
.lang-toggle {
  background: none;
  border: 2px solid var(--grey-rule);
  color: var(--grey-mid);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 0.25em 0.7em 0.15em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lang-toggle:hover { color: var(--red); border-color: var(--red); }

/* GDPR BUTTON */
.gdpr-btn {
  background: none;
  border: none;
  color: var(--grey-light);
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gdpr-btn:hover { color: var(--cream); }

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.7);
  cursor: pointer;
}

.modal__box {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--black);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  z-index: 1;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--grey-mid);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal__close:hover { color: var(--red); }

.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: var(--black);
}

.modal__body h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin: 1.2rem 0 0.4rem;
}

.modal__body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--black);
}

.modal__body a { color: var(--red); }

.modal__date {
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--grey-mid);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .artists__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

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

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

  .voucher__photo { min-height: 280px; }

  .voucher__content {
    border-left: none;
    border-top: 2px solid var(--black);
  }

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

  .form__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .form__footer .btn { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: calc(var(--nav-h) - 1px);
    right: 0;
    width: 200px;
    background: var(--cream);
    border: 2px solid var(--black);
    border-top: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    z-index: 9999;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--grey-rule);
    font-size: 1.1rem;
  }

  .nav__links li:last-child { border-bottom: none; }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav__toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  /* Hero - smaller claim on mobile */
  .hero__content {
    padding: 3rem var(--section-px) 2rem;
  }

  .hero__claim {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }
  .hero__claim br { display: none; }

  /* Artist cards - full width */
  .artist-card__info {
    padding: 1rem 1.2rem 1.2rem;
  }

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

  /* Voucher - smaller photo */
  .voucher__photo { min-height: 220px; }
  .voucher__content { padding: 2rem var(--section-px); }

  /* Reviews - smaller text */
  .review__text { font-size: 1rem; }

  /* Map */
  .map-wrapper { height: 200px; }

  /* Footer */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer__meta { flex-direction: column; gap: 0.5rem; }

  /* Lang toggle in mobile menu */
  .nav__links .lang-toggle {
    margin: 0.8rem 1.5rem;
  }
}

/* GDPR PAGE */
.gdpr-page {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  padding-inline: var(--section-px);
}

.gdpr-page__inner {
  max-width: 720px;
  margin-inline: auto;
}

.gdpr-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  color: var(--black);
}

.gdpr-page h2 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin: 2rem 0 0.5rem;
}

.gdpr-page p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black);
}

.gdpr-page a { color: var(--red); }

.gdpr-page__date {
  margin-top: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--grey-mid);
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
