:root {
  --ink: #110d0b;
  --charcoal: #1c1917;
  --maroon: #551016;
  --red: #8e1c23;
  --crimson: #b43a32;
  --gold: #d3ad67;
  --gold-bright: #efcf8c;
  --ivory: #fffaf0;
  --paper: #f8f4ec;
  --muted: #70665b;
  --line: rgba(103, 77, 40, 0.2);
  --shadow: 0 28px 80px rgba(22, 13, 7, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(14, 4, 5, 0.82), rgba(14, 4, 5, 0));
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(22, 7, 8, 0.93);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 240px;
}

.brand img {
  width: 68px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.36));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 247, 234, 0.74);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 247, 234, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  color: #1f0b0d;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 10px 30px rgba(211, 173, 103, 0.22);
}

.hero {
  position: relative;
  display: grid;
  min-height: 90vh;
  overflow: hidden;
  padding: 0;
  place-items: center start;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 5, 4, 0.97) 0%, rgba(25, 9, 8, 0.86) 40%, rgba(56, 16, 16, 0.3) 72%, rgba(7, 5, 4, 0.58) 100%),
    linear-gradient(0deg, rgba(9, 5, 4, 0.86) 0%, rgba(9, 5, 4, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-logo {
  display: block;
  width: clamp(190px, 23vw, 310px);
  max-height: 116px;
  margin: 0 0 14px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.08;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 3.6vw, 3.55rem);
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  font-size: clamp(1.85rem, 2.4vw, 2.65rem);
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 247, 234, 0.88);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.hero-badge {
  display: inline-grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(217, 174, 92, 0.38);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(12, 9, 7, 0.72);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge strong {
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.24;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-socials span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-socials a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(211, 173, 103, 0.38);
}

.hero-media-preview {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 10px;
  width: min(410px, 32vw);
  padding: 10px;
  border: 1px solid rgba(211, 173, 103, 0.35);
  border-radius: 8px;
  background: rgba(8, 6, 5, 0.76);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.hero-preview-video,
.hero-preview-poster {
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #080604;
}

.hero-preview-video video,
.hero-preview-poster img {
  display: block;
  width: 100%;
  object-fit: contain;
  background: #080604;
}

.hero-preview-video video {
  aspect-ratio: 16 / 10;
  padding: 10px;
}

.hero-preview-poster img {
  aspect-ratio: 2 / 3;
}

.hero-media-preview b {
  display: block;
  padding: 8px;
  color: white;
  background: #130e0b;
  font-size: 0.62rem;
  line-height: 1.2;
}

.button:hover,
.header-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button,
.header-cta {
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.button {
  padding: 0 24px;
}

.button.primary {
  color: #230b0d;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 32px rgba(217, 174, 92, 0.28);
}

.button:disabled {
  cursor: wait;
  filter: saturate(0.45);
  opacity: 0.72;
}

.button.secondary {
  border: 1px solid rgba(255, 247, 234, 0.34);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1050px);
  margin: 0 auto;
  border: 1px solid rgba(255, 247, 234, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats span {
  min-height: 74px;
  padding: 15px 16px;
  color: rgba(255, 247, 234, 0.72);
  background: rgba(19, 4, 5, 0.54);
}

.hero-stats strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}

.trust-strip {
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(211, 173, 103, 0.16);
  border-bottom: 1px solid rgba(211, 173, 103, 0.16);
  background: linear-gradient(90deg, #0c0908 0%, #261812 52%, #0c0908 100%);
}

section {
  padding: clamp(68px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.band {
  background:
    radial-gradient(circle at 15% 10%, rgba(211, 173, 103, 0.13), transparent 34%),
    linear-gradient(135deg, #fbf8f1 0%, #efe6d5 100%);
}

.studio-showcase {
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(142, 28, 35, 0.28), transparent 32%),
    linear-gradient(135deg, #0b0908 0%, #17110e 52%, #26100f 100%);
}

.showcase-heading {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  margin-bottom: 42px;
  align-items: end;
}

.showcase-heading > p {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.showcase-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.video-frame,
.announcement {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 173, 103, 0.3);
  border-radius: 8px;
  background: #050403;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-label,
.announcement figcaption {
  display: block;
  padding: 12px 14px;
  border-top: 1px solid rgba(211, 173, 103, 0.22);
  color: white;
  background: #130e0b;
  font-size: 0.78rem;
  font-weight: 800;
}

.announcement {
  display: grid;
  margin: 0;
}

.announcement img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  object-position: center top;
  background: #050403;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 24px;
}

.intro-copy p,
.sound p,
.contact-copy p,
.collaboration p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.statement {
  padding: 24px;
  border: 1px solid rgba(111, 17, 24, 0.16);
  border-left: 5px solid var(--maroon);
  border-radius: 8px;
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 45px rgba(69, 22, 17, 0.08);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.55vw, 1.45rem) !important;
  line-height: 1.35 !important;
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 58px);
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 306px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  box-shadow: 0 16px 44px rgba(69, 22, 17, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(111, 17, 24, 0.34);
  box-shadow: 0 24px 60px rgba(69, 22, 17, 0.14);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: linear-gradient(145deg, #35110f, #7b2725);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.sound-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.78fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.meter-stack {
  display: grid;
  gap: 24px;
}

.meter-row span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 800;
}

.meter-row b {
  display: block;
  height: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: #ead7bc;
}

.meter-row b::after {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--maroon), var(--crimson), var(--gold));
  content: "";
}

.process {
  background:
    radial-gradient(circle at 80% 10%, rgba(211, 173, 103, 0.18), transparent 32%),
    linear-gradient(135deg, #0b0908 0%, #21130f 54%, #0b0908 100%);
  color: white;
}

.process .section-heading {
  max-width: 900px;
}

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

.timeline article {
  padding: 30px;
  border: 1px solid rgba(217, 174, 92, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
}

.timeline span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
}

.timeline p {
  color: rgba(255, 247, 234, 0.72);
}

.collaboration {
  padding-block: clamp(84px, 9vw, 134px);
  color: white;
  background:
    linear-gradient(90deg, rgba(8, 6, 5, 0.97), rgba(43, 21, 15, 0.92) 58%, rgba(84, 19, 20, 0.8)),
    url("assets/hero-karbala-najaf.png?v=u87") center / cover;
}

.collaboration-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  align-items: center;
}

.collaboration-portrait {
  position: relative;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 92, 0.48);
  border-radius: 8px;
  background: rgba(255, 247, 234, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.collaboration-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center;
}

.collaboration-portrait figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(211, 173, 103, 0.26);
  border-radius: 5px;
  color: white;
  background: rgba(7, 8, 5, 0.78);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.collaboration-copy {
  padding-left: clamp(0px, 3vw, 46px);
  border-left: 1px solid rgba(217, 174, 92, 0.34);
}

.collaboration p {
  max-width: 840px;
  margin-top: 22px;
  color: rgba(255, 247, 234, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  background: var(--paper);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

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

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.form-note.is-error {
  color: var(--red);
  font-weight: 700;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #357249;
}

.form-status.is-error {
  color: var(--red);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-details {
  display: grid;
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.contact-details > * {
  display: grid;
  gap: 3px;
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.7);
}

.contact-details span span {
  display: block;
}

.contact-details span,
.contact-details a span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--ink);
  font-size: 0.98rem;
}

label {
  display: grid;
  gap: 8px;
  color: #4a2a25;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(111, 17, 24, 0.24);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fffaf2;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: rgba(255, 247, 234, 0.72);
  background: #090706;
}

footer img {
  width: 170px;
  max-height: 80px;
  object-fit: contain;
}

footer p {
  max-width: 620px;
  margin: 0;
  text-align: right;
}

.footer-copy {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.copyright {
  color: rgba(255, 247, 234, 0.5);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav,
  .header-cta {
    display: none;
  }

  .intro,
  .sound-panel,
  .contact,
  .collaboration-inner,
  .showcase-heading {
    grid-template-columns: 1fr;
  }

  .collaboration-copy {
    padding-left: 0;
    border-left: 0;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 430px;
  }

  .hero-stats span {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 58px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
    place-items: center start;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-top: 58px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 2.7rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }

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

  .button,
  .hero-actions a {
    width: 100%;
  }

  .service-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .showcase-media {
    grid-template-columns: 1fr;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .announcement {
    aspect-ratio: 4 / 5;
  }

  .service-card {
    min-height: auto;
  }

  .hero-badge {
    width: 100%;
  }

  .hero-media-preview {
    display: none;
  }

  .hero-logo {
    width: 175px;
    max-height: 102px;
  }

  .hero .hero-stats {
    display: none;
  }

  .trust-strip .hero-stats {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
  }

  footer p {
    text-align: left;
  }

  .footer-copy {
    justify-items: start;
  }
}
