/* ============================================
   Pilgerstorfer Klarinettenblätter Austria
   Premium Artisan Reed Manufacturer
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #FAF7F2;
  --color-bg-alt: #F0EBE3;
  --color-bg-dark: #1A1A1A;
  --color-text: #2C2C2C;
  --color-text-light: #6B6B6B;
  --color-text-on-dark: #F0EBE3;
  --color-gold: #B8860B;
  --color-gold-light: #D4A843;
  --color-gold-dark: #8B6508;
  --color-green: #2D4A3E;
  --color-green-light: #3D6B5A;
  --color-reed: #C4A35A;
  --color-wood: #8B6F47;
  --color-wood-light: #A6885C;
  --color-accent: #7B2D26;
  --color-border: #DDD5C8;
  --color-white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1200px;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }

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

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

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-main a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--color-gold-dark);
  background: rgba(184, 134, 11, 0.08);
}

.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 16px;
  border-left: 1px solid var(--color-border);
  padding-left: 16px;
}

.lang-switch a {
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lang-switch a.active {
  background: var(--color-gold);
  color: white;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2D2418 40%, #3D2E1C 70%, #1A1A1A 100%);
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(184, 134, 11, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(196, 163, 90, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(139, 111, 71, 0.08) 0%, transparent 60%);
}

/* Reed texture pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.5) 2px,
    rgba(255,255,255,0.5) 3px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(184, 134, 11, 0.2);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-text-on-dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(240, 235, 227, 0.7);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background: var(--color-gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid rgba(184, 134, 11, 0.5);
}

.btn-outline:hover {
  background: rgba(184, 134, 11, 0.15);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.btn-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}

.btn-dark:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

/* --- Sections --- */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Highlights / Features --- */
.highlights {
  background: var(--color-white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.highlight-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  transition: all var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: white;
}

.highlight-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.highlight-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Story / Production Section --- */
.story-section {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.story-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #3D2E1C, #2D4A3E, #1A1A1A);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(255,255,255,0.3) 4px,
    rgba(255,255,255,0.3) 5px
  );
}

.story-visual::after {
  content: 'Arundo Donax';
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: rgba(212, 168, 67, 0.4);
}

.story-content .section-label { color: var(--color-gold-light); }
.story-content h2 { color: var(--color-text-on-dark); font-size: 2.2rem; margin-bottom: 24px; }
.story-content p {
  color: rgba(240, 235, 227, 0.75);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

/* --- Product Cards --- */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--color-text-light);
}

.product-tab:hover,
.product-tab.active {
  background: var(--color-gold);
  color: white;
  border-color: var(--color-gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.product-card .instrument {
  font-size: 0.82rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-card .description {
  font-size: 0.92rem;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.product-card .strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.strength-badge {
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-bg);
  border-radius: 50px;
  color: var(--color-text-light);
}

/* --- References / Artists --- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.artist-card {
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.artist-card:hover {
  box-shadow: var(--shadow-md);
}

.artist-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.artist-card .role {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.artist-card .org {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* --- Contact Section --- */
.contact-section { background: var(--color-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail .text {
  font-size: 0.95rem;
}

.contact-detail .label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.contact-map {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: var(--radius-lg);
}

/* --- Accessories Grid --- */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.accessory-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.accessory-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.accessory-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.accessory-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.accessory-card p {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* --- Sample Pack --- */
.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.sample-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.sample-card:hover {
  border-color: var(--color-gold);
}

.sample-card.featured {
  border-color: var(--color-gold);
  position: relative;
}

.sample-card.featured::before {
  content: '★';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.sample-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.sample-card .pieces {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.sample-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

/* --- Mouthpiece Section --- */
.mouthpiece-section {
  background: var(--color-bg-alt);
}

.mouthpiece-group {
  margin-bottom: 48px;
}

.mouthpiece-group h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.mouthpiece-group .subtitle {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.mouthpiece-models {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-tag {
  padding: 8px 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}

.model-tag:hover {
  border-color: var(--color-gold);
  background: rgba(184, 134, 11, 0.05);
}

/* --- News Section --- */
.news-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.news-card .date {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.news-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.news-card p {
  color: var(--color-text-light);
  font-size: 1rem;
}

/* --- Price List --- */
.price-section {
  text-align: center;
}

.price-box {
  max-width: 500px;
  margin: 0 auto;
  padding: 48px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-gold);
}

.price-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.price-box p {
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
  padding: 64px 0 32px;
}

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

.footer-brand p {
  color: rgba(240, 235, 227, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(240, 235, 227, 0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(240, 235, 227, 0.4);
}

/* --- Page Header (for sub-pages) --- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2D2418 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--color-text-on-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(240, 235, 227, 0.6);
  font-size: 1.05rem;
}

/* --- Impressum --- */
.legal-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
}

.legal-content p {
  margin-bottom: 12px;
  color: var(--color-text-light);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .lang-switch { display: none; }
  .menu-toggle { display: block; }

  .nav-main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
  }

  .nav-main.open .lang-switch-mobile {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
  }

  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 2.2rem; }

  section { padding: 64px 0; }
  .product-grid { grid-template-columns: 1fr; }
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  margin: 24px auto;
}

/* --- Quote Block --- */
.quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-text-light);
}

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--color-gold);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* Tab content visibility */
.tab-content { display: none; }
.tab-content.active { display: block; }


/* === Image Integration Styles === */

/* Hero with background image */
.hero {
  background-image: url('../images/Headpics/pic1.png');
  background-size: cover;
  background-position: center;
}

.hero::before {
  background: rgba(26, 26, 24, 0.75);
}

/* Page headers with background images */
.page-header {
  background-size: cover;
  background-position: center;
  position: relative;
}

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

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

/* Product card images */
.product-card-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 16px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 12px;
}

/* Accessory card images */
.accessory-img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
}

/* Artist portrait */
.artist-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid var(--color-border);
}

/* Story visual with real image */
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.story-visual.has-img {
  background: none;
}

.story-visual.has-img::before,
.story-visual.has-img::after {
  display: none;
}

/* Mouthpiece images */
.mouthpiece-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 16px 0;
}

/* Mouthpiece group with image layout */
.mouthpiece-group-with-img {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.mouthpiece-group-img {
  max-width: 250px;
  border-radius: var(--radius-md);
}

@media (max-width: 768px) {
  .mouthpiece-group-with-img {
    grid-template-columns: 1fr;
  }
  .mouthpiece-group-img {
    max-width: 100%;
  }
}

/* Product navigation images */
.product-nav-img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
}

/* Signature image */
.signature-img {
  max-width: 200px;
  margin: 16px auto;
  display: block;
}

/* Production images */
.production-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
