:root {
  --charcoal: #0d1114;
  --deep-charcoal: #090b0d;
  --soft-cream: #f4f1eb;
  --muted-grey: #b8b6b1;
  --warm-wood: #b98a5b;
  --soft-gold: #d8b98a;
  --olive-green: #6b7a5a;
  --deep-olive: #3f4a35;
  --flower-blue: #394a7a;
  --line: rgba(244, 241, 235, 0.12);
  --line-strong: rgba(244, 241, 235, 0.26);
  --glass: rgba(255, 255, 255, 0.045);
  --container-max: 1560px;
  --container-gutter: clamp(48px, 4vw, 80px);
  --container: min(calc(100% - var(--container-gutter)), var(--container-max));
  --header-height: 84px;
  --font-display: "Cormorant Garamond", "Bodoni 72", "Didot", Georgia, serif;
  --font-body: Inter, Manrope, Poppins, "Helvetica Neue", Arial, sans-serif;
  --font-hebrew: Heebo, Assistant, "IBM Plex Sans Hebrew", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--deep-charcoal);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--deep-charcoal);
  color: var(--soft-cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--soft-gold);
  outline-offset: 4px;
}

::selection {
  background: var(--soft-gold);
  color: var(--deep-charcoal);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

main,
.hero,
.quick-access,
.newsletter-section,
.page-hero,
.content-section,
.cta-band,
.site-footer {
  width: 100%;
}

.elementor .hero,
.elementor .quick-access,
.elementor .newsletter-section,
.elementor .page-hero,
.elementor .content-section,
.elementor .cta-band,
.elementor .site-footer {
  width: 100vw;
  margin-inline-start: calc(50% - 50vw);
  margin-inline-end: calc(50% - 50vw);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  transform: translateY(-160%);
  background: var(--soft-cream);
  color: var(--deep-charcoal);
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 200;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-height);
  color: var(--soft-cream);
  transition: background 280ms var(--ease), border-color 280ms var(--ease), backdrop-filter 280ms var(--ease);
}

.inner-page .site-header,
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(9, 11, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 2.8vw, 40px);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: auto;
  height: 34px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  font-family: Manrope, Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.22rem, 1.45vw, 1.62rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand .custom-logo {
  width: auto;
  max-height: 48px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 26px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link,
.footer-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(244, 241, 235, 0.88);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-link::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: 5px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--soft-gold);
  transition: transform 240ms var(--ease);
}

.nav-link:hover::after,
.nav-link.is-active::after,
.footer-nav a:hover::after,
.footer-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-switch,
.footer-language {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 241, 235, 0.66);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-button,
.footer-language button,
.footer-language a {
  min-height: 42px;
  padding: 0;
  background: transparent;
  color: rgba(244, 241, 235, 0.68);
}

.language-button:hover,
.language-button.is-active,
.footer-language button:hover,
.footer-language button[aria-pressed="true"],
.footer-language a:hover,
.footer-language a.is-active {
  color: var(--soft-cream);
}

.social-strip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-strip a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 235, 0.18);
  color: rgba(244, 241, 235, 0.82);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.social-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 185, 138, 0.58);
  color: var(--soft-gold);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  background: transparent;
  color: var(--soft-cream);
}

.menu-toggle span {
  grid-area: 1 / 1;
  width: 27px;
  height: 1px;
  background: currentColor;
  transition: transform 260ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(42deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-42deg);
}

.mobile-menu {
  position: fixed;
  z-index: 150;
  inset: 0;
  pointer-events: none;
  background: rgba(9, 11, 13, 0.97);
  color: var(--soft-cream);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  width: var(--container);
  min-height: 100%;
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 40px) 40px;
  display: grid;
  align-content: space-between;
  gap: 48px;
}

.mobile-menu nav {
  display: grid;
  gap: clamp(16px, 5vw, 30px);
}

.mobile-menu nav a {
  font-family: Manrope, Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 13vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-menu-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block-start: 28px;
}

.mobile-menu-meta p {
  max-width: 460px;
  margin: 0;
  color: rgba(244, 241, 235, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding-block-start: var(--header-height);
  background: var(--deep-charcoal);
}

.hero-media,
.hero-photo,
.hero-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-photo {
  opacity: 0;
  background-image: url("../images/david-hero.jpg");
  background-position: center;
  background-size: cover;
  filter: contrast(1.05) saturate(1.04) brightness(0.9);
  transform: scale(1.02);
  transition: opacity 520ms var(--ease), transform 900ms var(--ease);
}

body.has-hero-photo .hero-photo {
  opacity: 1;
  transform: scale(1);
}

.hero-fallback {
  display: grid;
  place-items: center end;
  padding-inline: max(calc(var(--container-gutter) / 2), calc((100vw - var(--container-max)) / 2));
  background:
    radial-gradient(circle at 72% 38%, rgba(57, 74, 122, 0.42), transparent 26%),
    radial-gradient(circle at 72% 66%, rgba(107, 122, 90, 0.34), transparent 30%),
    linear-gradient(112deg, rgba(9, 11, 13, 0.96) 0%, rgba(13, 17, 20, 0.78) 47%, rgba(63, 74, 53, 0.72) 100%);
}

.hero-fallback img {
  width: min(42vw, 560px);
  opacity: 0.46;
}

body.has-hero-photo .hero-fallback {
  opacity: 0;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.78) 0%, rgba(8, 10, 12, 0.48) 42%, rgba(8, 10, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 11, 13, 0.84) 0%, transparent 30%, rgba(9, 11, 13, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(220px, 0.32fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding-block: clamp(88px, 11vh, 148px);
}

.hero-content {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--soft-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.7rem, 6.45vw, 6rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-identity {
  margin: 28px 0 0;
  color: var(--soft-cream);
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(244, 241, 235, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-meta {
  justify-self: end;
  align-self: end;
  width: min(100%, 320px);
  display: grid;
  gap: 12px;
  padding-block-end: 34px;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 241, 235, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta span::before {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(244, 241, 235, 0.14);
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  inset-inline-start: 50%;
  inset-block-end: 28px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(244, 241, 235, 0.58);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-indicator i {
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(244, 241, 235, 0.2);
}

.scroll-indicator i::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background: var(--soft-gold);
  animation: scrollPulse 1.7s var(--ease) infinite;
}

@keyframes scrollPulse {
  0% { transform: translateY(-16px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(36px); opacity: 0; }
}

.quick-access {
  position: relative;
  z-index: 5;
  margin-block-start: -104px;
  padding-block-end: clamp(78px, 9vw, 128px);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.quick-card {
  position: relative;
  min-height: 240px;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft-cream);
  backdrop-filter: blur(14px);
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease);
}

.quick-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 185, 138, 0.38);
  background: rgba(185, 138, 91, 0.16);
}

.quick-card.is-featured {
  background: rgba(9, 11, 13, 0.78);
  border-color: rgba(216, 185, 138, 0.28);
}

.quick-card svg {
  width: 74px;
  height: 74px;
  color: var(--soft-cream);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-content {
  display: grid;
  gap: 10px;
}

.card-content strong {
  font-size: clamp(1.12rem, 1.4vw, 1.34rem);
  line-height: 1.1;
}

.card-content small {
  max-width: 260px;
  color: rgba(244, 241, 235, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.card-arrow {
  position: absolute;
  inset-inline-end: 24px;
  inset-block-end: 22px;
  color: rgba(244, 241, 235, 0.48);
  font-size: 1.2rem;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.quick-card:hover .card-arrow {
  color: var(--soft-gold);
  transform: translate(3px, -3px);
}

.button,
.shop-button,
.submit-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.button:hover,
.shop-button:hover,
.submit-button:hover {
  transform: translateY(-3px);
}

.button-primary,
.submit-button {
  background: var(--soft-cream);
  color: var(--charcoal);
}

.button-primary:hover,
.submit-button:hover {
  background: var(--soft-gold);
}

.button-secondary {
  border: 1px solid rgba(244, 241, 235, 0.35);
  background: transparent;
  color: var(--soft-cream);
}

.button-secondary:hover {
  border-color: rgba(216, 185, 138, 0.78);
  background: rgba(216, 185, 138, 0.12);
}

.newsletter-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 138, 91, 0.14), transparent 34%),
    var(--deep-charcoal);
  color: var(--soft-cream);
  padding-block: clamp(90px, 12vw, 156px);
}

.newsletter-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.newsletter-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.newsletter-inner p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(244, 241, 235, 0.7);
}

.newsletter-form {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-block-start: 42px;
  border: 1px solid rgba(244, 241, 235, 0.36);
}

.newsletter-form input {
  min-width: 0;
  min-height: 62px;
  border: 0;
  background: transparent;
  color: var(--soft-cream);
  padding: 0 28px;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: rgba(244, 241, 235, 0.62);
}

.newsletter-form button {
  min-height: 62px;
  min-width: 196px;
  padding: 0 34px;
  background: var(--soft-cream);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 150px 70px;
  background:
    radial-gradient(circle at 70% 0%, rgba(57, 74, 122, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(13, 17, 20, 0.92), rgba(9, 11, 13, 1));
  text-align: center;
}

.image-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: url("../images/david-hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.ghost-word {
  position: absolute;
  inset-block-start: 8px;
  inset-inline: 0;
  color: rgba(244, 241, 235, 0.035);
  font-family: var(--font-body);
  font-size: clamp(5rem, 14vw, 15rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.8;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.2vw, 4.9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-intro {
  width: min(760px, 100%);
  margin: 22px auto 0;
  color: rgba(244, 241, 235, 0.72);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.page-hero .button {
  margin-block-start: 30px;
}

.content-section {
  padding-block: clamp(80px, 10vw, 136px);
  background: var(--deep-charcoal);
}

.section-muted {
  background:
    radial-gradient(circle at 20% 10%, rgba(107, 122, 90, 0.12), transparent 30%),
    var(--charcoal);
}

.section-title {
  max-width: 900px;
  margin: 0 0 clamp(32px, 5vw, 58px);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 4.25rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.centered-title {
  margin-inline: auto;
  text-align: center;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  margin-block-end: clamp(32px, 5vw, 58px);
}

.section-heading-row .section-title {
  margin: 0;
}

.section-heading-row p {
  margin: 0;
  color: rgba(244, 241, 235, 0.68);
}

.centered-block {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.narrow-media {
  width: var(--container);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.release-grid-compact {
  width: 100%;
  margin-inline: auto;
}

.release-card {
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(230px, 0.88fr) auto;
  overflow: hidden;
  border: 1px solid rgba(216, 185, 138, 0.18);
  background: linear-gradient(145deg, rgba(185, 138, 91, 0.18), rgba(13, 17, 20, 0.62)), var(--charcoal);
}

.release-card-blue {
  border-color: rgba(57, 74, 122, 0.36);
  background: linear-gradient(145deg, rgba(57, 74, 122, 0.28), rgba(63, 74, 53, 0.2)), var(--charcoal);
}

.release-art {
  display: grid;
  place-items: center;
  min-height: 260px;
  background:
    radial-gradient(circle at 50% 46%, rgba(216, 185, 138, 0.18), transparent 30%),
    repeating-linear-gradient(90deg, rgba(244, 241, 235, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, rgba(107, 122, 90, 0.28), rgba(13, 17, 20, 0.4));
}

.release-art img {
  width: min(42%, 230px);
  opacity: 0.62;
  transition: transform 600ms var(--ease);
}

.release-art .cover-art,
.resource-art .cover-art {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 1;
}

.localized-cover-he {
  display: none;
}

html[dir="rtl"] .localized-cover-en {
  display: none;
}

html[dir="rtl"] .localized-cover-he {
  display: block;
}

.release-card:hover .release-art img {
  transform: scale(1.05);
}

.release-content {
  padding: clamp(28px, 4vw, 44px);
}

.release-kicker {
  margin: 0 0 14px;
  color: var(--soft-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.release-content p:not(.release-kicker) {
  max-width: 620px;
  margin: 18px 0 26px;
  color: rgba(244, 241, 235, 0.7);
}

body[data-page="music"] .page-title {
  font-size: clamp(2.3rem, 4.8vw, 4.5rem);
}

body[data-page="music"] .release-card {
  min-height: 490px;
}

body[data-page="music"] .release-content h3 {
  font-size: clamp(1.7rem, 2.75vw, 2.85rem);
}

html[dir="rtl"] body[data-page="music"] .release-content h3 {
  font-family: var(--font-hebrew);
  letter-spacing: 0;
}

.video-grid,
.artists-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.artists-video-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.artists-video-grid .video-card {
  grid-column: span 2;
}

.artists-video-grid .video-featured {
  grid-column: span 3;
}

.artists-experience-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.artists-experience-copy p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding-block-start: 18px;
  color: rgba(244, 241, 235, 0.72);
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--deep-charcoal);
  border: 1px solid rgba(244, 241, 235, 0.12);
  transition: transform 240ms var(--ease), border-color 240ms var(--ease);
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 185, 138, 0.4);
}

.video-card iframe,
.video-card video,
.spotify-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card video {
  object-fit: cover;
  background: #000;
}

.external-video-card {
  padding: clamp(24px, 4vw, 40px);
  align-content: center;
  justify-items: start;
  background:
    radial-gradient(circle at 82% 16%, rgba(57, 74, 122, 0.32), transparent 26%),
    linear-gradient(145deg, rgba(185, 138, 91, 0.2), rgba(9, 11, 13, 0.9));
}

.external-video-card span {
  color: var(--soft-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.external-video-card strong {
  margin-block-start: 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.meta-video-card {
  background: var(--deep-charcoal);
}

.instagram-embed-card {
  aspect-ratio: 4 / 5;
}

.embed-fallback-link {
  position: absolute;
  inset-block-end: 14px;
  inset-inline-end: 14px;
  padding: 10px 12px;
  background: rgba(9, 11, 13, 0.82);
  color: var(--soft-cream);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 241, 235, 0.16);
}

.embed-fallback-link:hover {
  border-color: rgba(216, 185, 138, 0.45);
  color: var(--soft-gold);
}

.spotify-card {
  width: 100%;
  min-height: 460px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.spotify-card iframe {
  min-height: 440px;
  border-radius: 0;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  padding-block: 10px 42px;
}

.category-tabs a {
  position: relative;
  color: rgba(244, 241, 235, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 700;
}

.category-tabs a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -6px;
  height: 2px;
  transform: scaleX(0);
  background: var(--soft-gold);
  transition: transform 220ms var(--ease);
}

.category-tabs a:hover,
.category-tabs a.is-active {
  color: var(--soft-cream);
}

.category-tabs a:hover::after,
.category-tabs a.is-active::after {
  transform: scaleX(1);
}

.resource-section .section-title {
  margin-inline: auto;
  text-align: center;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
}

.resource-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.resource-art {
  width: 68%;
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 241, 235, 0.1);
  background:
    radial-gradient(circle at 72% 24%, rgba(216, 185, 138, 0.2), transparent 28%),
    radial-gradient(circle at 26% 70%, rgba(57, 74, 122, 0.24), transparent 30%),
    linear-gradient(145deg, rgba(63, 74, 53, 0.78), rgba(9, 11, 13, 0.92));
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.resource-art.has-thumbnail {
  aspect-ratio: 4 / 3;
}

.resource-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-thumbnail-fallback {
  display: none;
}

.resource-art.is-missing-thumbnail .resource-thumbnail {
  display: none;
}

.resource-art.is-missing-thumbnail .resource-thumbnail-fallback {
  display: block;
}

.resource-art svg {
  width: 42%;
  fill: none;
  stroke: var(--soft-cream);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.resource-card:nth-child(3n) .resource-art {
  background:
    radial-gradient(circle at 20% 20%, rgba(185, 138, 91, 0.26), transparent 30%),
    linear-gradient(145deg, rgba(57, 74, 122, 0.5), rgba(9, 11, 13, 0.92));
}

.resource-card:hover .resource-art {
  transform: translateY(-5px);
  border-color: rgba(216, 185, 138, 0.42);
}

.resource-art span {
  color: rgba(244, 241, 235, 0.84);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.resource-card h3 {
  min-height: 2.6em;
  margin: 0;
  color: var(--soft-cream);
  font-size: 1rem;
  line-height: 1.3;
}

.resource-card p {
  margin: 0;
  color: rgba(244, 241, 235, 0.66);
  font-size: 0.92rem;
  line-height: 1.6;
}

.resource-link {
  color: var(--soft-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.resource-card p .resource-link + .resource-link {
  margin-inline-start: 12px;
}

.shop-button {
  width: 100%;
  border-radius: 0;
  margin-block-start: 10px;
  background: var(--soft-cream);
  color: var(--charcoal);
  min-height: 54px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 16%, rgba(57, 74, 122, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.035);
}

.feature-card-wide {
  grid-column: 1 / -1;
}

.feature-card span {
  color: var(--soft-gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-card h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

html[dir="rtl"] .feature-card h2 {
  font-family: var(--font-hebrew);
}

.feature-card p {
  max-width: 700px;
  margin: 0;
  color: rgba(244, 241, 235, 0.68);
}

.feature-card .button {
  width: max-content;
}

body[data-page="studio"] .content-section {
  padding-block: clamp(44px, 5vw, 74px);
}

body[data-page="tabs"] .content-section {
  padding-block: clamp(58px, 7vw, 98px);
}

.studio-reliable-card {
  min-height: min(54vw, 580px);
  align-content: end;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--deep-charcoal);
  background-image:
    linear-gradient(90deg, rgba(9, 11, 13, 0.92) 0%, rgba(9, 11, 13, 0.72) 48%, rgba(9, 11, 13, 0.32) 100%),
    url("../images/studio-session.jpg");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 92%;
}

.studio-reliable-card p {
  color: rgba(244, 241, 235, 0.86);
}

.media-strip {
  width: 100%;
  max-height: min(52vw, 620px);
  overflow: hidden;
  background: var(--deep-charcoal);
}

.media-strip img {
  width: 100%;
  height: min(52vw, 620px);
  object-fit: cover;
  object-position: center;
}

.media-gallery-grid,
.artists-collage-grid {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
}

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

.artists-collage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-gallery-item,
.artists-collage-item {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 235, 0.1);
  background: var(--deep-charcoal);
}

.media-gallery-item {
  aspect-ratio: 16 / 10;
}

.artists-collage-item {
  aspect-ratio: 4 / 3;
}

.media-gallery-item img,
.artists-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.9);
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.media-gallery-item:nth-child(2) img {
  object-fit: contain;
}

.lessons-feature-section {
  background:
    linear-gradient(rgba(9, 11, 13, 0.7), rgba(9, 11, 13, 0.84)),
    url("../images/lessons-teaching.jpg") center / cover;
}

body[data-page="lessons"] .page-hero {
  background:
    linear-gradient(rgba(9, 11, 13, 0.72), rgba(9, 11, 13, 0.78)),
    url("../images/lessons-background.jpg") center 38% / cover;
}

body[data-page="lessons"] .lessons-intro-section {
  background:
    linear-gradient(rgba(9, 11, 13, 0.72), rgba(9, 11, 13, 0.84)),
    url("../images/lessons-background.jpg") center 68% / cover;
}

body[data-page="artists"] .artists-experience-section {
  padding-block-end: clamp(34px, 4vw, 58px);
}

body[data-page="artists"] .artists-experience-section + .content-section {
  padding-block-start: clamp(30px, 4vw, 58px);
}

@media (min-width: 1061px) {
  .artists-video-grid .artists-tile-left-top {
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  .artists-video-grid .artists-tile-left-bottom {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .artists-video-grid .artists-tile-instagram {
    grid-column: 3 / span 2;
    grid-row: 2 / span 2;
    height: 100%;
    aspect-ratio: auto;
  }

  .artists-video-grid .artists-tile-right-top {
    grid-column: 5 / span 2;
    grid-row: 2;
  }

  .artists-video-grid .artists-tile-right-bottom {
    grid-column: 5 / span 2;
    grid-row: 3;
  }
}

.media-gallery-item:hover img,
.artists-collage-item:hover img {
  transform: scale(1.035);
  filter: contrast(1.05) saturate(1);
}

.artists-collage-item:last-child img {
  object-position: right center;
}

.mini-list {
  margin: 0;
  padding-inline-start: 18px;
  color: rgba(244, 241, 235, 0.68);
}

.mini-list li + li {
  margin-block-start: 8px;
}

.empty-state {
  min-height: 430px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: clamp(42px, 7vw, 88px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 138, 91, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.035);
}

.empty-date {
  color: var(--soft-gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.empty-state h2 {
  max-width: 780px;
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
}

.empty-state p {
  max-width: 660px;
  color: rgba(244, 241, 235, 0.68);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.about-image-frame {
  overflow: hidden;
  border: 1px solid var(--line);
}

.about-image-frame img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(1.04) brightness(0.9);
}

.about-story-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5.1vw, 5.1rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-credentials .section-title {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.about-story-copy h2 span {
  display: block;
}

.about-story-copy p {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(244, 241, 235, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.identity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 32px;
}

.identity-list span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  color: rgba(244, 241, 235, 0.76);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.credential-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  border-top: 1px solid var(--line);
  padding-block-start: 18px;
  color: rgba(244, 241, 235, 0.72);
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 94px);
  align-items: start;
}

.contact-info h2,
.contact-form-panel h2 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.not-found-page {
  min-height: 100vh;
}

.contact-lines {
  border-top: 1px solid var(--line);
}

.contact-lines p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-lines strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-lines a {
  color: var(--soft-gold);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 241, 235, 0.5);
  background: transparent;
  color: var(--soft-cream);
  padding: 20px;
  outline: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(244, 241, 235, 0.74);
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(244, 241, 235, 0.72);
  font-size: 0.86rem;
}

.checkbox-line input {
  width: 20px;
  height: 20px;
  accent-color: var(--soft-gold);
}

.submit-button {
  width: min(100%, 260px);
  border-radius: 0;
  background: var(--soft-gold);
}

button[disabled] {
  cursor: progress;
  opacity: 0.68;
}

.form-message {
  min-height: 1.7em;
  margin: 0;
  color: var(--soft-gold);
}

.cta-band {
  border-top: 1px solid var(--line);
  background: var(--charcoal);
  padding-block: 42px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  margin: 0;
  color: rgba(244, 241, 235, 0.72);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid rgba(244, 241, 235, 0.1);
  background: var(--deep-charcoal);
  color: var(--soft-cream);
  padding-block: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.4fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: 28px;
}

.footer-brand p {
  margin: 0;
}

.footer-logo {
  display: inline-flex;
  margin-block-end: 14px;
}

.footer-logo img {
  width: auto;
  height: 46px;
  object-fit: contain;
}

.footer-brand p:first-child {
  font-weight: 800;
}

.footer-brand p + p {
  margin-block-start: 8px;
  color: rgba(244, 241, 235, 0.58);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 16px;
}

.footer-social a,
.footer-language button,
.footer-language a {
  color: rgba(244, 241, 235, 0.7);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social a:hover {
  color: var(--soft-gold);
}

.footer-language {
  width: 100%;
  justify-content: flex-end;
  margin-block-start: 8px;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.elementor-editor-active [data-reveal],
body.elementor-editor-preview [data-reveal],
.elementor-editor-active [data-reveal],
.elementor-editor-preview [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

html[dir="rtl"] body {
  font-family: var(--font-hebrew);
}

html[dir="rtl"] .brand-name,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .page-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .about-story-copy h2,
html[dir="rtl"] .contact-info h2,
html[dir="rtl"] .contact-form-panel h2,
html[dir="rtl"] .mobile-menu nav a {
  font-family: var(--font-hebrew);
  letter-spacing: 0;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .desktop-nav ul,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .mobile-menu-meta,
html[dir="rtl"] .footer-nav,
html[dir="rtl"] .footer-social,
html[dir="rtl"] .cta-band-inner {
  direction: rtl;
}

html[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(8, 10, 12, 0.78) 0%, rgba(8, 10, 12, 0.48) 42%, rgba(8, 10, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 11, 13, 0.84) 0%, transparent 30%, rgba(9, 11, 13, 0.12) 100%);
}

html[dir="rtl"] .studio-reliable-card {
  background-image:
    linear-gradient(270deg, rgba(9, 11, 13, 0.92) 0%, rgba(9, 11, 13, 0.72) 48%, rgba(9, 11, 13, 0.32) 100%),
    url("../images/studio-session.jpg");
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 92%;
}

html[dir="rtl"] .hero-meta {
  justify-self: start;
}

html[dir="rtl"] .hero-meta span::before {
  order: 2;
}

html[dir="rtl"] .external-video-card,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .contact-form-panel,
html[dir="rtl"] .resource-card {
  text-align: right;
}

html[dir="rtl"] .footer-language {
  justify-content: flex-start;
}

@media (max-width: 1240px) {
  .social-strip {
    display: none;
  }

  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    width: 100%;
    max-width: 640px;
    justify-self: start;
    grid-template-columns: repeat(5, auto);
    align-self: start;
    padding-block-end: 0;
  }

  .hero-meta span {
    display: block;
    font-size: 0.66rem;
  }

  .hero-meta span::before {
    display: none;
  }

  .quick-grid,
  .release-grid,
  .video-grid,
  .feature-grid,
  .about-story-grid,
  .contact-grid,
  .footer-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .artists-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artists-video-grid .video-card,
  .artists-video-grid .video-featured {
    grid-column: span 1;
    grid-row: auto;
  }

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

  .media-gallery-grid,
  .artists-collage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .footer-nav,
  .footer-social {
    justify-items: start;
    justify-content: flex-start;
  }

  .footer-language {
    justify-content: flex-start;
  }
}

@media (min-width: 761px) and (max-width: 1024px) {
  .hero-inner {
    min-height: calc(100vh - var(--header-height));
    padding-block: clamp(82px, 9vh, 120px);
  }

  .quick-grid,
  .release-grid,
  .video-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-card {
    min-height: 230px;
  }

  .release-card {
    min-height: 500px;
  }

  .section-heading-row,
  .about-story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container-gutter: 32px;
    --container: min(calc(100% - var(--container-gutter)), var(--container-max));
    --header-height: 76px;
  }

  body {
    font-size: 17px;
  }

  .brand-name {
    font-size: 1.08rem;
    letter-spacing: 0.11em;
  }

  .site-brand-text {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .mobile-menu {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-inner {
    min-height: 100svh;
    padding-block: calc(var(--header-height) + 28px) 32px;
    gap: 32px;
  }

  .mobile-menu nav {
    gap: clamp(12px, 4vh, 20px);
  }

  .mobile-menu nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: clamp(2.05rem, 10vw, 3.6rem);
    line-height: 0.95;
  }

  .mobile-menu-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .mobile-menu-meta p {
    max-width: none;
    font-size: 0.76rem;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero-photo {
    background-position: 58% center;
  }

  .hero-inner {
    min-height: calc(100svh - var(--header-height));
    align-items: end;
    padding-block: 92px 116px;
  }

  .hero-content {
    max-width: min(100%, 620px);
  }

  .hero-title {
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.9;
  }

  .hero-identity {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .hero-meta {
    display: none;
  }

  .quick-access {
    margin-block-start: -58px;
    padding-block-end: 72px;
  }

  .quick-grid {
    gap: 14px;
  }

  .quick-card {
    min-height: 220px;
    aspect-ratio: auto;
  }

  .category-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tabs a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .page-hero {
    padding-block: 126px 54px;
  }

  .content-section {
    padding-block: 72px;
  }

  .page-title,
  .section-title,
  .newsletter-inner h2,
  .about-story-copy h2,
  .empty-state h2 {
    overflow-wrap: anywhere;
  }

  .page-title {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .section-title {
    font-size: clamp(2rem, 10.5vw, 3.15rem);
  }

  .page-intro,
  .section-heading-row p,
  .feature-card p,
  .release-content p:not(.release-kicker),
  .contact-lines a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button,
  .shop-button,
  .submit-button {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  .newsletter-form,
  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    border: 0;
    gap: 12px;
  }

  .newsletter-form input,
  .newsletter-form button {
    border: 1px solid rgba(244, 241, 235, 0.36);
  }

  .newsletter-form button {
    min-width: 0;
    width: 100%;
  }

  .release-card {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .release-art {
    min-height: 220px;
  }

  .release-art img {
    width: min(38%, 180px);
  }

  .video-card,
  .external-video-card,
  .spotify-card {
    width: 100%;
  }

  .spotify-card {
    min-height: 420px;
    padding: 8px;
  }

  .spotify-card iframe {
    min-height: 400px;
  }

  .resource-grid,
  .artists-video-grid,
  .artists-experience-copy,
  .credential-list {
    grid-template-columns: 1fr;
  }

  .media-gallery-grid,
  .artists-collage-grid {
    grid-template-columns: 1fr;
  }

  .media-strip,
  .media-strip img {
    height: 58vw;
    max-height: 420px;
  }

  .resource-card p {
    font-size: 1rem;
  }

  .resource-card h3 {
    min-height: auto;
  }

  .about-image-frame img {
    min-height: 420px;
  }

  .cta-band-inner {
    display: grid;
  }
}

@media (max-width: 520px) {
  :root {
    --container-gutter: 28px;
    --container: min(calc(100% - var(--container-gutter)), var(--container-max));
  }

  .header-actions > .language-switch {
    display: inline-flex;
    gap: 6px;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .header-actions {
    gap: 6px;
  }

  .language-button {
    min-height: 44px;
  }

  .mobile-menu-inner {
    padding-block: calc(var(--header-height) + 22px) 28px;
  }

  .mobile-menu nav {
    gap: 12px;
  }

  .mobile-menu nav a {
    font-size: clamp(1.75rem, 11vw, 2.7rem);
  }

  .mobile-menu-meta p {
    font-size: 0.8rem;
  }

  .hero-fallback {
    place-items: end center;
    padding-block-end: 90px;
  }

  .hero-fallback img {
    width: min(82vw, 380px);
  }

  .hero-inner {
    padding-block: 84px 108px;
  }

  .hero-title {
    font-size: clamp(2.7rem, 14vw, 3.7rem);
    letter-spacing: 0.035em;
  }

  .hero-identity {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.62;
  }

  .scroll-indicator {
    display: none;
  }

  .quick-card {
    min-height: 188px;
    padding: 22px;
  }

  .quick-card svg {
    width: 62px;
    height: 62px;
  }

  .page-hero {
    padding-block: 112px 46px;
  }

  .ghost-word {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .release-art {
    min-height: 180px;
  }

  .resource-art span {
    font-size: clamp(2rem, 13vw, 3.4rem);
  }

  .about-image-frame img {
    min-height: 320px;
  }

  .empty-state {
    min-height: 360px;
  }

  .footer-nav,
  .footer-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .footer-language {
    grid-column: 1 / -1;
  }
}

@media (max-width: 380px) {
  :root {
    --container-gutter: 24px;
    --container: min(calc(100% - var(--container-gutter)), var(--container-max));
  }

  .brand-name {
    font-size: 0.96rem;
    letter-spacing: 0.08em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu nav a {
    font-size: clamp(1.55rem, 10vw, 2.25rem);
  }

  .hero-title {
    font-size: clamp(2.4rem, 13.5vw, 3.2rem);
  }

  .hero-identity {
    font-size: 0.74rem;
  }

  .quick-card {
    min-height: 170px;
  }

  .quick-card svg {
    width: 54px;
    height: 54px;
  }

  .card-content strong {
    font-size: 1rem;
  }

  .card-content small {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: clamp(2.25rem, 13vw, 3rem);
  }

  input,
  textarea {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
