/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #140b02;
  --charcoal: #1f1206;
  --brown-deep: #3a220c;
  --rust: #6b3d13;
  --brown: #d6a23a;
  --brown-light: #f5dba5;
  --brown-dark: #b17821;
  --gold: #f7c948;
  --cream: #fff4d6;
  --cream-dark: #fde9bb;
  --warm-white: #fffaf0;
  --foreground-light: #fffef7;
  --foreground-dark: #2c1a09;
  --text-dark: #3d2410;
  --text-dark-soft: #6c4b20;
  --text-light-soft: #b08845;
  --text-light-muted: #c89c5a;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--charcoal);
  color: var(--foreground-light);
  font-family: 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  direction: rtl;
  line-height: 1.8;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Frank Ruhl Libre', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

::selection {
  background: var(--gold);
  color: var(--black);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--brown-dark); border-radius: 10px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #2c1a09, #000);
  color: #f8e3a3;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), inset 0 2px 6px rgba(255, 255, 255, 0.12);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3), inset 0 2px 8px rgba(255, 255, 255, 0.15);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid #2c1a09;
  color: #2c1a09;
  padding: 16px 40px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.btn-outline:hover {
  background: #2c1a09;
  color: #f8e3a3;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

/* ===== CARD ===== */
.card-soft {
  background: var(--warm-white);
  border: 1px solid rgba(214, 162, 58, 0.2);
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}
.card-soft:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(214, 162, 58, 0.4);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(32, 20, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 6px rgba(0,0,0,0.4);
  padding: 14px 0;
}
.navbar-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #fff;
  background: rgba(20, 11, 2, 0.7);
  padding: 6px 16px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.navbar-links a {
  font-size: 16px;
  color: var(--text-light-soft);
  transition: color 0.3s;
}
.navbar-links a:hover {
  color: var(--brown-dark);
}
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light-soft);
  font-size: 24px;
  line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(32, 20, 8, 0.96);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-size: 24px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--brown);
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-hamburger { display: block; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  background: #ffe24a;
}
.hero-image-half {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.hero-content-half {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 64px;
  background: transparent;
}
.hero-text {
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4));
  border: 1.5px solid rgba(44, 26, 9, 0.12);
  border-radius: 36px;
  padding: 48px 44px 56px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-text::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #201205;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}
.hero-text h1 span,
.hero-text h1 {
  text-shadow: 0 4px 18px rgba(32, 18, 5, 0.35);
}
.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3a220c;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(251, 191, 36, 0.18);
  border-radius: 8px;
  display: inline-block;
}
.hero-text p {
  color: #4a3316;
  font-size: 19px;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 1rem;
  padding: 16px 24px;
  border: 1px solid rgba(44, 26, 9, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-badge .number {
  font-size: 2.1rem;
  font-weight: 900;
  color: #2c1a09;
  letter-spacing: -0.5px;
}
.hero-badge .label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(44, 26, 9, 0.78);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--brown-light);
  animation: bounce 2.5s infinite;
  font-size: 20px;
  z-index: 2;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image-half {
    min-height: 50vh;
  }
  .hero-content-half {
    padding: 48px 24px 64px;
    text-align: center;
  }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-text p { max-width: 100%; }
  .hero-buttons { justify-content: center; }
}

/* ===== ABOUT ===== */
.about {
  padding: 96px 0;
  background: url('תכלת 2.jpg') center/cover no-repeat;
  color: var(--foreground-dark);
}
.about-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.about-inner > .fade-up {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(214, 162, 58, 0.35);
  border-radius: 1.5rem;
  padding: 48px 40px;
  box-shadow: 0 12px 36px rgba(82, 52, 12, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown-dark);
  margin-bottom: 8px;
  padding: 4px 14px;
  background: rgba(214, 162, 58, 0.2);
  border-radius: 6px;
  display: inline-block;
}
.about h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--foreground-dark);
}
.about p {
  color: var(--text-dark-soft);
  font-size: 19px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about p.light {
  color: var(--text-dark-soft);
  margin-bottom: 40px;
  padding-right: 16px;
  border-right: 3px solid var(--gold);
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.highlight-card {
  padding: 20px;
  background: rgba(250, 245, 235, 0.07) !important;
  border: 1px solid rgba(201, 169, 110, 0.12) !important;
}
.highlight-card .icon {
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 12px;
}
.highlight-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--foreground);
}
.highlight-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}
/* ===== MUSIC SECTION (Landing Page) ===== */
.music-section {
  padding: 96px 0;
  background: url('ירוק פסטל.avif') center/cover no-repeat;
  color: var(--foreground-dark);
}
.music-section-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.music-section-subtitle {
  text-align: center;
  color: var(--text-dark-soft);
  font-size: 18px;
  margin-top: 16px;
}

/* ===== MUSIC PAGE ===== */
.music-page {
  padding: 140px 0 96px;
  background: url('ירוק פסטל.avif') center/cover no-repeat;
  min-height: 100vh;
}
.music-page-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.active-link {
  color: var(--brown-dark) !important;
  font-weight: 600;
}

/* ===== MUSIC BOXES ===== */
.music-boxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.music-box {
  display: grid;
  grid-template-columns: 1fr 48px;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 14px;
  padding: 18px 24px;
  border: 2px solid rgba(0, 0, 0, 0.7);
  border-radius: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(31, 22, 12, 0.45);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.music-box.visible {
  opacity: 1;
  transform: translateY(0);
}
.music-box:nth-child(1) { transition-delay: 0s; }
.music-box:nth-child(2) { transition-delay: 0.1s; }
.music-box:nth-child(3) { transition-delay: 0.2s; }
.music-box:nth-child(4) { transition-delay: 0.3s; }
.music-box:nth-child(5) { transition-delay: 0.4s; }
.music-box:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  border-color: #c9a96e;
}
.music-box.playing {
  border-color: #c9a96e;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}
.music-box-info {
  grid-row: 1;
  grid-column: 1;
}
.music-box-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--foreground-dark);
  margin-bottom: 0;
}
.music-box-controls {
  grid-row: 1;
  grid-column: 2;
}
.music-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(58, 41, 18, 0.25);
  background: transparent;
  color: var(--text-dark);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.music-play-btn:hover {
  background: #d6a23a;
  color: #2a1c0c;
  border-color: #d6a23a;
}
.music-box.playing .music-play-btn {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(214, 162, 58, 0.4); }
  50% { box-shadow: 0 0 20px rgba(214, 162, 58, 0.6); }
}
.music-progress {
  grid-row: 2;
  grid-column: 1 / -1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin-top: 12px;
  overflow: hidden;
  cursor: pointer;
}
.music-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #d6a23a, #f7c948);
  border-radius: 4px;
  transition: width 0.1s linear;
}


/* ===== WORKS ===== */
.works {
  padding: 96px 0;
  background: linear-gradient(135deg, #f6edff 0%, #e0cbff 45%, #f0dcff 100%);
  color: #2c2218;
}
.works .section-title h2 { color: #2c2218; }
.works .section-title .line { background: linear-gradient(90deg, #c4872c, #f7c948, #c4872c); }
.works .carousel {
  background: rgba(255, 248, 232, 0.78);
  border-radius: 48px;
  padding: 28px 32px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.works .carousel-btn {
  border-color: rgba(44, 26, 9, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: #7c4b1a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.works .album-card-body h3 { color: #3a220c; }
.works .album-card-body p { color: #6c4b20; }
.works .album-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(214, 162, 58, 0.35);
  border-radius: 28px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.works .album-card:hover {
  border-color: rgba(214, 162, 58, 0.8);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}
.works-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.section-title .line {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #be8530, #f7c948, #be8530);
  margin: 16px auto 0;
  border-radius: 999px;
}

.section-transition {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-transition::before,
.section-transition::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 220px;
  pointer-events: none;
  z-index: 1;
}
.section-transition::before {
  top: -1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  filter: blur(24px);
}
.section-transition::after {
  bottom: -1px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0));
  filter: blur(24px);
}
/* Carousel */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  border-radius: 1rem;
}
.carousel-track {
  display: flex;
  gap: 20px;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.carousel-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  background: rgba(250, 245, 235, 0.06);
  color: var(--brown);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--brown);
  color: var(--cream-dark);
  border-color: var(--brown);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.3);
}

/* Album Cards */
.album-card {
  flex-shrink: 0;
  width: calc((100% - 60px) / 4);
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(250, 245, 235, 0.07);
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.album-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(201, 169, 110, 0.35);
}
.album-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.album-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.album-card:hover .album-card-image img {
  transform: scale(1.08);
}
.album-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.album-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--foreground-light);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.album-card-body p {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-bottom: 0;
}
.album-card-links {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}
.album-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.album-link-sp {
  background: rgba(30, 215, 96, 0.12);
  color: #1db954;
  border: 1px solid rgba(30, 215, 96, 0.22);
}
.album-link-sp:hover {
  background: #1db954;
  color: #000;
  border-color: #1db954;
  transform: scale(1.1);
}
.album-link-yt {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  border: 1px solid rgba(255, 0, 0, 0.18);
}
.album-link-yt:hover {
  background: #ff0000;
  color: #fff;
  border-color: #ff0000;
  transform: scale(1.1);
}

@media (max-width: 1024px) {
  .album-card {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 768px) {
  .album-card {
    width: calc(100% - 10px);
  }
  .album-card-image {
    aspect-ratio: 16/9;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

/* ===== ARTICLES ===== */
.articles {
  padding: 96px 0;
  background: linear-gradient(135deg, #fff4d6 0%, #fde9bb 50%, #fffaf0 100%);
  color: var(--foreground-dark);
}
.articles-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.articles .section-title h2 {
  color: var(--foreground-dark);
}
.articles .section-title .line {
  background: linear-gradient(90deg, var(--brown-dark), var(--gold), var(--brown-dark));
}

/* Press / newspaper layout */
.press-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.press-card {
  display: block;
  color: inherit;
  border-radius: 18px;
  border: 1px solid rgba(44, 26, 9, 0.18);
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    repeating-linear-gradient(
      90deg,
      rgba(44, 26, 9, 0.03) 0px,
      rgba(44, 26, 9, 0.03) 1px,
      rgba(44, 26, 9, 0) 14px,
      rgba(44, 26, 9, 0) 22px
    );
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  padding: 22px 22px 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  z-index: 2;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
}

.press-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(247, 201, 72, 0.18), rgba(214, 162, 58, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.press-card-kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(44, 26, 9, 0.7);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(44, 26, 9, 0.16);
}

.press-card-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  background:
    linear-gradient(0deg, rgba(44, 26, 9, 0.06), rgba(44, 26, 9, 0.06)),
    repeating-linear-gradient(
      0deg,
      rgba(44, 26, 9, 0.06) 0px,
      rgba(44, 26, 9, 0.06) 1px,
      rgba(44, 26, 9, 0) 10px,
      rgba(44, 26, 9, 0) 16px
    );
  border: 1px solid rgba(44, 26, 9, 0.14);
  background-size: cover;
  background-position: center;
}

.press-card-content {
  position: relative;
  z-index: 1;
}

.press-card-title {
  position: relative;
  z-index: 1;
  font-family: 'Frank Ruhl Libre', Georgia, serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  color: #2c1a09;
  margin-bottom: 12px;
}

.press-card-deck {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: rgba(44, 26, 9, 0.75);
  margin-bottom: 0;
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 162, 58, 0.55);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.18);
}

.press-card:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .press-card {
    grid-template-columns: 96px 1fr;
  }
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 96px 0;
  background: linear-gradient(135deg, #e8fff4 0%, #c9f7e3 45%, #f3fffb 100%);
  color: var(--foreground-dark);
}
.reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.reviews .section-title h2 {
  color: var(--foreground-dark);
}
.reviews .section-title .line {
  background: linear-gradient(90deg, var(--brown-dark), var(--gold), var(--brown-dark));
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
.review-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.review-img:hover {
  transform: scale(1.02);
}

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

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

/* ===== CONTACT ===== */
.contact {
  padding: 96px 0;
  background: url('פסטלים צבעים.avif') center/cover no-repeat;
  color: #1e1340;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact .section-title h2 {
  color: var(--foreground-dark);
}
.contact .section-title .line {
  background: linear-gradient(90deg, var(--brown-dark), var(--gold), var(--brown-dark));
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 22px;
  border-radius: 1rem;
  border: 1px solid rgba(214, 162, 58, 0.35);
  background: #ffffff;
  color: var(--foreground-dark);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.3s;
  outline: none;
  direction: rtl;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-dark-soft);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d6a23a;
  box-shadow: 0 0 0 3px rgba(214, 162, 58, 0.2);
}
.contact-form textarea {
  resize: none;
}
.contact-submit {
  text-align: center;
  padding-top: 8px;
}
.contact-submit button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-quick-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-chip svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.contact-chip-wa {
  background: #25D366;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}
.contact-chip-mail {
  background: #EA4335;
  box-shadow: 0 12px 24px rgba(234, 67, 53, 0.35);
}
.contact-chip-phone {
  background: #0EA5E9;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.35);
}
.contact-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

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

/* ===== FOOTER ===== */
.footer {
  background: #ffd9c2;
  color: #3a1f0c;
  border-top: 1px solid rgba(58, 31, 12, 0.12);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.footer-brand {
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(58, 31, 12, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.footer-brand h3 {
  font-size: 22px;
  font-weight: 900;
  color: #2c1a09;
  margin-bottom: 8px;
}
.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: #2c1a09;
  transition: color 0.3s;
}
.footer-brand a:hover {
  color: var(--brown);
}
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  margin-top: 32px;
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-light-muted);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== MUSICAL NOTES ON SIDES ===== */
.notes-side {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.notes-side-left {
  left: 0;
}

.notes-side-right {
  right: 0;
}

.notes-side .note {
  position: absolute;
  font-size: 28px;
  opacity: 0;
  user-select: none;
  animation: floatNote linear infinite;
  color: #7a4a0a;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/* צד שמאל - צד התמונה - צבע בהיר שיראו על רקע כהה */
.notes-side-left .note {
  color: #f5dba5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

@keyframes floatNote {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg) scale(0.8);
  }
  6% {
    opacity: 0.65;
  }
  50% {
    opacity: 0.5;
  }
  94% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) rotate(360deg) scale(1.1);
  }
}

@media (max-width: 1024px) {
  .notes-side {
    width: 80px;
  }
  .notes-side .note {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .notes-side {
    width: 50px;
  }
  .notes-side .note {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .notes-side {
    width: 36px;
  }
  .notes-side .note {
    font-size: 16px;
  }
}
