/* ========================================
   TATTOOxBEAUTY — Main Stylesheet
   ======================================== */

/* --- Self-hosted Fonts (DSGVO-konform) --- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/playfair-display-regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/playfair-display-bold.woff2) format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/playfair-display-italic.woff2) format('woff2');
}

@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/great-vibes-regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(fonts/inter-light.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/inter-regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/inter-medium.woff2) format('woff2');
}

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

:root {
  --color-dark: #1a1410;
  --color-dark-bg: #1c1614;
  --color-beige: #d9cec4;
  --color-beige-light: #e8dfd7;
  --color-warm: #b8a292;
  --color-gold: #c4a34a;
  --color-text-dark: #2a2220;
  --color-text-light: #e0d6ce;
  --color-text-muted: #a89a8e;
  --color-cta: #b8a292;
  --color-cta-hover: #a08e7e;
  --color-hero-text: #5B463C;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-script: 'Great Vibes', cursive;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --section-padding: 100px 0;
  --container-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
}

.nav.nav-open,
.nav.nav-open.scrolled {
  background-color: transparent;
  backdrop-filter: none;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-hero-text);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.nav.scrolled .nav-logo {
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: rgba(91, 70, 60, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.4s ease;
}

.nav-links a:hover {
  color: var(--color-hero-text);
  opacity: 1;
}

.nav.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav.scrolled .nav-links a:hover {
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-hero-text);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.4s ease;
}

.nav.scrolled .nav-toggle span {
  background-color: #fff;
}

/* --- Section: Hero --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-hero-text);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg .placeholder-img,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(232, 223, 215, 0.15) 0%,
    rgba(232, 223, 215, 0.05) 40%,
    rgba(232, 223, 215, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.4);
}

.hero-tagline {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: rgba(91, 70, 60, 0.75);
  margin-bottom: 40px;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 320px;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-cta);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  transform: translateY(-2px);
  opacity: 1;
}

/* --- Section: Services (Unser Angebot) --- */
.services {
  background-color: var(--color-beige-light);
  padding: var(--section-padding);
}

.services-header {
  margin-bottom: 50px;
}

.services-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.services-header p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  max-width: 680px;
  opacity: 0.85;
}

.services-header p:last-of-type {
  margin-top: 16px;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 10px 10px 14px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.service-card-img .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img .placeholder-img {
  transform: scale(1.05);
}

.service-card-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.08em;
}

/* --- Section: Artist (Tattoo & Beauty shared) --- */
.artist-section {
  background-color: var(--color-dark-bg);
  padding: 80px 0 0;
  color: var(--color-text-light);
  overflow: hidden;
}

.artist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.artist-content.reversed {
  direction: rtl;
}

.artist-content.reversed > * {
  direction: ltr;
}

.artist-portrait {
  display: flex;
  justify-content: center;
}

.portrait-ring {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
}

.portrait-ring .placeholder-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.portrait-label {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  white-space: nowrap;
}

.artist-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  color: #fff;
}

.artist-info p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.artist-info p:last-of-type {
  margin-top: 20px;
  font-style: italic;
  color: var(--color-text-light);
}

.artist-gallery {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.artist-gallery .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Gallery Strip --- */
.gallery-strip {
  display: flex;
  height: 100%;
  overflow-x: auto;
  gap: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  height: 100%;
  cursor: pointer;
  display: block;
  opacity: 1;
}

.gallery-item:hover {
  opacity: 0.85;
}

.gallery-item img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.3s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  color: #fff;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 16px;
  transition: color 0.3s ease;
  z-index: 1001;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #fff;
}

/* --- Section: Contact Form --- */
.contact-section {
  background-color: var(--color-dark-bg);
  padding: var(--section-padding);
  color: var(--color-text-light);
}

.contact-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.contact-header p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.form-tab-toggle {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tab-btn {
  flex: 1;
  cursor: pointer;
  border: none;
  text-align: center;
  padding: 14px 24px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.04);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-btn.active {
  background-color: var(--color-cta);
  color: #fff;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active:hover {
  background-color: var(--color-cta);
}

.contact-form {
  display: none;
}

.contact-form.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
}

.form-group .optional {
  font-weight: 300;
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  outline: none;
}

.form-group select option {
  background: var(--color-dark);
  color: var(--color-text-light);
}

.form-group input[type="file"] {
  padding: 10px 16px;
  cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 6px 16px;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-cta);
  background: rgba(255, 255, 255, 0.08);
}

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

.form-group--checkbox {
  margin-bottom: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-cta);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--color-cta);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--color-text-light);
  opacity: 1;
}

.btn-submit {
  width: 100%;
  margin-top: 8px;
}

/* --- Section: Footer --- */
.footer {
  background-color: var(--color-beige-light);
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-branding h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  color: var(--color-text-dark);
}

.footer-branding .footer-byline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  opacity: 0.8;
  margin-bottom: 28px;
}

.footer-hours h4 {
  font-family: var(--font-script);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.footer-hours p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  opacity: 0.8;
}

.footer-hours + .footer-hours {
  margin-top: 24px;
}

.footer-contact {
  margin-top: 32px;
}

.footer-contact-heading {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.footer-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text-dark);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-card-icon {
  width: 28px;
  height: 28px;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  color: var(--color-gold);
}

.contact-card-name {
  font-family: var(--font-script);
  font-size: 1.15rem;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-card-role {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  white-space: nowrap;
}

.footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-logo img {
  max-width: 280px;
  opacity: 0.7;
}

/* --- Placeholder Image Utility --- */
.placeholder-img {
  background-color: #3a302a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.placeholder-img--light {
  background-color: #c8bdb3;
  color: rgba(0, 0, 0, 0.2);
}

/* --- Subpages (Impressum, Datenschutz) --- */
.subpage {
  padding: 120px 0 80px;
  background-color: var(--color-beige-light);
  min-height: 100vh;
}

.subpage h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--color-text-dark);
}

.subpage h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.subpage h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.subpage p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  opacity: 0.85;
  margin-bottom: 12px;
  max-width: 720px;
}

/* --- Footer Legal Links --- */
.footer-legal {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.footer-legal a {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* --- Thank You Page --- */
.thankyou-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--color-dark-bg);
  text-align: center;
  color: var(--color-text-light);
}

.thankyou-content {
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 24px;
}

.thankyou-content h1 {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff;
}

.thankyou-content .thankyou-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.thankyou-content .thankyou-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* --- Pricelist (Beauty Preisliste) --- */
.pricelist {
  padding: 120px 0 80px;
  background-color: var(--color-dark-bg);
  min-height: 100vh;
  color: var(--color-text-light);
}

.pricelist-inner {
  max-width: 600px;
  margin: 0 auto;
}

.pricelist-title {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 56px;
  color: #fff;
}

.pricelist-category {
  margin-bottom: 48px;
}

.pricelist-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.pricelist-heading::before,
.pricelist-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-warm), transparent);
}

.pricelist-heading span {
  white-space: nowrap;
}

.pricelist-group {
  margin-bottom: 20px;
}

.pricelist-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
}

.pricelist-row--main .pricelist-service {
  font-weight: 500;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.pricelist-row--main .pricelist-service {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 2px;
}

.pricelist-row--sub {
  padding-left: 20px;
}

.pricelist-row--sub .pricelist-service {
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.pricelist-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  min-width: 20px;
  margin-bottom: 4px;
}

.pricelist-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  white-space: nowrap;
}

.pricelist-row--sub .pricelist-price {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricelist-extras {
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.pricelist-extras-label {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-warm);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.pricelist-extras .pricelist-row--sub {
  padding-left: 0;
}

.pricelist-note {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: 12px;
  opacity: 0.7;
}

.pricelist-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Privacy Banner --- */
.privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  background-color: var(--color-dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-banner.hidden {
  display: none;
}

.privacy-banner p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.privacy-banner a {
  color: var(--color-cta);
  text-decoration: underline;
}

.privacy-banner a:hover {
  color: var(--color-text-light);
}

.privacy-banner-btn {
  flex-shrink: 0;
  padding: 10px 28px;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: var(--color-cta);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.privacy-banner-btn:hover {
  background-color: var(--color-warm);
}

@media (max-width: 640px) {
  .privacy-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 12px;
  }
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 20, 16, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 200;
    padding: 80px 24px;
  }

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

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 201;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .artist-content,
  .artist-content.reversed {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    direction: ltr;
  }

  .artist-portrait {
    order: -1;
  }

  .portrait-ring {
    width: 260px;
    height: 260px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    justify-content: flex-start;
  }
}

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

  .hero {
    min-height: 100svh;
  }

  .hero-bg::after {
    background: radial-gradient(
      ellipse at center 40%,
      rgba(232, 223, 215, 0.55) 0%,
      rgba(232, 223, 215, 0.25) 50%,
      transparent 75%
    );
  }

  .hero-title {
    letter-spacing: 0.04em;
  }

  .hero-subtitle {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.06em;
  }

  .btn {
    min-width: 240px;
    padding: 14px 28px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .portrait-ring {
    width: 220px;
    height: 220px;
  }

  .artist-gallery {
    height: 160px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 12px 20px;
  }
}
