/* ========================================
   Million Arts Tattoo - Main Stylesheet
   ======================================== */

/* --- Self-hosted Fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: optional;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url('/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- CSS Variables --- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-bg-card: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-accent: #c9a84c;
  --color-accent-hover: #b8963d;
  --color-border: #e0e0e0;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  background-color: #fdfcfa;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1200px;
  height: var(--header-height);
  background: linear-gradient(to right, rgba(248, 242, 228, 0.82) 0%, rgba(240, 230, 205, 0.78) 30%, rgba(225, 210, 172, 0.74) 60%, rgba(215, 198, 155, 0.72) 100%);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  z-index: 10000;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 9999px;
  box-shadow: 0 8px 32px rgba(160, 130, 50, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -1px 0 rgba(201, 168, 76, 0.12);
  transition: all var(--transition);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
}

/* Logo as image */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 44px;
  width: auto;
}

/* Navigation */
.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links > a,
.nav-links > .nav-dropdown > a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(60, 50, 30, 0.75);
  position: relative;
  padding: 0.75rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.nav-links > a::after,
.nav-links > .nav-dropdown > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-links > .nav-dropdown:hover > a,
.nav-links > .nav-dropdown.active > a {
  color: #9a7b2a;
}

.nav-links > a:hover::after,
.nav-links > a.active::after,
.nav-links > .nav-dropdown:hover > a::after,
.nav-links > .nav-dropdown.active > a::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 0.5rem 0.75rem 0.15rem;
  min-width: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dropdown-toggle .arrow {
  font-size: 0.6rem;
  color: rgba(60, 50, 30, 0.6);
  transition: transform var(--transition), color var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: #9a7b2a;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(245, 236, 212, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(160, 130, 50, 0.15);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all var(--transition);
  z-index: 10001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(60, 50, 30, 0.7);
  transition: all var(--transition);
}

.nav-dropdown-menu a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  transition: border-color var(--transition);
}

.nav-dropdown-menu a:hover {
  color: #9a7b2a;
  background: rgba(201, 168, 76, 0.15);
}

.nav-dropdown-menu a:hover img {
  border-color: var(--color-accent);
}

.nav-dropdown-menu a.active {
  color: #9a7b2a;
  background: rgba(201, 168, 76, 0.15);
}

.nav-dropdown-menu a.active img {
  border-color: var(--color-accent);
}

/* Nav Submenu Header */
.nav-submenu-header {
  width: 100%;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(60, 50, 30, 0.45);
  padding: 0.4rem 0.75rem 0.25rem;
  font-weight: 600;
}

/* Header Mobile Actions (phone + hamburger) */
.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(60, 50, 30, 0.75);
  transition: color var(--transition);
}

.mobile-phone-btn svg {
  width: 22px;
  height: 22px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: rgba(60, 50, 30, 0.75);
  transition: var(--transition);
}

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

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

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

/* --- Hero Section with Video --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a 0%, #2a2420 30%, #1a1610 60%, #0d0b09 100%);
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator .scroll-arrow {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  animation: bounceDown 2s ease infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 50%, #f0f0f0 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.hero-logo {
  max-width: 350px;
  margin: 0 auto 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.hero h1 .accent {
  color: var(--color-accent);
}

.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero .tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease infinite;
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-weight: 500;
  border-radius: 9999px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-black);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
}

.btn-white:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Sections --- */
.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--color-bg-alt);
  border-radius: 32px;
  margin: 0 0.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-title .accent {
  color: var(--color-accent);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto;
}

.sheila-greeting-text .divider,
.about-text .divider {
  margin-left: 0;
}

/* --- Sheila Greeting --- */
.sheila-greeting-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.sheila-greeting-video {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3/4;
}

.sheila-greeting-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
}

.sheila-greeting-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.sheila-greeting-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sheila-greeting-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image .image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* --- Features / Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.value-card h3 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Artists Section --- */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.artists-grid.four-cols {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.artist-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  cursor: pointer;
}

.artist-card:hover {
  border-color: var(--color-accent);
}

.artist-card .artist-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  overflow: hidden;
}

.artist-card .artist-info {
  padding: 2rem;
  background: var(--color-bg-card);
}

.artist-card .artist-info h3 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.artist-card .artist-info .role {
  color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.artist-card .artist-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.artist-card .artist-info .btn {
  margin-top: 1.5rem;
}

/* --- Gallery / Tattoos --- */
.divider + .gallery-grid {
  margin-top: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item .image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.gallery-item:hover .image-placeholder {
  border-color: var(--color-accent);
}

/* Gallery Item Badge (always visible, bottom-right corner) */
.gallery-item .overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.5);
  background: rgba(0, 0, 0, 0.8);
}

.gallery-item .overlay span {
  color: var(--color-accent);
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

/* Gallery Video Items (thumbnail-based lazy loading) */
.gallery-item video,
.gallery-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-video .overlay .play-icon {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item-video .overlay .play-icon svg {
  width: 1rem;
  height: 1rem;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter button {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 9999px;
}

.gallery-filter button:hover,
.gallery-filter button.active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(201, 168, 76, 0.1);
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2002;
  padding: 0;
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  transform: scale(1.1);
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-accent);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-nav.prev { left: 0.75rem; }
  .lightbox-nav.next { right: 0.75rem; }
}

.lightbox-content .image-placeholder {
  width: 60vw;
  height: 60vh;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* --- Contact / Info Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  color: var(--color-accent);
  font-size: 1.2rem;
  min-width: 24px;
}

.contact-item .text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-item .text p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact-item .text a {
  color: var(--color-accent);
}

.contact-item .text a:hover {
  color: var(--color-accent-hover);
}

/* Contact Form */
.contact-form h3 {
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: #f9f9f9;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  border-radius: 12px;
}

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

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

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

/* Map */
.map-container {
  width: 100%;
  height: 500px;
  border: 1px solid var(--color-border);
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Map Consent Overlay */
.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--color-dark);
  color: #fff;
  text-align: center;
  padding: 2rem;
  gap: 0.75rem;
}

.map-consent-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
}

.map-consent-icon svg {
  width: 100%;
  height: 100%;
}

.map-consent-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-accent);
}

.map-consent-text {
  font-size: 0.875rem;
  color: #aaa;
  max-width: 400px;
  line-height: 1.6;
  margin: 0;
}

.map-consent-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.map-consent-btn {
  margin-top: 0.5rem;
}

/* --- Piercing Section --- */
.piercing-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.piercing-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.piercing-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
}

.piercing-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.piercing-card h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.piercing-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* --- Artist Detail Page --- */
.artist-hero {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
    linear-gradient(180deg, #fdfcfa 0%, #faf8f4 25%, #f7f4ed 50%, #f5f1e8 75%, #f2eee3 100%);
}

@media (max-width: 768px) {
  .artist-hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
  }
}

/* Seamless gradient continuation after artist-hero */
.artist-hero + .page-content-gold {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
    linear-gradient(
      180deg,
      #f2eee3 0%,
      #f0ece0 10%,
      #eee9dc 25%,
      #ede8da 40%,
      #ebe5d7 60%,
      #eae4d5 80%,
      #e8e2d3 100%
    );
}

.artist-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.artist-hero-image .image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--color-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.artist-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.artist-hero-text .role {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.artist-hero-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.artist-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.style-tag {
  padding: 6px 16px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 9999px;
}

.artist-team-link {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.artist-team-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.artist-team-link a:hover {
  gap: 0.75rem;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f0ece1 0%, #eee9dc 100%);
  position: relative;
}

/* CTA after page-content-gold on artist pages: seamless pickup */
.page-content-gold + .cta-section {
  background: linear-gradient(180deg, #e8e2d3 0%, #ebe5d7 30%, #eee9dc 60%, #f0ece1 100%);
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Desktop/Mobile Button Toggle */
.cta-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .cta-contact-btn {
    display: none;
  }
  .cta-call-btn {
    display: inline-flex;
  }
}

/* --- Social Links --- */
.social-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border-radius: 50%;
}

.social-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background: #1a1a1a;
  border-top: none;
  padding: 4rem 0 2rem;
  color: #f5f5f5;
  border-radius: 32px 32px 0 0;
  margin-top: -1px;
}

.footer-wrap {
  background: #eee9dc;
}

/* When page-content-gold leads directly to footer (no CTA in between) */
.page-content-gold + .footer-wrap {
  background: #f0ece1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-col .footer-heading {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: #999;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: #999;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-col .footer-heading {
  color: var(--color-accent);
}

.footer-bottom {
  display: none;
}

.footer-bottom p {
  color: #777;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #777;
  font-size: 0.8rem;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

.footer .social-links a {
  border-color: #333;
  color: #999;
}

.footer .social-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* --- Legal Pages --- */
.legal-page {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.legal-page h1 {
  font-size: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin: 2rem 0 1rem;
  color: var(--color-accent);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.legal-page p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page ul li {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* --- Page Header (Inner Pages) --- */
.page-header {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
  z-index: 1;
}

.page-header > * {
  position: relative;
  z-index: 2;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #fff;
}

.page-header h1 .accent {
  color: var(--color-accent);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.page-header .divider {
  background: var(--color-accent);
}

/* --- Scroll to Top --- */
/* --- WhatsApp Button (rechts unten) --- */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* --- Scroll-to-Top (über WhatsApp) --- */
.scroll-top {
  position: fixed;
  bottom: calc(2rem + 55px + 0.75rem);
  right: 2rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-black);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
  transition: all var(--transition);
}

.scroll-top.visible {
  display: flex;
}

.scroll-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .whatsapp-btn {
    right: 1rem;
    bottom: 1.25rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn svg {
    width: 25px;
    height: 25px;
  }

  .scroll-top {
    right: 1rem;
    bottom: calc(1.25rem + 50px + 0.6rem);
    width: 50px;
    height: 50px;
  }
}

/* --- Mobile Sticky Termin Button --- */
.mobile-sticky-termin {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-termin {
    display: block;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 0.5rem;
    border: none;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: background var(--transition), transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-sticky-termin.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-sticky-termin:hover {
    background: var(--color-accent-hover);
  }
}

/* --- Opening Hours --- */
.hours-table {
  width: 100%;
  max-width: 400px;
}

.hours-table .row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-table .row .day {
  color: var(--color-text);
  font-size: 0.9rem;
}

.hours-table .row .time {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .contact-grid,
  .artist-hero-grid,
  .sheila-greeting-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sheila-greeting-video {
    max-width: 340px;
    margin: 0 auto;
  }

  .values-grid,
  .piercing-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .artists-grid.four-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header {
    top: 0.75rem;
    width: calc(100% - 2rem);
    height: 60px;
    border-radius: 9999px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100vw - 2rem);
    max-height: calc(100vh - 60px - 1.5rem - 1rem);
    max-height: calc(100dvh - 60px - 1.5rem - 1rem);
    background: linear-gradient(135deg, rgba(228, 214, 178, 1) 0%, rgba(218, 202, 160, 1) 50%, rgba(228, 214, 178, 1) 100%);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 24px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 10000;
    box-shadow: 0 8px 32px rgba(160, 130, 50, 0.2);
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links.open {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links > a,
  .nav-links > .nav-dropdown > a {
    padding: 0.7rem 0;
    font-size: 1rem;
    border-bottom: none;
    display: block;
    color: rgba(50, 40, 20, 0.85);
    text-align: left;
  }

  .nav-links > a.btn-termin {
    display: none;
  }

  .nav-dropdown {
    width: 100%;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .nav-links > a {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    width: 100%;
  }

  .nav-dropdown > a {
    flex: 1;
    justify-content: flex-start;
  }

  .nav-dropdown-toggle {
    padding: 1rem;
    margin-left: auto;
  }

  .nav-dropdown-toggle .arrow,
  .nav-dropdown:hover .nav-dropdown-toggle .arrow {
    font-size: 0.7rem;
    transform: none;
    color: rgba(60, 50, 30, 0.6);
    transition: transform 0.3s ease;
  }

  .nav-dropdown-toggle.open .arrow,
  .nav-dropdown:hover .nav-dropdown-toggle.open .arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-toggle {
    display: none;
  }

  .nav-dropdown-menu,
  .nav-dropdown:hover .nav-dropdown-menu {
    position: static;
    transform: none !important;
    left: auto;
    opacity: 1;
    visibility: visible;
    height: auto;
    overflow: visible;
    background: transparent;
    border: none;
    padding: 0.5rem 0;
    min-width: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    display: grid;
    grid-template-columns: auto repeat(4, 1fr);
    gap: 0.3rem 0.25rem;
    align-items: center;
  }

  .nav-submenu-header {
    grid-column: 1;
    grid-row: 1 / 3;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-align: center;
    font-size: 0.55rem;
    padding: 0;
    letter-spacing: 1.5px;
    white-space: nowrap;
    align-self: center;
    justify-self: center;
    color: rgba(60, 50, 30, 0.35);
  }

  .nav-dropdown-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0;
    border-bottom: none;
    font-size: 0;
    color: rgba(60, 50, 30, 0.7);
    text-align: center;
    border-radius: 12px;
    transition: all 0.2s ease;
  }

  .nav-dropdown-menu a img {
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    transition: border-color 0.2s ease;
  }

  .nav-dropdown-menu a span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(50, 40, 20, 0.7);
    transition: color 0.2s ease;
  }

  .nav-dropdown-menu a:hover img {
    border-color: var(--color-accent);
  }

  .nav-dropdown-menu a:hover span {
    color: var(--color-accent);
  }

  .nav-dropdown-menu a.active img {
    border-color: var(--color-accent);
  }

  .nav-dropdown-menu a.active span {
    color: #fff;
  }

  .btn-termin {
    display: none;
  }

  .header-mobile-actions {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }

  .value-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }

  .value-card h3 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }

  .value-card p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .piercing-types {
    grid-template-columns: 1fr;
  }

  .artists-grid,
  .artists-grid.four-cols {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    height: 100svh;
    min-height: 0;
    flex-direction: column;
    overflow: visible;
  }

  .hero video {
    height: 100svh;
  }

  .hero .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-logo {
    max-width: 250px;
  }

  /* Sheila Greeting mobil – cinematic Video-Preview, volle Breite */
  .sheila-greeting {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .sheila-greeting .container {
    padding: 0;
  }

  .sheila-greeting-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .sheila-greeting-video {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 0;
    margin: 0;
    cursor: pointer;
  }

  .sheila-greeting-video video {
    border-radius: 0;
    object-position: center 20%;
  }

  /* Sound toggle hidden — forced muted */

  /* Play indicator overlay */
  .sheila-greeting-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, transparent 40%);
    pointer-events: none;
  }

  .sheila-greeting-text {
    text-align: center;
    padding: 0 1.5rem;
  }

  .sheila-greeting-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
  }

  .sheila-greeting-text h2 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }

  .sheila-greeting-text .divider {
    margin: 0.5rem auto !important;
  }

  .sheila-greeting-text p {
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .sheila-greeting-text p:last-child {
    margin-bottom: 0;
  }
}

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

  .btn-group {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-logo {
    max-width: 200px;
  }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--color-accent);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-author .source {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* --- Partner Logos --- */
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 0;
  border-top: 1px solid #333;
}

.partner-logos img {
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(2);
  transition: all var(--transition);
  border-radius: 12px;
}

.partner-logos img:hover {
  opacity: 0.8;
  filter: grayscale(0%) brightness(1);
}

/* --- Image styling for gallery and artists --- */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.artist-card .artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.05);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-hero-image img,
.artist-hero-image video {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.artist-hero-image video {
  cursor: pointer;
}

/* Artist Portrait Video Sound Toggle */
.artist-hero-image {
  position: relative;
}

/* Sound toggle — gallery-overlay style (round, dark, blurred) */
.video-sound-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  z-index: 3;
  padding: 0;
  animation: pulse-mute 2.5s ease-in-out infinite;
}
@keyframes pulse-mute {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}
.video-sound-toggle:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(201, 168, 76, 0.7);
  animation: none;
}
.video-sound-toggle svg {
  width: 30px;
  height: 30px;
  fill: var(--color-accent);
  stroke: none;
  display: block;
  flex-shrink: 0;
}

/* Hide native browser volume controls on all videos */
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-mute-button {
  display: none !important;
}
video::-moz-range-thumb {
  display: none !important;
}

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
}

.testimonials-load-more-wrap {
  display: none;
}

/* --- Responsive additions --- */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-load-more-wrap {
    display: block;
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid:not(.expanded) .testimonial-card:nth-child(n+4) {
    display: none;
  }
  .testimonials-grid:not(.expanded) {
    position: relative;
  }
  .testimonials-grid:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -1rem;
    right: -1rem;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #f5f5f5);
    pointer-events: none;
    z-index: 2;
  }
  .testimonials-grid.expanded + .testimonials-load-more-wrap {
    display: none;
  }
  .stats-bar {
    gap: 2rem;
  }
  .partner-logos {
    gap: 2rem;
  }
  .partner-logos img {
    height: 30px;
  }
}

/* ========================================
   Section Dividers & Design Elements
   ======================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.section-divider--gold {
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  max-width: 200px;
  margin: 0 auto;
  border-radius: 2px;
}

.section-divider--dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}

.section-divider--dots::before,
.section-divider--dots::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border));
}

.section-divider--dots::after {
  background: linear-gradient(90deg, var(--color-border), transparent);
}

.section-divider--dots span {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-divider--wave {
  height: 60px;
  background: var(--color-bg);
  position: relative;
}

.section-divider--wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

/* Gold accent gradient background for sections */
.section-gold-accent {
  position: relative;
}

.section-gold-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Steps / Process Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

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

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

/* Tattoo Styles Grid */
.tattoo-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tattoo-style-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.tattoo-style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tattoo-style-card:hover img {
  transform: scale(1.08);
}

.tattoo-style-card .tattoo-style-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: all var(--transition);
}

.tattoo-style-card:hover .tattoo-style-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.tattoo-style-card h3 {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.tattoo-style-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  line-height: 1.5;
}

.tattoo-style-card .style-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .tattoo-styles-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255,255,255,0.1);
  }
  .tattoo-styles-grid::-webkit-scrollbar {
    height: 4px;
  }
  .tattoo-styles-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
  }
  .tattoo-styles-grid::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
  }
  .tattoo-style-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
  }
}

/* Piercing SVG Icon Cards */
.piercing-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.piercing-icon-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  transition: all var(--transition);
}

.piercing-icon-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
}

.piercing-icon-card svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  margin-bottom: 1.5rem;
}

.piercing-icon-card h3 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.piercing-icon-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .piercing-icon-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255,255,255,0.1);
  }
  .piercing-icon-grid::-webkit-scrollbar {
    height: 4px;
  }
  .piercing-icon-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
  }
  .piercing-icon-grid::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
  }
  .piercing-icon-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
}

/* Glassmorphism Content Box */
.content-box-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.content-box-glass--light {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

/* Image-Text Feature Box */
.feature-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.feature-box--reverse {
  direction: rtl;
}

.feature-box--reverse > * {
  direction: ltr;
}

.feature-box-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.feature-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  aspect-ratio: 4/3;
}

.feature-box-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.feature-box-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.feature-box-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .feature-box {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  .feature-box--reverse {
    direction: ltr;
  }
}

/* Accent line decoration for sections */
.section-accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ========================================
   Rounded Images (global)
   ======================================== */
.about-image img,
.gallery-item,
.gallery-item img,
.artist-card,
.artist-card .artist-image,
.artist-hero-image img,
.artist-hero-image video,
.value-card,
.piercing-card,
.testimonial-card,
.blog-card,
.blog-card img {
  border-radius: 16px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
}

.artist-card {
  border-radius: 16px;
  overflow: hidden;
}

.artist-card .artist-image {
  border-radius: 16px 16px 0 0;
}

/* --- TERMIN BUCHEN Button in Header --- */
.btn-termin,
.nav-links > a.btn-termin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px !important;
  min-height: auto;
  background: #8a7230;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

a.btn-termin:hover,
.nav-links > a.btn-termin:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  text-decoration: none;
}

.nav-links > a.btn-termin::after,
.nav-links > a.btn-termin:hover::after,
.nav-links > a.btn-termin.active::after {
  display: none;
}

@media (max-width: 768px) {
  .btn-termin {
    display: none !important;
  }
}

/* ========================================
   Booking Lightbox / Modal
   ======================================== */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20000;
  align-items: center;
  justify-content: center;
}

.booking-overlay.active {
  display: flex;
}

.booking-modal {
  background: linear-gradient(160deg, #faf6ee 0%, #f5efe1 40%, #f0e8d5 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 32px;
  max-width: 736px;
  width: 90%;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 8px 30px rgba(160, 130, 50, 0.08);
  animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-modal-image {
  display: none;
}

.booking-modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(60, 50, 30, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 1;
}

.booking-modal-close:hover {
  background: rgba(201, 168, 76, 0.2);
  color: rgba(60, 50, 30, 0.8);
}

.booking-modal-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-modal-subtitle {
  font-size: 0.85rem;
  color: rgba(60, 50, 30, 0.5);
  margin-bottom: 1.75rem;
  line-height: 1.5;
  max-width: 320px;
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 0.75rem;
  width: 100%;
}

.booking-option {
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.06) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: var(--color-black);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  min-height: 0;
}

.booking-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 2px;
}

.booking-option:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.08);
}

.booking-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-option-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

.booking-option-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-option .booking-option-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 0.2rem;
  letter-spacing: 0.3px;
}

.booking-option p {
  font-size: 0.72rem;
  color: rgba(60, 50, 30, 0.45);
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-all;
  max-width: 100%;
}

.booking-option-address {
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: rgba(60, 50, 30, 0.35);
}

.booking-option-arrow {
  display: none;
}

@media (max-width: 600px) {
  .booking-modal {
    max-width: 100%;
    width: calc(100% - 2rem);
    padding: 2rem 1.25rem;
    border-radius: 24px;
  }
  .booking-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .booking-option {
    padding: 1.25rem 0.75rem;
    justify-content: center;
  }
  .booking-option-text p {
    display: none;
  }
  .booking-option-text {
    display: flex;
  }
  .booking-option-text .booking-option-label {
    font-size: 0.75rem;
    margin-bottom: 0;
    text-align: center;
  }
  .booking-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

/* ========================================
   Mobile Menu CTA Elements
   ======================================== */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .mobile-cta-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .mobile-cta-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color var(--transition);
  }

  .mobile-cta-link:hover {
    color: var(--color-accent);
  }

  .mobile-cta-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .mobile-cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 24px;
    background: #25D366;
    color: #fff;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition);
  }

  .mobile-cta-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
  }

  .mobile-cta-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: #fff;
  }

  .mobile-cta-bar {
    border-top: none;
  }

  .mobile-cta-link {
    color: rgba(50, 40, 20, 0.75);
  }
}

/* ========================================
   Testimonials Carousel
   ======================================== */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 0 2rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-track .testimonial-card {
  min-width: calc(50% - 1rem);
  margin-right: 2rem;
  flex-shrink: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

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

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials-track .testimonial-card {
    min-width: 100%;
    margin-right: 0;
  }
}

/* ========================================
   Blog Section (Homepage Preview)
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
  border-radius: 16px;
}

.blog-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 16px 16px 0 0;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.blog-card-content h3 {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content h3 a {
  color: var(--color-text);
  transition: color var(--transition);
}

.blog-card-content h3 a:hover {
  color: var(--color-accent);
}

.blog-card-cta {
  font-size: 0.8rem;
  color: var(--color-accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

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

/* ========================================
   Blog Page Styles
   ======================================== */
.blog-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 768px) {
  .blog-listing {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Blog Post / Article Styles
   ======================================== */
.blog-post-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding-top: 120px;
}

.blog-post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.blog-post-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.blog-post-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.blog-post-hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
  max-width: 100%;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.blog-post-meta .category-tag {
  background: var(--color-accent);
  color: var(--color-black);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-post-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog-post-article h2 {
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin: 2.5rem 0 1rem;
  color: var(--color-text);
}

.blog-post-article .subline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 3rem;
  margin-bottom: 0.5rem;
}

.blog-post-article .subline + h2 {
  margin-top: 0;
}

/* Gold highlight box for blog content */
.blog-gold-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 16px 16px 0;
  padding: 2rem 2rem 2rem 1.5rem;
  margin: 2.5rem 0;
}

.blog-gold-box h3 {
  color: var(--color-text);
  margin-top: 0;
}

.blog-gold-box p:last-child {
  margin-bottom: 0;
}

/* Gold CTA card in blog (booking-modal inspired) */
.blog-gold-cta {
  background: linear-gradient(135deg, rgba(245, 236, 212, 0.96) 0%, rgba(236, 224, 193, 0.97) 50%, rgba(245, 236, 212, 0.96) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 12px 40px rgba(160, 130, 50, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(201, 168, 76, 0.12);
}

.blog-gold-cta h3 {
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.blog-gold-cta p {
  color: rgba(60, 50, 30, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.blog-gold-cta .btn {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.blog-gold-cta .btn:hover {
  background: #b8963d;
  border-color: #b8963d;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.blog-post-article h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-text);
}

.blog-post-article p {
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.blog-post-article img {
  width: 100%;
  border-radius: 16px;
  margin: 2rem 0;
}

.blog-post-article ul,
.blog-post-article ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-post-article li {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
}

.blog-post-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0;
}

.blog-post-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.blog-post-author-role {
  color: var(--color-accent);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Related Posts */
.related-posts {
  padding: 4rem 0 5rem;
  background: transparent;
}

.related-posts h2 {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.related-posts .divider {
  margin-bottom: 2.5rem;
}

.related-posts .blog-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(160, 130, 50, 0.06);
  transition: all 0.3s ease;
}

.related-posts .blog-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(160, 130, 50, 0.12);
}

.related-posts .blog-card-image img {
  border-radius: 20px 20px 0 0;
}

.related-posts .blog-card-cta {
  display: inline-block;
  margin-top: 0.5rem;
}

/* ========================================
   Studio Impressions Slider
   ======================================== */
.studio-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.studio-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.studio-slider-item {
  min-width: calc(50% - 0.5rem);
  margin-right: 1rem;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.studio-slider-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.studio-slider-item:hover img {
  transform: scale(1.05);
}

.studio-slider-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .studio-slider-item {
    min-width: calc(100% - 1rem);
  }
  .studio-slider-item img {
    height: 400px;
  }
}

/* ========================================
   Showcase Floating Grid (Parallax)
   ======================================== */
.showcase-section {
  padding-bottom: 10rem;
}

.showcase-section .container {
  margin-bottom: 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 6rem auto 0;
  padding: 0 2rem;
}

.showcase-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  will-change: transform;
}

/* Staggered offset for masonry feel */
.showcase-col:nth-child(1) {
  margin-top: 12rem;
  margin-bottom: 8rem;
}

.showcase-col:nth-child(2) {
  margin-top: 6rem;
}

.showcase-col:nth-child(3) {
  margin-top: 10rem;
  margin-bottom: 8rem;
}

.showcase-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.showcase-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .showcase-col {
    display: contents;
  }

  .showcase-col:nth-child(2),
  .showcase-col:nth-child(3) {
    margin-top: 0;
  }

  .showcase-item {
    border-radius: 12px;
  }
}

/* 4-column artists grid compact styling */
.artists-grid.four-cols .artist-info {
  padding: 1.25rem;
  text-align: center;
}

.artists-grid.four-cols .artist-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.artists-grid.four-cols .artist-info .role {
  margin-bottom: 0.75rem;
}

.artists-grid.four-cols .artist-info p:not(.role) {
  display: none;
}

.artists-grid.four-cols .artist-info .btn {
  margin-top: 0;
  padding: 10px 24px;
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .artists-grid.four-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .artists-grid.four-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ========================================
   Artists Carousel (Homepage)
   ======================================== */
.artists-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.artists-carousel {
  overflow: hidden;
  position: relative;
}

.artists-carousel::before,
.artists-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.artists-carousel::before {
  left: 0;
  background: linear-gradient(to right, #F4EEE1 0%, transparent 100%);
}

.artists-carousel::after {
  right: 0;
  background: linear-gradient(to left, #F4EEE1 0%, transparent 100%);
}

.artists-carousel-track {
  display: flex;
  gap: 1.5rem;
  /* Animation wird komplett von JS gesteuert (rAF-basiert) */
}

.artists-carousel .artist-card {
  width: 280px;
  min-width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.artists-carousel .artist-card .artist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1.25rem;
}

.artists-carousel .artist-card .artist-image {
  aspect-ratio: 4/5;
}

.artists-carousel .artist-info {
  padding: 1rem 1.25rem;
  text-align: center;
}

.artists-carousel .artist-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.artists-carousel .artist-info .role {
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
}

.artists-carousel .artist-info p:not(.role) {
  display: none;
}

.artists-carousel .artist-info .btn {
  margin-top: 0;
  padding: 8px 20px;
  font-size: 0.65rem;
}

/* No-profile cards: fill white to bottom */
.artist-card-no-profile {
  cursor: default;
  display: flex;
  flex-direction: column;
}

.artist-card-no-profile .artist-info {
  flex: 1;
}

.artist-card-no-profile .artist-info .role {
  margin-bottom: 0;
}

/* @keyframes entfernt – Carousel-Scroll wird per JS (rAF) gesteuert */

@media (max-width: 768px) {
  .artists-carousel .artist-card {
    width: 220px;
    min-width: 220px;
  }

  .artists-carousel-track {
    gap: 1rem;
  }

  .artists-carousel-wrapper {
    gap: 1rem;
  }
}

/* ========================================
   Stats Bar - Glossy Connecting Element
   ======================================== */
.stats-bar-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  padding: 1.75rem 0;
  z-index: 1;
}

.hero .stats-bar-hero {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(42, 42, 42, 0.85) 50%, rgba(26, 26, 26, 0.85) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stats-bar-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.stats-bar-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.stats-bar-hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stats-bar-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.stats-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.stats-bar-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.stats-bar-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* Subtle glossy shine overlay */
.stats-bar-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

@media (max-width: 768px) {
  .stats-bar-hero {
    padding: 1.25rem 0;
  }

  /* On mobile, stats-bar sits below the fold (under the 100svh hero) */
  .hero .stats-bar-hero {
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 3;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .stats-bar-hero .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0;
  }

  .stats-bar-item {
    padding: 0.35rem 0.5rem;
  }

  .stats-bar-item:not(:last-child)::after {
    display: none;
  }

  .stats-bar-item:nth-child(odd) {
    border-right: 1px solid rgba(201, 168, 76, 0.15);
  }

  .stats-bar-number {
    font-size: 1.4rem;
  }

  .stats-bar-label {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
  }

  /* Make space for the absolutely positioned stats-bar below hero */
  .hero + .page-content-gold,
  .hero + div {
    margin-top: 170px;
  }

  /* On mobile, show first sections after hero immediately (no fade-in delay) */
  .hero + .page-content-gold > .sheila-greeting .fade-in,
  .hero + .page-content-gold > .section:first-child .fade-in,
  .hero + .page-content-gold > .section:nth-child(2) .fade-in,
  /* Subpages with page-header + stats-bar (tattoos, piercing, etc.) */
  .page-content-gold > .section:first-child .fade-in,
  /* Artist detail pages: show hero text immediately */
  .artist-hero .artist-hero-text.fade-in {
    opacity: 1;
  }
}

/* ==========================================================================
   Page Content Gold Gradient Wrapper
   ========================================================================== */

/* Full-page gold gradient background */
.page-content-gold {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 10% 60%, rgba(201, 168, 76, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 45%),
    linear-gradient(
      180deg,
      #fdfcfa 0%,
      #faf8f3 8%,
      #f7f4ed 20%,
      #f5f2e9 35%,
      #f4f0e6 50%,
      #f3efe5 65%,
      #f2eee3 80%,
      #f0ece1 100%
    );
}

/* Remove section-dark backgrounds inside gold wrapper */
.page-content-gold .section-dark {
  background: transparent;
  margin: 0;
  border-radius: 0;
}

/* Gold separator inside artist page-content-gold */
.page-content-gold .gold-separator {
  padding: 2.5rem 0 1rem;
}

/* Flowing section inside page-content-gold for portfolio */
.page-content-gold .section-flowing {
  background: transparent;
  margin: 0;
  border-radius: 0;
}

/* Decorative gold line separator */
.gold-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  margin: 0 auto;
  max-width: 300px;
}

.gold-separator::before,
.gold-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
}

.gold-separator .gold-diamond {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  transform: rotate(45deg);
  opacity: 0.5;
  flex-shrink: 0;
}

/* Value cards with gold top border accent */
.value-card-gold {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.06) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  position: relative;
  transition: all var(--transition);
}

.value-card-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 2px;
}

.value-card-gold:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.08);
}

.value-card-gold .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.value-card-gold .icon svg {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-block;
  vertical-align: middle;
}

.value-card-gold h3 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.value-card-gold p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (max-width: 480px) {
  .value-card-gold {
    padding: 1.5rem 1rem;
  }
  .value-card-gold .icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  .value-card-gold .icon svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  .value-card-gold h3 {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .value-card-gold p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

/* About section with gold accent image border */
.about-image-gold {
  position: relative;
}

.about-image-gold::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  pointer-events: none;
  z-index: -1;
}

/* Flowing section – removes hard edges between sections */
.section-flowing {
  padding: 5rem 0;
  position: relative;
}

.section-flowing + .section-flowing {
  padding-top: 2rem;
}

/* Gold quote / highlight strip */
.gold-highlight-strip {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.08) 20%,
    rgba(201, 168, 76, 0.12) 50%,
    rgba(201, 168, 76, 0.08) 80%,
    transparent 100%
  );
  padding: 3rem 2rem;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 16px;
  position: relative;
}

.gold-highlight-strip p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

.gold-highlight-strip .accent {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .about-image-gold::after {
    bottom: -8px;
    right: -8px;
    width: 50%;
    height: 50%;
  }
  .gold-highlight-strip {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   Hero CTA Wide Button
   ======================================== */
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta-wide {
  display: block;
  width: 100%;
  max-width: 282px;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-cta-wide {
    max-width: 100%;
  }
}

/* ========================================
   Contact Cards Grid (Kontakt Page)
   ======================================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-cards-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.06) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  position: relative;
  transition: all var(--transition);
  display: block;
  color: inherit;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 2px;
}

.contact-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.08);
}

a.contact-card:hover {
  color: inherit;
}

.contact-card-icon {
  margin-bottom: 1.25rem;
}

.contact-card-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-accent);
  margin: 0 auto;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--color-text-muted);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
  line-height: 1.6;
  white-space: nowrap;
}

.contact-card p a {
  color: var(--color-accent);
}

.contact-card p a:hover {
  color: var(--color-accent-hover);
}

.contact-card-wide {
  text-align: center;
}

.contact-card-wide .hours-table {
  margin: 0 auto;
}

/* Contact Form Wrapper (centered) */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.06) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  position: relative;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 2px;
}

/* Contact Cards Responsive */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-cards-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2rem 1.25rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact-cards-grid .contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 0;
  }

  .contact-cards-row {
    gap: 1rem;
    margin-top: 1rem;
  }

  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-card-icon svg {
    width: 28px;
    height: 28px;
  }

  .contact-card h4 {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .contact-card p {
    font-size: 0.8rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem 1rem;
  }
}

/* ========================================
   Language Switcher
   ======================================== */
.lang-switcher {
  position: relative;
  margin-left: 0.25rem;
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 0.4rem 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  font-weight: 500;
}

.lang-switcher-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.lang-globe-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.lang-switcher-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.35rem;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 10001;
}

.lang-switcher.open .lang-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.lang-option.active {
  color: var(--color-accent);
}

.lang-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 400;
}

/* Mobile Language Switcher (in header bar) */
.mobile-lang-switcher {
  display: none;
  position: relative;
}

.mobile-lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: rgba(60, 50, 30, 0.75);
  cursor: pointer;
  transition: color var(--transition);
  padding: 0;
}

.mobile-lang-toggle:hover {
  color: var(--color-accent);
}

.mobile-lang-toggle .lang-globe-icon {
  width: 20px;
  height: 20px;
}

.mobile-lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 50%;
  transform: translateX(50%) translateY(-8px);
  background: linear-gradient(135deg, rgba(235, 222, 190, 0.94) 0%, rgba(225, 210, 172, 0.96) 100%);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 0.35rem;
  min-width: 50px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(160, 130, 50, 0.12);
}

.mobile-lang-switcher.open .mobile-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(50%) translateY(0);
}

.mobile-lang-menu .lang-option {
  display: block;
  padding: 0.4rem 0.75rem;
  color: rgba(60, 50, 30, 0.7);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-align: center;
}

.mobile-lang-menu .lang-option:hover {
  background: rgba(201, 168, 76, 0.15);
  color: #9a7b2a;
}

.mobile-lang-menu .lang-option.active {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .mobile-lang-switcher {
    display: block;
  }

  .lang-switcher {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .lang-switcher {
    margin: 0.75rem 0 0.25rem;
    align-self: flex-start;
  }

  .lang-switcher-toggle {
    border-color: rgba(255, 255, 255, 0.2);
  }

  .lang-switcher-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.25rem;
    display: none;
  }

  .lang-switcher.open .lang-switcher-menu {
    display: block;
  }
}

/* ========================================
   Comparison Section – Mit / Ohne
   ======================================== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.comparison-col {
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  position: relative;
}

.comparison-col--good {
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.10) 0%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.comparison-col--good::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  border-radius: 3px;
}

.comparison-col--bad {
  background: linear-gradient(
    160deg,
    rgba(180, 50, 50, 0.06) 0%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.5) 100%
  );
  border: 1px solid rgba(180, 50, 50, 0.15);
}

.comparison-col--bad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #b43232, transparent);
  border-radius: 3px;
}

.comparison-col h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.comparison-col--good h3 {
  color: var(--color-accent);
}

.comparison-col--bad h3 {
  color: #b43232;
}

.comparison-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.comparison-col--good .comparison-icon {
  background: rgba(201, 168, 76, 0.15);
  color: var(--color-accent);
}

.comparison-col--bad .comparison-icon {
  background: rgba(180, 50, 50, 0.10);
  color: #b43232;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.comparison-list li::before {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.comparison-col--good .comparison-list li::before {
  content: '\2713';
  color: var(--color-accent);
  font-weight: 700;
}

.comparison-col--bad .comparison-list li::before {
  content: '\2717';
  color: #b43232;
  font-weight: 700;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-col {
    padding: 2rem 1.5rem 1.5rem;
  }

  .comparison-col h3 {
    font-size: 1.15rem;
  }

  .comparison-list li {
    font-size: 0.9rem;
  }
}

/* ========================================
   Gallery Load More
   ======================================== */
.gallery-loadmore-wrapper {
  position: relative;
  text-align: center;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.gallery-loadmore-fade {
  display: none;
}

.gallery-loadmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-loadmore-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

.gallery-loadmore-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.gallery-loadmore-btn:hover svg {
  transform: translateY(2px);
}

.gallery-item-hidden {
  display: none !important;
}

/* ========================================
   Piercing Price List
   ======================================== */
.price-list {
  margin-top: 1.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.price-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.price-item-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text);
}

.price-item-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: 1rem;
}

.price-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

@media (max-width: 480px) {
  .price-item-name {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .price-item-value {
    font-size: 0.95rem;
  }
}
