/* === home === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color:#F5F0E8; color:#2C2C2C; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }

  nav a[aria-current="page"], nav a.is-active { color: #D4AF37; }
  nav a[aria-current="page"]::after, nav a.is-active::after { width: 100%; }

  .nav-link { position: relative; }
  .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0%;
    background: #D4AF37; transition: width 0.3s ease;
  }
  .nav-link:hover::after { width: 100%; }

  .dropdown-wrap:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-panel { opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.25s ease; }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeInUp 1s ease forwards; }
  .fade-up-delay1 { animation: fadeInUp 1s ease forwards; animation-delay: 0.2s; opacity:0; }
  .fade-up-delay2 { animation: fadeInUp 1s ease forwards; animation-delay: 0.4s; opacity:0; }

  @keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  .gold-shimmer {
    background: linear-gradient(90deg, #D4AF37, #F5E7B8, #D4AF37);
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-track { animation: marquee 30s linear infinite; }

  .grain-overlay {
    background-image: radial-gradient(rgba(44,44,44,0.06) 1px, transparent 1px);
    background-size: 3px 3px;
  }

/* === about === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  .font-body { font-family: 'Lato', sans-serif; }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-in-up { animation: fadeInUp 0.9s ease-out both; }
  .fade-in-up.delay-1 { animation-delay: 0.15s; }
  .fade-in-up.delay-2 { animation-delay: 0.3s; }
  @keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .gold-shimmer { animation: shimmer 3s ease-in-out infinite; }

/* === author === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; color: #2C2C2E; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.9s ease-out both; }
  @keyframes softPulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
  }
  .animate-soft-pulse { animation: softPulse 3.2s ease-in-out infinite; }
  .divider-gold::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    background: #D4AF37;
    margin-top: 18px;
  }
  .divider-gold-center::after {
    margin-left: auto;
    margin-right: auto;
  }

/* === entertainment === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; color: #2C2C2C; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .animate-fadeInUp { animation: fadeInUp 0.9s ease-out both; }
  @keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  .animate-drift { animation: drift 6s ease-in-out infinite; }
  @keyframes waveMotion { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
  .wave-bar { animation: waveMotion 1.4s ease-in-out infinite; transform-origin: bottom; }
  nav a[aria-current="page"], nav a.is-active { color: #6B2D5E; border-bottom: 2px solid #D4AF37; }

/* === voiceover === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }

  @keyframes eq {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
  }
  .eq-bar { animation: eq 1.1s ease-in-out infinite; transform-origin: bottom; }
  .eq-bar:nth-child(1) { animation-delay: 0s; }
  .eq-bar:nth-child(2) { animation-delay: 0.15s; }
  .eq-bar:nth-child(3) { animation-delay: 0.3s; }
  .eq-bar:nth-child(4) { animation-delay: 0.45s; }
  .eq-bar:nth-child(5) { animation-delay: 0.6s; }
  .eq-bar:nth-child(6) { animation-delay: 0.75s; }
  .eq-bar:nth-child(7) { animation-delay: 0.2s; }
  .eq-bar:nth-child(8) { animation-delay: 0.5s; }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.8s ease-out both; }

  /* Radio-driven tabs, no JS */
  .vo-tab-input { position: absolute; opacity: 0; pointer-events: none; }
  .vo-panel { display: none; }
  #tab-commercial:checked ~ .vo-panels #panel-commercial,
  #tab-narration:checked ~ .vo-panels #panel-narration,
  #tab-inspirational:checked ~ .vo-panels #panel-inspirational,
  #tab-childrens:checked ~ .vo-panels #panel-childrens {
    display: block;
  }
  #tab-commercial:checked ~ .vo-tabbar label[for="tab-commercial"],
  #tab-narration:checked ~ .vo-tabbar label[for="tab-narration"],
  #tab-inspirational:checked ~ .vo-tabbar label[for="tab-inspirational"],
  #tab-childrens:checked ~ .vo-tabbar label[for="tab-childrens"] {
    background-color: #D4AF37;
    color: #2C2C2C;
    border-color: #D4AF37;
  }

/* === shop === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; color: #2C2C2C; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.9s ease-out both; }
  .delay-1 { animation-delay: 0.15s; }
  .delay-2 { animation-delay: 0.3s; }
  @keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  .animate-shimmer { animation: shimmer 3s ease-in-out infinite; }

/* === product-detail === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; color: #2C2C2C; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  .animate-fade-up { animation: fadeInUp 0.7s ease-out both; }
  .delay-1 { animation-delay: .1s; }
  .delay-2 { animation-delay: .2s; }
  .delay-3 { animation-delay: .3s; }
  ::selection { background-color: #D4AF37; color: #2C2C2C; }
  nav a[aria-current="page"], nav a.is-active { color: #6B2D5E; border-bottom: 2px solid #D4AF37; }
  .dropdown-panel { visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(8px); transition: all 0.2s ease-out; }
  .dropdown-wrap:hover .dropdown-panel, .dropdown-wrap:focus-within .dropdown-panel { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }

/* === cart === */
html, body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.7s ease-out both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  nav a[aria-current="page"], nav a.is-active { color: #6B2D5E; border-bottom: 2px solid #D4AF37; }

/* === account === */
html { scroll-behavior: smooth; }
  body { font-family: 'Montserrat', sans-serif; background-color: #F5F0E8; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  .font-body { font-family: 'Lato', sans-serif; }

  nav a[aria-current="page"], nav a.is-active {
    color: #6B2D5E;
    border-bottom: 2px solid #D4AF37;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.7s ease-out both; }

  .divider-gold {
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    height: 1px;
  }

/* === blog === */
html, body { background-color: #F5F0E8; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }
  .font-body { font-family: 'Lato', sans-serif; }

  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.7s ease-out both; }
  .animate-fade-up-1 { animation: fadeInUp 0.7s ease-out 0.1s both; }
  .animate-fade-up-2 { animation: fadeInUp 0.7s ease-out 0.2s both; }

/* === contact === */
html { scroll-behavior: smooth; }
  body { font-family: 'Lato', sans-serif; background-color: #F5F0E8; }
  .font-display { font-family: 'Playfair Display', serif; }
  .font-cinzel { font-family: 'Cinzel', serif; }
  .font-nav { font-family: 'Montserrat', sans-serif; }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-fade-up { animation: fadeInUp 0.9s ease-out both; }
  .delay-1 { animation-delay: .15s; }
  .delay-2 { animation-delay: .3s; }

  @keyframes waveline {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
  }
  .wave-bar { animation: waveline 1.6s ease-in-out infinite; transform-origin: center; }
