:root {
  --red: #8b1e22;
  --red-dark: #551115;
  --gold: #d6aa45;
  --gold-soft: #f1d694;
  --ivory: #fff8ea;
  --black: #100d0d;
  --sand: #d7b98d;
  --sand-light: #f3e3cb;
  --blue: #165f77;
  --blue-dark: #0b3442;
  --white: #ffffff;
  --muted: #766b61;
  --shadow: 0 24px 80px rgba(16, 13, 13, 0.18);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--black);
  background: radial-gradient(circle at top left, rgba(214, 170, 69, 0.18), transparent 30%), radial-gradient(circle at 80% 20%, rgba(22, 95, 119, 0.12), transparent 28%), linear-gradient(180deg, var(--ivory), #fffaf1 48%, #f7ead8 100%);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image: linear-gradient(30deg, rgba(139, 30, 34, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(139, 30, 34, 0.5) 87.5%, rgba(139, 30, 34, 0.5)), linear-gradient(150deg, rgba(139, 30, 34, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(139, 30, 34, 0.5) 87.5%, rgba(139, 30, 34, 0.5)), linear-gradient(30deg, rgba(214, 170, 69, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(214, 170, 69, 0.5) 87.5%, rgba(214, 170, 69, 0.5)), linear-gradient(150deg, rgba(214, 170, 69, 0.5) 12%, transparent 12.5%, transparent 87%, rgba(214, 170, 69, 0.5) 87.5%, rgba(214, 170, 69, 0.5));
  background-position: 0 0, 0 0, 36px 63px, 36px 63px;
  background-size: 72px 126px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(16, 13, 13, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 170, 69, 0.22);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

.site-header.scrolled {
  background: rgba(16, 13, 13, 0.92);
  box-shadow: 0 12px 40px rgba(16, 13, 13, 0.2);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-mark,
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand-mark {
  border: 1px solid rgba(214, 170, 69, 0.75);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--gold);
  background: radial-gradient(circle, rgba(214, 170, 69, 0.15), rgba(139, 30, 34, 0.35));
}

.brand-logo {
  object-fit: cover;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  color: rgba(255, 248, 234, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold-soft);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(214, 170, 69, 0.5);
  background: rgba(255, 248, 234, 0.08);
  color: var(--ivory);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(16, 13, 13, 0.18);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-color: rgba(255, 248, 234, 0.25);
}

.btn-secondary {
  color: var(--ivory);
  background: rgba(255, 248, 234, 0.08);
  border-color: rgba(255, 248, 234, 0.3);
}

.btn-dark {
  color: var(--ivory);
  background: var(--black);
  border-color: rgba(214, 170, 69, 0.4);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 130px 22px 80px;
  color: var(--ivory);
  background: linear-gradient(90deg, rgba(16, 13, 13, 0.88) 0%, rgba(16, 13, 13, 0.68) 42%, rgba(16, 13, 13, 0.22) 100%), var(--hero-bg) center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(214, 170, 69, 0.24), transparent 30%), linear-gradient(180deg, transparent 70%, rgba(16, 13, 13, 0.82) 100%);
  pointer-events: none;
}

.hero::after {
  content: "هاله مالكـــي";
  position: absolute;
  right: 4vw;
  bottom: 5vh;
  font-family: var(--font-display);
  font-size: clamp(4rem, 13vw, 15rem);
  line-height: 1;
  color: rgba(214, 170, 69, 0.08);
  pointer-events: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  animation: fadeUp 1.1s ease both;
}

.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.3rem, 11vw, 10rem);
  margin-bottom: 18px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
  max-width: 680px;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  color: rgba(255, 248, 234, 0.9);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 14px;
  max-width: 680px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 234, 0.08);
  border: 1px solid rgba(214, 170, 69, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-soft);
}

.stat-card span {
  color: rgba(255, 248, 234, 0.75);
  font-size: 0.86rem;
}

section,
.content-page {
  padding: 96px 22px;
  position: relative;
}

.content-page {
  min-height: 70vh;
  padding-top: 150px;
}

.section-inner,
.content-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 42px;
}

.section-kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--black);
}

.section-copy,
.content-inner p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 760px;
}

.ornament {
  width: 92px;
  height: 10px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
  border-radius: 999px;
}

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

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(139, 30, 34, 0.1);
  box-shadow: 0 14px 50px rgba(16, 13, 13, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red-dark), var(--blue-dark));
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.card-body {
  padding: 24px;
}

.card-label {
  display: inline-block;
  color: var(--red);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 1.55rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(135deg, var(--red-dark), var(--blue-dark));
  box-shadow: var(--shadow);
  isolation: isolate;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(214, 170, 69, 0.45);
  border-radius: 24px;
  z-index: 2;
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.95;
}

.bio-panel {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 248, 234, 0.9), rgba(255, 255, 255, 0.72)), radial-gradient(circle at top right, rgba(214, 170, 69, 0.18), transparent 42%);
  border: 1px solid rgba(214, 170, 69, 0.25);
  box-shadow: 0 18px 70px rgba(16, 13, 13, 0.09);
}

.bio-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 22px;
}

.bio-panel p + p {
  margin-top: 16px;
}

.signature {
  margin-top: 28px;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.7rem;
}

.music-showcase {
  background: linear-gradient(135deg, rgba(16, 13, 13, 0.94), rgba(85, 17, 21, 0.94)), var(--pattern-bg) center/cover no-repeat;
  color: var(--ivory);
  overflow: hidden;
}

.music-showcase .section-title,
.music-showcase .section-copy {
  color: var(--ivory);
}

.music-showcase .section-copy {
  opacity: 0.78;
}

.release-list {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 24px;
}

.featured-release {
  min-height: 460px;
  border-radius: var(--radius-xl);
  padding: 34px;
  background: linear-gradient(180deg, rgba(16, 13, 13, 0.1), rgba(16, 13, 13, 0.86)), var(--music-cover) center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(214, 170, 69, 0.25);
  box-shadow: var(--shadow);
}

.featured-release h3 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  margin-bottom: 12px;
}

.music-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.platform-link {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.1);
  border: 1px solid rgba(214, 170, 69, 0.28);
  color: var(--ivory);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.platform-link:hover,
.platform-link:focus-visible {
  background: var(--gold);
  color: var(--black);
}

.release-cards {
  display: grid;
  gap: 16px;
}

.release-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 234, 0.08);
  border: 1px solid rgba(214, 170, 69, 0.2);
}

.release-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.release-card p {
  color: rgba(255, 248, 234, 0.75);
  font-size: 0.95rem;
}

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

.video-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 95, 119, 0.12);
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(16, 13, 13, 0.08);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--black), var(--blue-dark));
  display: grid;
  place-items: center;
  color: var(--ivory);
  text-align: center;
  padding: 24px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: relative;
  z-index: 1;
  max-width: 320px;
}

.video-placeholder span {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--black);
  font-weight: 900;
}

.video-info {
  padding: 22px;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  border: 1px solid rgba(139, 30, 34, 0.18);
  background: rgba(255, 255, 255, 0.62);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--black);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background: var(--red);
  color: var(--ivory);
  border-color: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand-light);
  box-shadow: 0 12px 36px rgba(16, 13, 13, 0.08);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ivory);
  background: rgba(16, 13, 13, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-weight: 800;
  font-size: 0.9rem;
}

.events {
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.5), rgba(22, 95, 119, 0.1));
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 95, 119, 0.12);
  box-shadow: 0 10px 42px rgba(16, 13, 13, 0.07);
}

.event-date {
  border-radius: 18px;
  padding: 18px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--red), var(--blue));
  text-align: center;
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.event-date span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 900;
}

.event-card h3 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.event-meta {
  color: var(--red);
  font-weight: 900;
  margin-bottom: 8px;
}

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

.press-card {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: rgba(16, 13, 13, 0.94);
  color: var(--ivory);
  border: 1px solid rgba(214, 170, 69, 0.24);
  box-shadow: var(--shadow);
}

.press-card.light {
  background: rgba(255, 255, 255, 0.76);
  color: var(--black);
}

.press-card h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.press-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.press-list li {
  padding: 16px;
  border-radius: 16px;
  background: rgba(214, 170, 69, 0.12);
  border: 1px solid rgba(214, 170, 69, 0.16);
  overflow-wrap: anywhere;
}

.contact-section {
  color: var(--ivory);
  background: linear-gradient(135deg, rgba(16, 13, 13, 0.96), rgba(11, 52, 66, 0.94)), var(--stage-bg) center/cover no-repeat;
}

.contact-section .section-title,
.contact-section .section-copy {
  color: var(--ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
  align-items: start;
}

.contact-panel,
.booking-form {
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 234, 0.08);
  border: 1px solid rgba(214, 170, 69, 0.22);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 32px;
}

.contact-panel h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(214, 170, 69, 0.28);
  color: var(--gold-soft);
  background: rgba(255, 248, 234, 0.08);
  font-weight: 900;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.booking-form {
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  font-weight: 900;
  color: rgba(255, 248, 234, 0.88);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(214, 170, 69, 0.24);
  background: rgba(255, 248, 234, 0.92);
  color: var(--black);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 170, 69, 0.16);
}

.form-note {
  color: rgba(255, 248, 234, 0.7);
  font-size: 0.9rem;
  margin-top: 14px;
}

.form-alert {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-weight: 800;
}

.form-alert.success {
  background: rgba(214, 170, 69, 0.18);
  border: 1px solid rgba(214, 170, 69, 0.4);
}

.form-alert.error {
  background: rgba(139, 30, 34, 0.22);
  border: 1px solid rgba(241, 214, 148, 0.3);
}

.footer {
  padding: 42px 22px;
  background: var(--black);
  color: rgba(255, 248, 234, 0.72);
  border-top: 1px solid rgba(214, 170, 69, 0.2);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer strong {
  display: block;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 248, 234, 0.72);
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 12px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 22px;
    background: rgba(16, 13, 13, 0.96);
    border: 1px solid rgba(214, 170, 69, 0.25);
  }

  .nav-menu.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .section-header,
  .split,
  .release-list,
  .contact-layout,
  .press-grid {
    grid-template-columns: 1fr;
  }

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

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

  .event-card {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .event-card .btn {
    grid-column: 2;
    justify-self: start;
  }
}

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

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  section,
  .content-page {
    padding: 72px 18px;
  }

  .content-page {
    padding-top: 125px;
  }

  .nav-wrap {
    padding: 14px 18px;
  }

  .brand-text {
    font-size: 1.15rem;
  }

  .hero {
    min-height: 92svh;
    padding: 115px 18px 62px;
    background-position: 62% center;
  }

  .hero::after {
    right: -18vw;
    bottom: 2vh;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .music-platforms {
    flex-direction: column;
  }

  .hero-actions .btn,
  .music-platforms .platform-link {
    width: 100%;
  }

  .hero-stats,
  .card-grid,
  .video-grid,
  .gallery-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card .btn {
    grid-column: auto;
  }

  .bio-panel,
  .booking-form,
  .contact-panel,
  .press-card {
    padding: 24px;
  }

  .portrait-frame,
  .portrait-frame img {
    min-height: 430px;
  }

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