/**
 * Beauty Concept Premium Homepage Styles
 * Inspired by Apple, Stripe, and premium beauty brands
 * 
 * @version 2.0.0
 */

/* ==========================================================================
   Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Premium Color Palette */
  --premium-rose-50: #fff1f2;
  --premium-rose-100: #ffe4e6;
  --premium-rose-200: #fecdd3;
  --premium-rose-600: #e11d48;
  --premium-rose-900: #881337;
  --premium-rose-950: #4c0519;
  
  --premium-amber-50: #fffbeb;
  --premium-amber-100: #fef3c7;
  --premium-amber-200: #fde68a;
  
  --premium-gray-50: #f9fafb;
  --premium-gray-100: #f3f4f6;
  --premium-gray-600: #4b5563;
  --premium-gray-700: #374151;
  --premium-gray-900: #111827;
  
  /* Premium Gradients */
  --gradient-rose: linear-gradient(135deg, var(--premium-rose-600) 0%, var(--premium-rose-900) 100%);
  --gradient-ambient: linear-gradient(135deg, var(--premium-rose-50) 0%, #ffffff 50%, var(--premium-amber-50) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 25px 50px -12px rgba(136, 19, 55, 0.25);
}

/* ==========================================================================
   PREMIUM HERO SECTION
   ========================================================================== */

.hero-premium {
  position: relative;
  min-height: 60vh;
  max-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-ambient);
  padding: 0;
}

/* Responsive Height Adjustments */
@media (max-width: 768px) {
  .hero-premium {
    min-height: 55vh; /* Reduziert auf 85% auf Mobile */
	max-height: 55vh;
  }
}

@media (max-width: 480px) {
  .hero-premium {
    min-height: 40vh; /* Noch kleiner auf sehr kleinen Phones */
	max-height: 40vh;
	font-size: 2rem;
  }
}

/* Landscape Mode auf Mobile (Querformat) - KRITISCH! */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium {
    min-height: 60vh; /* REDUZIERT: war 100vh - zu hoch! */
    max-height: 60vh; /* Verhindert Content-Verdeckung */
  }
}

/* Extra kleine Landscape Screens (iPhone SE, etc.) */
@media (max-height: 450px) and (orientation: landscape) {
  .hero-premium {
    min-height: 85vh; /* Noch mehr reduziert */
    max-height: 85vh;
  }
}

/* Media Background */
.hero-premium__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  
  /* Anti-flicker optimizations */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform;
}

.hero-premium__video,
.hero-premium__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* Default: perfekt zentriert */
  
  /* Anti-flicker for video/image */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

/* Landscape Mobile: Fokus nach oben verschieben */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium__video,
  .hero-premium__image {
    object-position: center 45%; /* Nur leicht nach oben, war 35% */
  }
}

/* Portrait Mobile: ZENTRIERT LASSEN - NICHT nach oben! */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-premium__video,
  .hero-premium__image {
    object-position: center center; /* CENTER - kein Abschneiden! */
  }
}

.hero-premium__image {
  background-size: cover;
  background-position: center center; /* Default CENTER statt 35% */
  background-repeat: no-repeat;
}

/* Landscape: Leicht nach oben */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium__image {
    background-position: center 45%; /* Konsistent mit object-position */
  }
}

.hero-premium__image--placeholder {
  background: var(--gradient-ambient);
}

.hero-premium__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

/* Floating Decorations */
.hero-premium__decorations {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.hero-decoration--1 {
  width: 400px;
  height: 400px;
  background: var(--premium-rose-600);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-decoration--2 {
  width: 300px;
  height: 300px;
  background: var(--premium-amber-200);
  bottom: -50px;
  left: -50px;
  animation-delay: -7s;
}

.hero-decoration--3 {
  width: 250px;
  height: 250px;
  background: var(--premium-rose-200);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Content Container */
.hero-premium__container {
  position: relative;
  z-index: 3;
}

.hero-premium__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: var(--spacing-2xl) 0;
}

/* Mobile Optimierungen für Content */
@media (max-width: 768px) {
  .hero-premium__content {
    padding: var(--spacing-lg) 0; /* Weniger Padding auf Mobile */
  }
}

/* Landscape: SEHR kompakt wegen wenig Höhe */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium__content {
    padding: var(--spacing-sm) 0; /* Minimal: 1rem statt 2rem */
    max-width: 700px; /* Breiter nutzen */
  }
}

/* Extra kleine Landscape Screens */
@media (max-height: 450px) and (orientation: landscape) {
  .hero-premium__content {
    padding: 0.75rem 0; /* Extrem kompakt */
  }
}

/* Badge */
.hero-premium__badge-wrapper {
  margin-bottom: var(--spacing-lg);
}

.hero-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  transition: all var(--transition-base);
  animation: glow 3s ease-in-out infinite;
}

.hero-premium__badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-premium__badge-icon {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
}

/* Title */
.hero-premium__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Landscape: Deutlich kleiner */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem); /* Viel kleiner! */
    margin-bottom: var(--spacing-sm); /* Weniger Margin */
    line-height: 1.05; /* Kompakter */
  }
}

/* Extra kleine Landscape */
@media (max-height: 450px) and (orientation: landscape) {
  .hero-premium__title {
    font-size: clamp(1.5rem, 5vw, 2rem); /* Noch kleiner */
    margin-bottom: 0.5rem;
  }
}

.hero-premium__title-line {
  display: block;
  color: #ffffff;
}

.hero-premium__title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--premium-rose-200) 0%, var(--premium-amber-200) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: var(--spacing-xs);
}

/* Subtitle */
.hero-premium__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Landscape: Kompakter */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium__subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem); /* Kleiner */
    line-height: 1.5; /* Kompakter */
    margin-bottom: var(--spacing-md); /* Weniger Margin */
    max-width: 550px; /* Schmaler */
  }
}

/* Extra kleine Landscape: Ausblenden oder minimal */
@media (max-height: 450px) and (orientation: landscape) {
  .hero-premium__subtitle {
    display: none; /* Kein Platz mehr! */
  }
}

/* CTA Buttons */
.hero-premium__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* Reduziert von var(--spacing-md) = 1.5rem */
  justify-content: center;
  margin-bottom: var(--spacing-2xl); /* Reduziert von var(--spacing-3xl) */
}

/* Mobile: Buttons vertikal stapeln */
@media (max-width: 480px) {
  .hero-premium__cta {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch; /* Buttons volle Breite */
  }
}

/* Premium Button Styles */
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem; /* Reduziert von 0.5rem */
  padding: 0.75rem 1.5rem; /* Deutlich kleiner: war 0.875rem 1.75rem */
  font-family: var(--font-body);
  font-size: 0.875rem; /* Deutlich kleiner: war 0.9375rem */
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px; /* Kleiner: war 10px */
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap; /* Verhindert Umbruch */
}

/* Responsive Button Sizes */
@media (max-width: 768px) {
  .btn-premium {
    padding: 0.625rem 1.25rem; /* Kleiner auf Tablet */
    font-size: 0.8125rem; /* 13px */
  }
}

@media (max-width: 480px) {
  .btn-premium {
    padding: 0.625rem 1rem; /* Noch kompakter auf Mobile */
    font-size: 0.8125rem; /* 13px */
    justify-content: center; /* Zentriert Text */
  }
}

.btn-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn-premium:hover::before {
  opacity: 1;
}

.btn-premium--primary {
  background: var(--gradient-rose);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(136, 19, 55, 0.2); /* Deutlich kleiner */
}

.btn-premium--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 19, 55, 0.3); /* Reduziert */
}

.btn-premium--ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-premium--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-premium__icon {
  transition: transform var(--transition-base);
  width: 14px; /* Kleiner: war 16px */
  height: 14px;
  flex-shrink: 0; /* Verhindert Schrumpfen */
}

/* Mobile: Icon noch kleiner */
@media (max-width: 768px) {
  .btn-premium__icon {
    width: 12px;
    height: 12px;
  }
}

.btn-premium:hover .btn-premium__icon {
  transform: translateX(3px); /* Subtiler: war 4px */
}

/* Trust Indicators */
.hero-premium__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* Mobile: Trust Indicators kompakter */
@media (max-width: 768px) {
  .hero-premium__trust {
    padding: var(--spacing-md);
    gap: var(--spacing-md);
    flex-direction: column;
  }
}

/* Landscape: AUSBLENDEN - kein Platz! */
@media (max-width: 896px) and (orientation: landscape) {
  .hero-premium__trust {
    display: none; /* Trust Indicators weg auf Landscape */
  }
}

.trust-indicator {
  text-align: center;
}

.trust-indicator__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--spacing-xs);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.trust-indicator__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.trust-indicator__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   PREMIUM ABOUT SECTION
   ========================================================================== */

.about-premium {
  padding: var(--spacing-xl) 0; /* Reduziert von 3xl (6rem) zu xl (3rem) */
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Mobile: Noch weniger Padding */
@media (max-width: 768px) {
  .about-premium {
    padding: var(--spacing-lg) 0; /* 2rem auf Mobile */
  }
}

.about-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--premium-gray-50) 0%, transparent 100%);
  pointer-events: none;
}

/* Section Header */
.about-premium__header {
  text-align: center;
  margin-bottom: var(--spacing-lg); /* Reduziert von 3xl (6rem) zu lg (2rem) */
}

/* Mobile: Noch kompakter */
@media (max-width: 768px) {
  .about-premium__header {
    margin-bottom: var(--spacing-md); /* 1.5rem auf Mobile */
  }
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--premium-rose-600);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--premium-gray-900);
  margin-bottom: var(--spacing-md);
}

.section-title--center {
  text-align: center;
}

.section-title__highlight {
  display: block;
  color: var(--premium-rose-600);
  margin-top: var(--spacing-xs);
}

/* Main Grid */
.about-premium__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl); /* Reduziert von 3xl (6rem) zu xl (3rem) */
  align-items: start;
  margin-bottom: var(--spacing-xl); /* Auch reduziert */
}

@media (min-width: 1024px) {
  .about-premium__grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--spacing-lg) 3rem; /* Reduziert von 3xl 4rem zu lg 3rem */
  }
}

/* Mobile: Noch kompakteres Grid */
@media (max-width: 768px) {
  .about-premium__grid {
    gap: var(--spacing-lg); /* 2rem auf Mobile */
    margin-bottom: var(--spacing-lg);
  }
}

/* Visual Column */
.about-premium__visual {
  position: relative;
  max-width: 450px; /* Begrenzt Portrait-Breite */
  margin: 0 auto; /* Zentriert auf Mobile */
}

/* Desktop: Portrait links aligned */
@media (min-width: 1024px) {
  .about-premium__visual {
    margin: 0; /* Links aligned auf Desktop */
  }
}

.about-premium__portrait {
  position: relative;
  aspect-ratio: 1/1; /* ZURÜCK zu 3/4 - kompakter als 4/5 */
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

/* Mobile: Noch kompakter */
@media (max-width: 768px) {
  .about-premium__visual {
    max-width: 350px; /* Noch kleiner auf Mobile */
  }
  
  .about-premium__portrait {
    border-radius: 50%; /* Kleinere Rundung */
  }
}

.about-premium__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-premium__portrait:hover .about-premium__portrait-img {
  transform: scale(1.05);
}

.about-premium__portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-ambient);
  color: var(--premium-gray-600);
  padding: var(--spacing-xl);
  text-align: center;
}

.about-premium__portrait-placeholder svg {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
  color: var(--premium-rose-600);
}

/* Portrait Decorations */
.about-premium__portrait-frame {
  position: absolute;
  inset: -8px; /* Reduziert von -10px */
  border: 2px solid var(--premium-rose-200);
  border-radius: 50%; /* Angepasst an Portrait */
  pointer-events: none;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .about-premium__portrait-frame {
    inset: -6px; /* Noch kleiner auf Mobile */
    border-radius: 50%;
  }
}

.about-premium__portrait-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--premium-amber-100);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  bottom: -50px;
  right: -50px;
  pointer-events: none;
}

/* Certification Badges */
.about-premium__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: #ffffff;
  border: 1px solid var(--premium-gray-100);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--premium-gray-700);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.certification-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--premium-rose-200);
}

.certification-badge__icon {
  color: var(--premium-rose-600);
}

/* Content Column */
.about-premium__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.about-premium__intro {
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--premium-gray-100);
}

.about-premium__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--premium-gray-900);
  margin-bottom: var(--spacing-xs);
}

.about-premium__role {
  font-size: 1.125rem;
  color: var(--premium-rose-600);
  font-weight: 500;
}

/* Philosophy/Quote */
.about-premium__philosophy {
  position: relative;
  padding: var(--spacing-xl);
  background: var(--gradient-ambient);
  border-radius: 20px;
  border-left: 4px solid var(--premium-rose-600);
}

.about-premium__quote {
  margin: 0;
  position: relative;
}

.about-premium__quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  color: var(--premium-rose-200);
  opacity: 0.5;
}

.about-premium__quote p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--premium-gray-700);
  font-style: italic;
  margin: 0;
  padding-left: var(--spacing-lg);
}

/* Timeline */
.about-premium__timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--premium-gray-900);
  margin-bottom: var(--spacing-lg);
}

.timeline {
  position: relative;
  padding-left: var(--spacing-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--premium-rose-600) 0%, var(--premium-rose-200) 100%);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--spacing-xl);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__marker {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 3px solid var(--premium-rose-600);
  border-radius: 50%;
  z-index: 1;
  transition: all var(--transition-base);
}

.timeline-item__marker--active {
  width: 24px;
  height: 24px;
  left: -29px;
  background: var(--premium-rose-600);
  box-shadow: 0 0 0 4px rgba(136, 19, 55, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(136, 19, 55, 0.1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(136, 19, 55, 0.2);
  }
}

.timeline-item__content {
  background: #ffffff;
  padding: var(--spacing-md);
  border-radius: 12px;
  border: 1px solid var(--premium-gray-100);
  transition: all var(--transition-base);
}

.timeline-item__content:hover {
  border-color: var(--premium-rose-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.timeline-item__year {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--premium-rose-600);
  padding: 0.25rem 0.75rem;
  background: var(--premium-rose-50);
  border-radius: 9999px;
  margin-bottom: var(--spacing-xs);
}

.timeline-item__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--premium-gray-900);
  margin-bottom: var(--spacing-xs);
}

.timeline-item__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--premium-gray-600);
  margin: 0;
}

/* Signature */
.about-premium__signature {
  padding: var(--spacing-xl);
  background: var(--premium-gray-50);
  border-radius: 16px;
}

.signature-box__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--premium-gray-700);
  margin-bottom: var(--spacing-lg);
  font-weight: 500;
}

.signature-box__sign {
  margin-bottom: var(--spacing-md);
}

.signature-box__line {
  width: 200px;
  height: auto;
  color: var(--premium-rose-600);
  margin-bottom: var(--spacing-xs);
}

.signature-box__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--premium-gray-900);
  margin: 0;
}

.signature-box__tagline {
  font-size: 1rem;
  color: var(--premium-rose-600);
  font-weight: 500;
  margin: 0;
}

/* CTA in About */
.about-premium__cta {
  margin-top: var(--spacing-md);
}

/* Brand Excellence */
.about-premium__excellence {
  margin-top: var(--spacing-3xl);
  padding-top: var(--spacing-3xl);
  border-top: 1px solid var(--premium-gray-100);
}

.excellence-card {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-2xl);
  background: var(--gradient-ambient);
  border-radius: 24px;
  border: 1px solid var(--premium-gray-100);
}

.excellence-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--premium-gray-900);
  margin-bottom: var(--spacing-md);
}

.excellence-card__text {
  font-size: 1rem;
  color: var(--premium-gray-600);
  margin-bottom: var(--spacing-lg);
}

.excellence-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

.brand-tag {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: #ffffff;
  border: 1px solid var(--premium-gray-200);
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--premium-gray-700);
  transition: all var(--transition-base);
}

.brand-tag:hover {
  background: var(--premium-rose-50);
  border-color: var(--premium-rose-200);
  color: var(--premium-rose-900);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
  }

  .hero-premium__content {
    padding: var(--spacing-xl) 0;
  }

  .hero-premium__cta {
    flex-direction: column;
  }

  .btn-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-premium__trust {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .trust-indicator__divider {
    width: 60px;
    height: 1px;
  }

  .about-premium {
    padding: var(--spacing-2xl) 0;
  }

  .about-premium__grid {
    gap: var(--spacing-xl);
  }

  .timeline {
    padding-left: var(--spacing-lg);
  }

  .timeline-item__content {
    padding: var(--spacing-sm);
  }
}

/* ==========================================================================
   Accessibility & Print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .hero-premium__decorations,
  .hero-premium__scroll,
  .hero-premium__media {
    display: none;
  }
}
