@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap");

:root {
  --black: #05070d;
  --charcoal: #0b111b;
  --navy: #0e1a2b;
  --gold: #c99a44;
  --cream: #f7f1e8;
  --muted: #b9b0a3;
  --crimson: #a8203f;
  --crimson-light: #c73657;
  --border: rgba(201, 154, 68, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

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

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(5, 7, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo span {
  color: var(--crimson-light);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  color: var(--cream);
  opacity: 0.82;
}

.nav a.active,
.nav a:hover {
  color: var(--gold);
  opacity: 1;
}

/* HERO */

.hero.hero-with-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  padding: 62px 70px 50px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  background: #05070d;
  border-bottom: none;
}

.hero.hero-with-photo::before {
  content: "";
  position: absolute;
  inset: 0 -70px 0 -70px;
  z-index: 0;
  background-image: url("../img/home-hero.jpg");
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  filter: brightness(1.18) contrast(1.03) saturate(1.03);
  transform: translateX(26px) scale(1.04);
  transform-origin: center;
}

.hero.hero-with-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 13, 0.82) 0%,
      rgba(5, 7, 13, 0.60) 28%,
      rgba(5, 7, 13, 0.28) 48%,
      rgba(5, 7, 13, 0.08) 68%,
      rgba(5, 7, 13, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 7, 13, 0.04) 0%,
      rgba(5, 7, 13, 0.22) 100%
    );
}

.hero.hero-with-photo .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.42);
}

.hero.hero-with-photo .eyebrow {
  margin: 0 0 20px;
  color: #efe7dc;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero.hero-with-photo h1 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 8vw, 122px);
  line-height: 0.77;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #fff8ed;
}

.hero.hero-with-photo h1 span {
  color: var(--crimson-light);
}

/* EXACT TAGLINE IMAGE */

.tagline-graphic {
  width: 430px;
  max-width: 100%;
  margin: 8px 0 18px -4px;
}

.tagline-graphic img {
  display: block;
  width: 100%;
  height: auto;
}

/* WATCH TRAILER BUTTON */

.hero.hero-with-photo .button-row {
  display: flex;
  justify-content: center;
  width: 430px;
  max-width: 100%;
  margin-top: 6px;
}

/* This hides the old Discover the Story button only in the hero, in case it is still in the HTML. */
.hero.hero-with-photo .button.secondary {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--crimson-light), #7d1730);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
}

.trailer-button {
  position: relative;
  min-width: 190px;
  min-height: 50px;
  padding-left: 58px;
  padding-right: 28px;
}

.trailer-button .play-icon {
  display: none;
}

.trailer-button::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 23px;
  height: 23px;
  transform: translateY(-50%);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
}

.trailer-button::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}

/* RELEASE TEXT */

.release-lockup {
  width: 430px;
  max-width: 100%;
  text-align: center;
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f7f1e8;
}

.release-kicker {
  color: #f7f1e8;
}

.release-date {
  margin-left: 10px;
  color: #d43a63;
}

/* MAIN SECTIONS */

.section {
  padding: 72px 70px;
  border-bottom: 1px solid rgba(201, 154, 68, 0.18);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.eyebrow {
  color: var(--crimson-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  margin: 8px 0 18px;
}

.section p {
  color: var(--muted);
  line-height: 1.75;
}

.image-placeholder {
  min-height: 340px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 7, 13, 0.8)),
    linear-gradient(135deg, #152034, #2a121a);
}

.players {
  text-align: center;
}

.card-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.player-card {
  border: 1px solid var(--border);
  background: var(--charcoal);
  overflow: hidden;
}

.player-photo {
  height: 170px;
  background:
    radial-gradient(circle at 50% 35%, rgba(201, 154, 68, 0.22), transparent 38%),
    linear-gradient(135deg, #202b3f, #090d15);
}

.player-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  margin: 18px 14px 6px;
  text-transform: uppercase;
}

.player-card p {
  font-size: 13px;
  margin: 0 14px 20px;
}

.soundtrack {
  background:
    linear-gradient(90deg, rgba(98, 21, 40, 0.85), rgba(5, 7, 13, 1)),
    #190b12;
}

.newsletter {
  text-align: center;
}

.newsletter-form {
  max-width: 620px;
  margin: 26px auto 0;
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 16px;
}

.newsletter-form button {
  border: 0;
  padding: 0 26px;
  background: var(--crimson);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 70px;
  color: var(--muted);
  font-size: 12px;
  background: #03050a;
}

/* MOBILE */

@media (max-width: 900px) {
  .site-header {
    padding: 18px 22px;
  }

  .nav {
    display: none;
  }

  .hero.hero-with-photo {
    min-height: 620px;
    padding: 54px 24px 44px;
    grid-template-columns: 1fr;
  }

  .hero.hero-with-photo::before {
    inset: 0;
    background-position: 61% 40%;
    filter: brightness(1.12) contrast(1.02) saturate(1.02);
    transform: translateX(12px) scale(1.04);
  }

  .hero.hero-with-photo .hero-copy {
    max-width: 430px;
  }

  .hero.hero-with-photo .eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .hero.hero-with-photo h1 {
    font-size: clamp(52px, 14vw, 82px);
    line-height: 0.79;
  }

  .tagline-graphic {
    width: 340px;
    margin: 8px 0 18px -4px;
  }

  .trailer-button {
    min-width: 185px;
  }

  .release-lockup {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 24px;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    min-height: 48px;
  }

  .site-footer {
    padding: 28px 24px;
    flex-direction: column;
  }
}
/* ===== HERO REVISION: HNO LOGO + CENTERED ACTION STACK ===== */

/* Top-left logo: HNO with pink O */
.logo.logo-hno {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff8ed;
}

.logo.logo-hno span {
  color: var(--crimson-light);
}

/* Keep "Stowed Away Films Presents" left-aligned */
.hero.hero-with-photo .eyebrow {
  width: auto;
  max-width: none;
  margin: 0 0 20px 0;
  text-align: left;
}

/* Keep the main pink ONE aligned left under NUMBER */
.hero.hero-with-photo h1 span {
  display: block;
  text-align: left;
  margin-left: 0;
  color: var(--crimson-light);
}

/* Center the tagline/button/release group within the left-side visual space */
.hero-action-stack {
  width: 430px;
  max-width: 100%;
  margin-left: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pull the button closer to the handwritten tagline */
.hero-action-stack .tagline-graphic {
  width: 430px;
  max-width: 100%;
  margin: 8px 0 -10px 0;
}

.hero-action-stack .tagline-graphic img {
  display: block;
  width: 100%;
  height: auto;
}

/* Center Watch Trailer with the tagline */
.hero.hero-with-photo .hero-action-stack .button-row {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Keep button styling clean */
.trailer-button {
  position: relative;
  min-width: 205px;
  min-height: 52px;
  padding-left: 62px;
  padding-right: 30px;
}

/* Center Coming / Fall / 2026 under the button with equal word spacing */
.hero-action-stack .release-lockup {
  width: 100%;
  max-width: 100%;
  margin: 18px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.95em;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
  color: #f7f1e8;
}

.release-kicker {
  color: #f7f1e8;
}

.release-date,
.release-year {
  margin-left: 0;
  color: #d43a63;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .logo.logo-hno {
    font-size: 36px;
  }

  .hero-action-stack {
    width: 340px;
    max-width: 100%;
    margin-left: 0;
    align-items: center;
  }

  .hero-action-stack .tagline-graphic {
    width: 340px;
    margin: 8px 0 -8px 0;
  }

  .hero.hero-with-photo .hero-action-stack .button-row {
    width: 100%;
    margin-top: 0;
  }

  .hero-action-stack .release-lockup {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.20em;
    gap: 0.8em;
  }
}
/* ===== STORY COLLAGE IMAGE ===== */

.story-collage-wrap {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-collage-wrap img {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  object-fit: contain;
}
/* ===== JACKSON HEW SCHOOL STRIP ===== */

.school-strip {
  display: grid;
  grid-template-columns: 1.75fr 0.78fr 0.95fr;
  gap: 0;
  min-height: 330px;
  background: #05070d;
  border-top: 1px solid rgba(201, 154, 68, 0.12);
  border-bottom: 1px solid rgba(201, 154, 68, 0.12);
  overflow: hidden;
}

.school-flag-panel {
  position: relative;
  min-height: 330px;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 13, 0.88) 0%,
      rgba(5, 7, 13, 0.68) 30%,
      rgba(5, 7, 13, 0.30) 58%,
      rgba(5, 7, 13, 0.06) 100%
    ),
    url("../img/lion-flag.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.school-copy {
  position: relative;
  z-index: 2;
  width: 42%;
  min-width: 320px;
  height: 100%;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0 42px 70px;
}

.school-copy h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.55vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: #fff8ed;
  text-transform: uppercase;
}

.school-copy h2 span {
  color: var(--gold);
}

.school-copy p {
  max-width: 330px;
  margin: 0 0 24px;
  color: rgba(247, 241, 232, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.school-button,
.school-learn-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #fff8ed;
  background: rgba(5, 7, 13, 0.34);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.school-button .lion-icon,
.school-button .arrow,
.school-learn-button .arrow {
  color: var(--gold);
}

.school-photo {
  position: relative;
  min-height: 330px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* No borders, no card gaps, no rounded boxes */
.school-photo,
.school-flag-panel {
  border: 0;
  border-radius: 0;
}

.school-gym {
  background-image:
    linear-gradient(180deg, rgba(5, 7, 13, 0.05), rgba(5, 7, 13, 0.12)),
    url("../img/jackson-gym.jpg");
}

.school-logo-panel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 34px;
  background-image:
    linear-gradient(180deg, rgba(5, 7, 13, 0.02), rgba(5, 7, 13, 0.18)),
    url("../img/jackson-logo.jpg");
}

.school-learn-button {
  min-height: 38px;
  padding: 0 20px;
  border-radius: 4px;
  background: rgba(5, 7, 13, 0.48);
}

@media (max-width: 900px) {
  .school-strip {
    grid-template-columns: 1fr;
  }

  .school-flag-panel,
  .school-photo {
    min-height: 320px;
  }

  .school-copy {
    width: 100%;
    min-width: 0;
    padding: 54px 24px;
  }

  .school-copy p {
    max-width: 420px;
  }
}
/* ===== KEY PLAYERS SECTION ===== */

.players h2 .pressure-word {
  color: var(--crimson-light);
}

.players .cast-grid {
  max-width: 1280px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.players .player-card {
  border: 1px solid rgba(201, 154, 68, 0.32);
  background: #0b111b;
  overflow: hidden;
  min-height: 380px;
}

.players .player-photo {
  height: 245px;
  overflow: hidden;
  background: #111827;
}

.players .player-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.04) saturate(0.96);
}

.players .kaylin-photo img {
  object-position: 58% center;
}

.players .tyler-photo img {
  object-position: center center;
}

.players .jordan-photo img {
  object-position: 50% 38%;
}

.players .jacob-photo img {
  object-position: 50% 38%;
}

.players .lauren-photo img {
  object-position: 50% 35%;
}

.players .player-card h3 {
  margin: 22px 14px 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff8ed;
  text-align: center;
}

.players .player-card p {
  margin: 0 18px 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1100px) {
  .players .cast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .players .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .players .cast-grid {
    grid-template-columns: 1fr;
  }

  .players .player-photo {
    height: 320px;
  }
}
/* ===== SOUNDTRACK SECTION ===== */

.soundtrack {
  position: relative;
  display: grid;
  grid-template-columns: 290px 420px 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 248px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #671628 0%, #541220 28%, #39101b 55%, #220811 78%, #17050c 100%);
  border-top: 1px solid rgba(201, 154, 68, 0.12);
  border-bottom: 1px solid rgba(201, 154, 68, 0.12);
}

.soundtrack-media {
  position: relative;
  min-height: 248px;
  overflow: hidden;
}

.soundtrack-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.86) saturate(0.92);
}

.soundtrack-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(116, 23, 48, 0.55) 0%,
      rgba(116, 23, 48, 0.50) 22%,
      rgba(116, 23, 48, 0.34) 52%,
      rgba(116, 23, 48, 0.12) 78%,
      rgba(116, 23, 48, 0) 100%
    );
  pointer-events: none;
}

.soundtrack-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(38, 8, 18, 0.10) 0%,
      rgba(38, 8, 18, 0.18) 40%,
      rgba(38, 8, 18, 0.44) 100%
    );
  pointer-events: none;
}

.soundtrack-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 34px 34px 30px;
}

.soundtrack .eyebrow {
  margin: 0 0 8px;
}

.soundtrack h2 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.02;
  color: #fff8ed;
}

.soundtrack-description {
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(247, 241, 232, 0.84);
  font-size: 15px;
  line-height: 1.55;
}

.soundtrack-button-row {
  display: flex;
  align-items: center;
}

.soundtrack-button {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(201, 154, 68, 0.72);
  border-radius: 4px;
  background: rgba(9, 6, 11, 0.18);
  color: #fff3e6;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 14px;
}

.soundtrack-button .note-icon {
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
}

.soundtrack-right {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(180px, 1fr);
  align-items: center;
  padding: 26px 28px 26px 20px;
}

.soundtrack-tracklist {
  padding-left: 28px;
  border-left: 1px solid rgba(247, 241, 232, 0.18);
}

.track-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-bottom: 14px;
}

.track-play {
  color: var(--gold);
  font-size: 11px;
  line-height: 1.35;
  transform: translateY(1px);
}

.track-title {
  color: #f7f1e8;
  font-size: 15px;
  line-height: 1.35;
}

.track-note {
  color: rgba(247, 241, 232, 0.7);
  font-size: 13px;
}

.tracklist-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--crimson-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracklist-link .arrow {
  font-size: 15px;
  line-height: 1;
}

.soundtrack-wave-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 26px;
}

.soundtrack-waveform {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 88px;
  opacity: 0.92;
  background:
    linear-gradient(90deg, transparent 0%, rgba(201, 54, 87, 0.18) 12%, rgba(201, 54, 87, 0.42) 50%, rgba(201, 54, 87, 0.18) 88%, transparent 100%);
  clip-path: polygon(
    0% 50%,
    4% 50%,
    6% 44%,
    8% 57%,
    10% 35%,
    12% 62%,
    14% 41%,
    16% 54%,
    18% 28%,
    20% 66%,
    22% 48%,
    24% 56%,
    26% 22%,
    28% 72%,
    30% 46%,
    32% 58%,
    34% 30%,
    36% 63%,
    38% 44%,
    40% 52%,
    42% 18%,
    44% 74%,
    46% 43%,
    48% 61%,
    50% 12%,
    52% 80%,
    54% 45%,
    56% 57%,
    58% 24%,
    60% 68%,
    62% 47%,
    64% 54%,
    66% 34%,
    68% 60%,
    70% 46%,
    72% 52%,
    74% 39%,
    76% 55%,
    78% 47%,
    80% 53%,
    82% 42%,
    84% 57%,
    86% 48%,
    88% 52%,
    90% 46%,
    92% 54%,
    94% 49%,
    96% 51%,
    100% 50%
  );
}

.soundtrack-waveform::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  mix-blend-mode: screen;
}

@media (max-width: 1100px) {
  .soundtrack {
    grid-template-columns: 260px 1fr;
  }

  .soundtrack-right {
    grid-column: 1 / -1;
    padding: 0 28px 28px 28px;
  }

  .soundtrack-tracklist {
    padding-left: 0;
    border-left: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
  }
}

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

  .soundtrack-media {
    min-height: 260px;
  }

  .soundtrack-copy {
    padding: 28px 24px 12px;
  }

  .soundtrack-right {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 8px 24px 28px;
  }

  .soundtrack-tracklist {
    border-top: 1px solid rgba(247, 241, 232, 0.18);
    padding-top: 18px;
  }

  .soundtrack-wave-wrap {
    justify-content: flex-start;
    padding-left: 0;
  }

  .soundtrack-waveform {
    max-width: 100%;
  }
}
/* ===== SOUNDTRACK AUDIO PLAYER OVERRIDE ===== */

.soundtrack {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 360px 460px 1fr;
  min-height: 255px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, #6b1629 0%, #541120 36%, #33101a 68%, #12050b 100%);
}

.soundtrack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/soundtrack-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

.soundtrack::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(98, 16, 37, 0.12) 0%,
      rgba(98, 16, 37, 0.34) 20%,
      rgba(98, 16, 37, 0.78) 38%,
      rgba(45, 10, 21, 0.90) 70%,
      rgba(12, 4, 8, 0.96) 100%
    );
}

.soundtrack-media {
  min-height: 255px;
}

.soundtrack-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px 34px 20px;
}

.soundtrack-copy h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.02;
  color: #fff8ed;
}

.soundtrack-description {
  max-width: 360px;
  margin: 0 0 22px;
  color: rgba(247, 241, 232, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.soundtrack-button {
  width: fit-content;
  min-width: 315px;
  min-height: 46px;
  gap: 16px;
  cursor: pointer;
}

.soundtrack-right {
  display: grid;
  grid-template-columns: minmax(270px, 380px) minmax(210px, 1fr);
  align-items: center;
  padding: 28px 36px 28px 28px;
}

.soundtrack-tracklist {
  padding-left: 30px;
  border-left: 1px solid rgba(247, 241, 232, 0.18);
}

.track-button {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

.track-button.is-playing .track-play {
  color: var(--crimson-light);
}

.now-playing {
  margin-bottom: 12px;
  text-align: right;
}

.now-playing-label {
  display: block;
  color: rgba(247, 241, 232, 0.52);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.now-playing-title {
  color: #fff8ed;
  font-size: 14px;
}

#soundtrack-player {
  display: none;
}
/* ===== SOUNDTRACK FINAL REFINEMENTS ===== */

/* Remove the old square overlay/mask from the empty photo column */
.soundtrack-media::before,
.soundtrack-media::after {
  content: none !important;
  display: none !important;
}

.soundtrack-media {
  background: transparent !important;
}

/* Keep the photo as the full-section background and let it bleed into the pink */
.soundtrack::before {
  background-image: url("../img/soundtrack-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

/* Smooth pink blend over the image and section */
.soundtrack::after {
  background:
    linear-gradient(
      90deg,
      rgba(98, 16, 37, 0.08) 0%,
      rgba(98, 16, 37, 0.24) 18%,
      rgba(98, 16, 37, 0.74) 37%,
      rgba(45, 10, 21, 0.90) 70%,
      rgba(12, 4, 8, 0.96) 100%
    ) !important;
}

/* Move the soundtrack text/button group slightly right */
.soundtrack {
  grid-template-columns: 360px 540px 1fr;
}

.soundtrack-copy {
  padding: 34px 44px 34px 74px;
}

/* Keep the right-side audio area balanced */
.soundtrack-right {
  grid-template-columns: minmax(260px, 360px) minmax(260px, 1fr);
  padding: 28px 38px 28px 24px;
}

/* Replace decorative waveform with functional progress bar */
.soundtrack-waveform {
  display: none !important;
}

.soundtrack-wave-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding-left: 34px;
}

.now-playing {
  margin-bottom: 12px;
  text-align: left;
}

.now-playing-label {
  display: block;
  margin-bottom: 4px;
}

.soundtrack-progress-player {
  width: min(320px, 100%);
}

.progress-time-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(247, 241, 232, 0.62);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.track-progress {
  width: 100%;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.20);
  outline: none;
  cursor: pointer;
}

.track-progress::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--crimson-light) var(--progress, 0%),
    rgba(247, 241, 232, 0.20) var(--progress, 0%)
  );
}

.track-progress::-webkit-slider-thumb {
  appearance: none;
  width: 13px;
  height: 13px;
  margin-top: -4.5px;
  border-radius: 50%;
  background: var(--crimson-light);
  box-shadow: 0 0 10px rgba(199, 54, 87, 0.65);
}

.track-progress::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.20);
}

.track-progress::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: var(--crimson-light);
}

.track-progress::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 50%;
  background: var(--crimson-light);
  box-shadow: 0 0 10px rgba(199, 54, 87, 0.65);
}

@media (max-width: 1150px) {
  .soundtrack {
    grid-template-columns: 300px 1fr;
  }

  .soundtrack-copy {
    padding: 34px 34px 34px 34px;
  }

  .soundtrack-right {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 34px 30px;
  }

  .soundtrack-wave-wrap {
    padding-left: 0;
  }

  .soundtrack-progress-player {
    width: 100%;
  }
}

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

  .soundtrack-copy {
    padding: 28px 24px 14px;
  }

  .soundtrack::before {
    background-size: cover;
    background-position: left center;
  }

  .soundtrack::after {
    background:
      linear-gradient(
        180deg,
        rgba(98, 16, 37, 0.45) 0%,
        rgba(64, 14, 28, 0.85) 42%,
        rgba(12, 4, 8, 0.96) 100%
      ) !important;
  }
}
/* ===== SOUNDTRACK FINAL VISUAL REVISIONS ===== */

/* Move the soundtrack text group to the right so it clears the people in the background */
.soundtrack {
  grid-template-columns: clamp(500px, 30vw, 620px) clamp(560px, 31vw, 640px) minmax(520px, 1fr);
  min-height: 255px;
}

/* Keep the image as background, no square/card mask */
.soundtrack-media,
.soundtrack-media::before,
.soundtrack-media::after {
  background: transparent !important;
  content: none !important;
  display: block;
}

.soundtrack::before {
  background-image: url("../img/soundtrack-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

/* Keep the pink blend over the whole section */
.soundtrack::after {
  background:
    linear-gradient(
      90deg,
      rgba(98, 16, 37, 0.08) 0%,
      rgba(98, 16, 37, 0.20) 18%,
      rgba(98, 16, 37, 0.66) 34%,
      rgba(74, 13, 29, 0.88) 58%,
      rgba(30, 7, 15, 0.96) 100%
    ) !important;
}

/* Reposition the copy block */
.soundtrack-copy {
  padding: 34px 52px 34px 44px;
}

/* Hot pink soundtrack label */
.soundtrack-copy .eyebrow,
.soundtrack .eyebrow {
  color: var(--crimson-light) !important;
}

/* Match the reference phrase styling */
.soundtrack-copy h2 {
  margin: 0 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 2.6vw, 50px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #fff8ed;
}

.soundtrack-description {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.55;
}

/* Keep the button closer to the reference */
.soundtrack-button {
  min-width: 350px;
  min-height: 46px;
}

/* Right panel: give the progress bar room so it is not cut off */
.soundtrack-right {
  grid-template-columns: minmax(390px, 470px) minmax(270px, 340px);
  column-gap: 36px;
  padding: 28px 76px 28px 28px;
}

/* Tracklist divider and spacing */
.soundtrack-tracklist {
  padding-left: 30px;
  border-left: 1px solid rgba(247, 241, 232, 0.22);
}

/* Track row with duration column */
.track-item {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  margin: 0 0 17px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff8ed;
  text-align: left;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

/* Circular play buttons like the reference */
.track-play {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block;
  border: 2px solid rgba(199, 54, 87, 0.82);
  border-radius: 999px;
  color: transparent;
  transform: none;
}

.track-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-42%, -50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--gold);
}

.track-button.is-playing .track-play {
  border-color: var(--crimson-light);
  box-shadow: 0 0 10px rgba(199, 54, 87, 0.35);
}

.track-button.is-playing .track-play::before {
  left: 50%;
  width: 9px;
  height: 11px;
  transform: translate(-50%, -50%);
  border: 0;
  background:
    linear-gradient(
      90deg,
      var(--crimson-light) 0 35%,
      transparent 35% 65%,
      var(--crimson-light) 65% 100%
    );
}

.track-title {
  color: #fff8ed;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.track-duration {
  color: rgba(247, 241, 232, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
}

.tracklist-link {
  margin-top: 18px;
  color: var(--crimson-light);
}

/* Now-playing and progress area */
.soundtrack-wave-wrap {
  width: 100%;
  max-width: 320px;
  padding-left: 0;
  align-items: stretch;
}

.now-playing {
  margin-bottom: 14px;
  text-align: left;
}

.now-playing-label {
  margin-bottom: 4px;
  color: rgba(247, 241, 232, 0.56);
  letter-spacing: 0.20em;
}

.now-playing-title {
  color: #fff8ed;
  font-size: 15px;
  line-height: 1.25;
}

.soundtrack-progress-player {
  width: 100%;
}

.progress-time-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(247, 241, 232, 0.62);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.track-progress {
  width: 100%;
}

/* Make sure the progress bar has a visible end */
.track-progress::-webkit-slider-runnable-track {
  background:
    linear-gradient(
      90deg,
      var(--crimson-light) var(--progress, 0%),
      rgba(247, 241, 232, 0.26) var(--progress, 0%)
    );
}

.track-progress::-moz-range-track {
  background: rgba(247, 241, 232, 0.26);
}

.track-progress::-moz-range-progress {
  background: var(--crimson-light);
}

/* Hide old decorative waveform completely */
.soundtrack-waveform {
  display: none !important;
}

/* Medium screens */
@media (max-width: 1500px) {
  .soundtrack {
    grid-template-columns: 470px 540px minmax(420px, 1fr);
  }

  .soundtrack-copy h2 {
    font-size: clamp(34px, 2.4vw, 46px);
  }

  .soundtrack-right {
    grid-template-columns: minmax(340px, 430px) minmax(230px, 300px);
    padding-right: 54px;
  }
}

@media (max-width: 1250px) {
  .soundtrack {
    grid-template-columns: 360px 1fr;
  }

  .soundtrack-copy {
    padding: 34px 34px 34px 40px;
  }

  .soundtrack-copy h2 {
    white-space: normal;
  }

  .soundtrack-right {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 34px 30px;
  }

  .soundtrack-tracklist {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
  }

  .soundtrack-wave-wrap {
    max-width: 100%;
  }
}

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

  .soundtrack-copy {
    padding: 28px 24px 14px;
  }

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

  .track-item {
    grid-template-columns: 30px minmax(0, 1fr) 48px;
  }

  .track-title {
    font-size: 14px;
  }

  .track-duration {
    font-size: 13px;
  }
}
/* ===== HOMEPAGE VIDEO GALLERY ===== */

.gallery-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 26px 70px 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 26, 43, 0.55), transparent 35%),
    #05070d;
  border-top: 1px solid rgba(201, 154, 68, 0.14);
  border-bottom: 1px solid rgba(201, 154, 68, 0.14);
}

.gallery-copy .eyebrow {
  margin: 0 0 12px;
  color: var(--crimson-light);
}

.gallery-copy h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.05;
  color: #fff8ed;
}

.gallery-button {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: #fff8ed;
  background: rgba(5, 7, 13, 0.26);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-button span:last-child {
  color: var(--gold);
  font-size: 16px;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  padding: 0;
  border: 1px solid rgba(201, 154, 68, 0.32);
  border-radius: 4px;
  background: #0b111b;
  color: #fff8ed;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.gallery-card:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 54, 87, 0.78);
  filter: brightness(1.08);
}

.gallery-thumb {
  position: relative;
  height: 128px;
  overflow: hidden;
  background: #08101c;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.06) saturate(0.94);
  transform: scale(1.04);
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.02) 0%, rgba(5, 7, 13, 0.34) 58%, rgba(5, 7, 13, 0.72) 100%),
    radial-gradient(circle at center, rgba(199, 54, 87, 0.16), transparent 45%);
  pointer-events: none;
}

.gallery-duration {
  position: absolute;
  top: 8px;
  right: 9px;
  z-index: 2;
  color: rgba(247, 241, 232, 0.90);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.gallery-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(199, 54, 87, 0.92);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.34);
  box-shadow: 0 0 18px rgba(199, 54, 87, 0.35);
}

.gallery-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff8ed;
}

.gallery-card-body {
  min-height: 122px;
  padding: 11px 12px 13px;
}

.gallery-type {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.05;
  color: #fff8ed;
}

.gallery-card-body p:last-child {
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 12px;
  line-height: 1.32;
}

/* ===== YOUTUBE MODAL ===== */

.youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.youtube-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.youtube-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.86);
  backdrop-filter: blur(10px);
}

.youtube-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 8px;
  background: #05070d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.youtube-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 241, 232, 0.35);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.72);
  color: #fff8ed;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.youtube-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.youtube-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .gallery-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .gallery-section {
    padding: 42px 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumb {
    height: 190px;
  }
}
/* ===== STORY SECTION LEFT SIDE REFINEMENT ===== */

#story .story-copy {
  max-width: 600px;
  text-align: left;
}

#story .story-copy .eyebrow {
  margin: 0 0 16px;
  color: var(--crimson-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

#story .story-copy h2 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.018em;
  text-transform: none;
  color: #fff8ed;
}

#story .story-copy p {
  max-width: 590px;
  margin: 0 0 18px;
  color: rgba(247, 241, 232, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.72;
}

#story .story-button {
  width: fit-content;
  min-height: 46px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 26px;
  border: 1px solid rgba(201, 154, 68, 0.82);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.22);
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

#story .story-button .arrow {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

#story .story-button:hover {
  border-color: var(--gold);
  background: rgba(201, 154, 68, 0.08);
}

@media (max-width: 900px) {
  #story .story-copy h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  #story .story-copy p {
    font-size: 14px;
  }
}
/* ===== ABOUT PAGE ===== */

.about-page {
  background:
    radial-gradient(circle at 72% 8%, rgba(14, 26, 43, 0.32), transparent 34%),
    radial-gradient(circle at 15% 42%, rgba(168, 32, 63, 0.06), transparent 30%),
    #05070d;
}

.about-main {
  background:
    linear-gradient(180deg, rgba(8, 16, 28, 0.28) 0%, rgba(5, 7, 13, 1) 46%),
    #05070d;
}

.about-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 74px 70px 48px;
}

.about-eyebrow {
  margin: 0 0 24px;
  color: var(--crimson-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 5.35vw, 5.55rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: #fff8ed;
}

.about-hero {
  max-width: 1120px;
}

.about-hero h1 {
  max-width: 520px;
}

.about-accent-line {
  width: 58px;
  height: 3px;
  margin: 38px 0 30px;
  background: var(--crimson-light);
  border-radius: 999px;
}

.about-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 241, 232, 0.78);
  font-size: 17px;
  line-height: 1.62;
}

/* Timeline */

.about-timeline {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 70px 54px 150px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 112px;
  top: 42px;
  bottom: 82px;
  width: 1px;
  background: rgba(247, 241, 232, 0.24);
}

.about-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 90px;
  padding: 0 0 42px;
  margin: 0 0 34px;
  border-bottom: 1px solid rgba(247, 241, 232, 0.10);
}

.about-timeline-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -43px;
  top: 30px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(199, 54, 87, 0.85);
  border-radius: 999px;
  background: #05070d;
  box-shadow: 0 0 0 4px rgba(199, 54, 87, 0.12);
}

.timeline-marker::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: var(--crimson-light);
}

.timeline-number {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.timeline-title h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.5vw, 42px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: #fff8ed;
}

.about-timeline-item p {
  margin: 24px 0 0;
  color: rgba(247, 241, 232, 0.75);
  font-size: 15.5px;
  line-height: 1.62;
}

/* Bottom CTA row — quote box removed */

.about-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1120px;
  margin: 0 auto;
  padding: 42px 70px 46px;
  border-top: 1px solid rgba(201, 154, 68, 0.20);
  gap: 0;
}

.about-cta-card {
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 0 48px 0 0;
  color: #fff8ed;
}

.about-cta-card + .about-cta-card {
  border-left: 1px solid rgba(247, 241, 232, 0.24);
  padding-left: 58px;
  padding-right: 0;
}

.about-cta-icon {
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.about-cta-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(247, 241, 232, 0.78);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-cta-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.about-cta-arrow {
  color: var(--crimson-light);
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 58px 24px 36px;
  }

  .about-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .about-intro {
    font-size: 15px;
  }

  .about-timeline {
    padding: 22px 24px 44px 62px;
  }

  .about-timeline::before {
    left: 36px;
    top: 34px;
    bottom: 70px;
  }

  .about-timeline-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 34px;
  }

  .timeline-marker {
    left: -34px;
    top: 10px;
  }

  .about-timeline-item p {
    margin-top: 4px;
  }

  .about-cta-row {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .about-cta-card {
    grid-template-columns: 44px 1fr 24px;
    padding: 24px 0;
  }

  .about-cta-card + .about-cta-card {
    border-left: 0;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
    padding-left: 0;
  }

  .about-cta-icon {
    font-size: 32px;
  }

  .about-cta-title {
    font-size: 24px;
  }
}
/* ===== STORY PAGE ===== */

.story-page {
  background: #05070d;
}

.story-page-main {
  background:
    radial-gradient(circle at 72% 18%, rgba(14, 26, 43, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.42) 0%, #05070d 42%, #05070d 100%);
}

/* Hero */

.story-page-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 86px 70px 92px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 13, 0.78) 0%,
      rgba(5, 7, 13, 0.52) 28%,
      rgba(5, 7, 13, 0.18) 54%,
      rgba(5, 7, 13, 0.10) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 7, 13, 0.08) 0%,
      rgba(5, 7, 13, 0.18) 58%,
      #05070d 100%
    ),
    url("../img/kids-group-photo.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.story-page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.story-page-eyebrow {
  margin: 0 0 22px;
  color: var(--crimson-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.story-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6.2vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff8ed;
}

.story-page-accent {
  width: 58px;
  height: 3px;
  margin-top: 34px;
  background: var(--crimson-light);
  border-radius: 999px;
}

/* Intro */

.story-page-intro {
  max-width: 1120px;
  margin: -36px auto 0;
  padding: 0 70px 58px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-page-intro-left {
  max-width: 520px;
}

.story-page-lead {
  margin: 0;
  color: #fff8ed;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.24;
}

.story-page-small-accent {
  width: 48px;
  height: 3px;
  margin: 28px 0 26px;
  background: var(--crimson-light);
  border-radius: 999px;
}

.story-page-intro-left p:not(.story-page-lead) {
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.story-page-collage-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 28px;
  align-items: center;
}

.story-page-collage-placeholder {
  min-height: 260px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  background:
    linear-gradient(135deg, rgba(14, 26, 43, 0.82), rgba(44, 13, 25, 0.62)),
    #0b111b;
  display: grid;
  place-items: center;
  color: rgba(247, 241, 232, 0.54);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-2deg);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.story-page-handwritten {
  color: #fff8ed;
  font-family: "Satisfy", "Brush Script MT", cursive;
  font-size: 34px;
  line-height: 1.05;
  transform: rotate(-4deg);
}

.story-page-handwritten span {
  display: block;
  margin-bottom: 28px;
}

.story-page-handwritten span::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 4px;
  background: var(--crimson-light);
  transform: rotate(-2deg);
}

/* Story body */

.story-page-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 8px 70px 54px;
}

.story-page-section-label p,
.story-page-section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.story-page-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  border-top: 1px solid rgba(247, 241, 232, 0.13);
  padding-top: 26px;
}

.story-page-body-grid p {
  margin: 0;
  color: rgba(247, 241, 232, 0.74);
  font-size: 15.5px;
  line-height: 1.68;
}

.story-page-final-line {
  grid-column: 1 / -1;
  max-width: 760px;
  margin-top: 8px !important;
  color: #fff8ed !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px !important;
  line-height: 1.34 !important;
  font-style: italic;
}

/* Themes */

.story-page-themes {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 70px 46px;
}

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

.story-theme-card {
  min-height: 238px;
  padding: 26px 18px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(14, 26, 43, 0.42), rgba(5, 7, 13, 0.16)),
    rgba(5, 7, 13, 0.42);
  text-align: center;
}

.story-theme-icon {
  margin-bottom: 16px;
  color: var(--crimson-light);
  font-size: 38px;
  line-height: 1;
}

.story-theme-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
  color: #fff8ed;
}

.story-theme-card p {
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 13.5px;
  line-height: 1.45;
}

/* Bottom CTAs — quote box intentionally removed */

.story-page-cta-row {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 70px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 154, 68, 0.18);
  gap: 0;
}

.story-page-cta-card {
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding-right: 54px;
  color: #fff8ed;
}

.story-page-cta-card + .story-page-cta-card {
  border-left: 1px solid rgba(247, 241, 232, 0.22);
  padding-left: 60px;
  padding-right: 0;
}

.story-page-cta-play {
  position: relative;
  width: 56px;
  height: 56px;
  border: 3px solid var(--crimson-light);
  border-radius: 999px;
}

.story-page-cta-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--crimson-light);
}

.story-page-cta-icon {
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.story-page-cta-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.story-page-cta-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.story-page-cta-arrow {
  color: var(--crimson-light);
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 1050px) {
  .story-page-intro,
  .story-page-body-grid {
    grid-template-columns: 1fr;
  }

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

  .story-page-collage-area {
    grid-template-columns: 1fr;
  }

  .story-page-handwritten {
    display: none;
  }
}

@media (max-width: 780px) {
  .story-page-hero {
    min-height: 540px;
    padding: 74px 24px 76px;
    background-position: center center;
  }

  .story-page-intro,
  .story-page-body,
  .story-page-themes,
  .story-page-cta-row {
    padding-left: 24px;
    padding-right: 24px;
  }

  .story-page-intro {
    margin-top: 0;
    padding-top: 42px;
  }

  .story-page-hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .story-page-body-grid {
    gap: 24px;
  }

  .story-page-final-line {
    font-size: 21px !important;
  }

  .story-theme-grid {
    grid-template-columns: 1fr;
  }

  .story-page-cta-row {
    grid-template-columns: 1fr;
  }

  .story-page-cta-card {
    grid-template-columns: 54px 1fr 22px;
    padding: 22px 0;
  }

  .story-page-cta-card + .story-page-cta-card {
    border-left: 0;
    border-top: 1px solid rgba(247, 241, 232, 0.16);
    padding-left: 0;
  }
}
/* ===== FULL GALLERY PAGE ===== */

.gallery-page {
  background:
    radial-gradient(circle at 75% 8%, rgba(14, 26, 43, 0.32), transparent 34%),
    #05070d;
}

.gallery-page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 62px 70px 0;
}

.gallery-page-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 62px;
}

.gallery-page-eyebrow {
  margin: 0 0 22px;
  color: var(--crimson-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-page-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff8ed;
}

.gallery-page-accent {
  width: 56px;
  height: 3px;
  margin: 34px 0 28px;
  background: var(--crimson-light);
  border-radius: 999px;
}

.gallery-page-copy p:not(.gallery-page-eyebrow) {
  max-width: 420px;
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

/* Featured video */

.gallery-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 344px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 12px;
  background: #08101c;
  color: #fff8ed;
  cursor: pointer;
  text-align: left;
}

.gallery-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.62) contrast(1.05) saturate(0.92);
  transform: scale(1.04);
}

.gallery-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.05) 0%, rgba(5, 7, 13, 0.25) 48%, rgba(5, 7, 13, 0.86) 100%),
    radial-gradient(circle at center, rgba(199, 54, 87, 0.15), transparent 44%);
}

.gallery-feature-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 46%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(199, 54, 87, 0.96);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.34);
  box-shadow: 0 0 30px rgba(199, 54, 87, 0.32);
}

.gallery-feature-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 24px solid var(--crimson-light);
}

.gallery-feature-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  z-index: 4;
}

.gallery-feature-info p {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-feature-info h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  color: #fff8ed;
}

.gallery-feature-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  color: rgba(247, 241, 232, 0.86);
  font-size: 13px;
}

.gallery-feature-line span:first-child {
  display: block;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--crimson-light) 0%,
      var(--crimson-light) 24%,
      rgba(201, 154, 68, 0.55) 24%,
      rgba(201, 154, 68, 0.55) 100%
    );
}

/* Filters */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.gallery-filter {
  min-width: 106px;
  min-height: 42px;
  padding: 0 28px;
  border: 1px solid rgba(201, 154, 68, 0.38);
  border-radius: 12px;
  background: rgba(5, 7, 13, 0.18);
  color: rgba(247, 241, 232, 0.78);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-filter.is-active {
  border-color: var(--crimson-light);
  color: var(--crimson-light);
  box-shadow: 0 0 0 1px rgba(199, 54, 87, 0.36);
}

/* Video grid */

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

.gallery-video-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 264px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 8px;
  background: #08101c;
  color: #fff8ed;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.gallery-video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 54, 87, 0.78);
  filter: brightness(1.08);
}

.gallery-video-thumb {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.08) saturate(0.92);
  transform: scale(1.06);
}

.gallery-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.08) 0%, rgba(5, 7, 13, 0.22) 45%, rgba(5, 7, 13, 0.88) 100%),
    radial-gradient(circle at center, rgba(199, 54, 87, 0.16), transparent 42%);
}

.gallery-duration {
  position: absolute;
  top: 13px;
  right: 14px;
  z-index: 3;
  color: rgba(247, 241, 232, 0.92);
  font-size: 13px;
  line-height: 1;
}

.gallery-card-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 45%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(199, 54, 87, 0.96);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.34);
  box-shadow: 0 0 22px rgba(199, 54, 87, 0.28);
}

.gallery-card-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff8ed;
}

.gallery-video-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
}

.gallery-video-info p {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-video-info h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  color: #fff8ed;
}

.gallery-video-info span {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 12px;
  background: var(--crimson-light);
  border-radius: 999px;
}

.gallery-video-card.is-hidden {
  display: none;
}

/* Buttons and update box */

.gallery-view-all-row {
  display: flex;
  justify-content: center;
  margin: 42px 0 48px;
}

.gallery-view-all,
.gallery-update-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 34px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.22);
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-view-all span:last-child,
.gallery-update-button span:last-child {
  color: var(--gold);
  font-size: 16px;
}

.gallery-update-box {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 134px;
  padding: 28px 38px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(14, 26, 43, 0.28), rgba(5, 7, 13, 0.36));
  margin-bottom: 48px;
}

.gallery-bell {
  color: var(--crimson-light);
  font-size: 58px;
  line-height: 1;
  text-align: center;
}

.gallery-update-box h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff8ed;
}

.gallery-update-box p {
  margin: 0;
  color: rgba(247, 241, 232, 0.70);
  font-size: 15px;
  line-height: 1.48;
}

/* CTA row */

.gallery-page-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 154, 68, 0.18);
  padding: 34px 0 46px;
}

.gallery-page-cta-card {
  display: grid;
  grid-template-columns: 60px 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 90px;
  padding-right: 56px;
  color: #fff8ed;
}

.gallery-page-cta-card + .gallery-page-cta-card {
  border-left: 1px solid rgba(247, 241, 232, 0.22);
  padding-left: 60px;
  padding-right: 0;
}

.gallery-page-cta-icon {
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.gallery-page-cta-kicker {
  display: block;
  margin-bottom: 9px;
  color: rgba(247, 241, 232, 0.74);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-page-cta-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.gallery-page-cta-arrow {
  color: var(--crimson-light);
  font-size: 24px;
}

/* Modal */

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.88);
  backdrop-filter: blur(10px);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 8px;
  background: #05070d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.gallery-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 241, 232, 0.35);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.72);
  color: #fff8ed;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gallery-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.gallery-modal-open {
  overflow: hidden;
}

@media (max-width: 1000px) {
  .gallery-page-hero,
  .gallery-page-grid,
  .gallery-update-box,
  .gallery-page-cta-row {
    grid-template-columns: 1fr;
  }

  .gallery-page-cta-card + .gallery-page-cta-card {
    border-left: 0;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
    padding-left: 0;
  }

  .gallery-update-button {
    width: fit-content;
  }
}

@media (max-width: 700px) {
  .gallery-page-main {
    padding: 46px 24px 0;
  }

  .gallery-page-copy h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .gallery-feature-card {
    min-height: 260px;
  }

  .gallery-video-card {
    min-height: 250px;
  }

  .gallery-update-box {
    padding: 26px 22px;
  }

  .gallery-page-cta-card {
    grid-template-columns: 44px 1fr 22px;
    padding: 24px 0;
  }
}
/* ===== FULL SOUNDTRACK PAGE ===== */

.soundtrack-page {
  background:
    radial-gradient(circle at 78% 9%, rgba(14, 26, 43, 0.32), transparent 34%),
    #05070d;
}

.soundtrack-page-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 70px 0;
}

.soundtrack-page-hero {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 58px;
  align-items: center;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(201, 154, 68, 0.18);
}

.soundtrack-page-eyebrow {
  margin: 0 0 22px;
  color: var(--crimson-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
}

.soundtrack-page-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 5.6vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff8ed;
}

.soundtrack-page-accent {
  width: 56px;
  height: 3px;
  margin: 34px 0 28px;
  background: var(--crimson-light);
  border-radius: 999px;
}

.soundtrack-page-copy p:not(.soundtrack-page-eyebrow) {
  max-width: 430px;
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

/* Featured track */

.featured-track-card {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 34px;
  align-items: center;
  min-height: 354px;
  padding: 34px 32px 34px 42px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 20%, rgba(199, 54, 87, 0.26), transparent 38%),
    linear-gradient(135deg, rgba(98, 21, 40, 0.70), rgba(5, 7, 13, 0.72)),
    #0b111b;
}

.featured-track-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-track-main h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.05;
  color: #fff8ed;
}

.featured-track-artist {
  margin: 0 0 18px;
  color: rgba(247, 241, 232, 0.78);
  font-size: 16px;
}

.featured-track-description {
  margin: 0 0 20px;
  color: rgba(247, 241, 232, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.featured-wave,
.released-wave {
  height: 34px;
  opacity: 0.82;
  background:
    linear-gradient(
      90deg,
      var(--crimson-light) 0 8%,
      rgba(247, 241, 232, 0.32) 8% 13%,
      var(--crimson-light) 13% 20%,
      rgba(247, 241, 232, 0.32) 20% 28%,
      var(--crimson-light) 28% 36%,
      rgba(247, 241, 232, 0.32) 36% 44%,
      var(--crimson-light) 44% 50%,
      rgba(247, 241, 232, 0.32) 50% 100%
    );
  clip-path: polygon(
    0% 55%, 2% 35%, 4% 65%, 6% 28%, 8% 72%, 10% 42%, 12% 60%,
    14% 20%, 16% 80%, 18% 44%, 20% 60%, 22% 28%, 24% 74%,
    26% 36%, 28% 62%, 30% 20%, 32% 82%, 34% 44%, 36% 60%,
    38% 34%, 40% 70%, 42% 40%, 44% 62%, 46% 28%, 48% 74%,
    50% 45%, 52% 56%, 54% 36%, 56% 64%, 58% 46%, 60% 58%,
    62% 40%, 64% 62%, 66% 45%, 68% 56%, 70% 48%, 72% 53%,
    74% 47%, 76% 52%, 78% 48%, 80% 52%, 82% 49%, 84% 51%,
    100% 50%
  );
}

.featured-progress {
  height: 4px;
  margin: 22px 0 8px;
  border-radius: 999px;
  background: rgba(247, 241, 232, 0.18);
}

.featured-progress-fill {
  width: 47%;
  height: 100%;
  border-radius: inherit;
  background: var(--crimson-light);
  position: relative;
}

.featured-progress-fill::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #ff84a1;
}

.featured-time-row {
  display: flex;
  justify-content: space-between;
  color: rgba(247, 241, 232, 0.62);
  font-size: 12px;
}

.featured-controls {
  display: grid;
  grid-template-columns: 1fr 42px 76px 42px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.featured-heart,
.featured-list {
  color: var(--crimson-light);
  font-size: 28px;
}

.featured-list {
  justify-self: end;
  color: #fff8ed;
}

.featured-control-icon {
  color: #fff8ed;
  font-size: 48px;
  line-height: 1;
}

.featured-play {
  position: relative;
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 999px;
  background: var(--crimson-light);
  box-shadow: 0 0 28px rgba(199, 54, 87, 0.48);
}

.featured-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #fff8ed;
}

.featured-cover {
  aspect-ratio: 1;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 10px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.12), rgba(5, 7, 13, 0.70)),
    radial-gradient(circle at 55% 22%, rgba(247, 241, 232, 0.25), transparent 16%),
    linear-gradient(135deg, #182536, #06070c 70%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
}

.featured-cover-inner {
  text-align: center;
}

.featured-cover span {
  display: block;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-cover small {
  display: block;
  margin-top: 5px;
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

/* Shared section headers */

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading-row h2 {
  margin: 0;
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.section-heading-row a {
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading-row a span:last-child {
  color: var(--crimson-light);
  margin-left: 8px;
}

/* Released now */

.released-now-section,
.soundtrack-videos-section,
.coming-soon-section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(201, 154, 68, 0.18);
}

.released-track-list {
  display: grid;
  gap: 12px;
}

.released-track {
  min-height: 78px;
  display: grid;
  grid-template-columns: 38px 58px 220px 1fr 58px 44px 108px 36px;
  gap: 18px;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(201, 154, 68, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(14, 26, 43, 0.45), rgba(5, 7, 13, 0.34));
}

.released-play {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(199, 54, 87, 0.85);
  border-radius: 999px;
}

.released-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--crimson-light);
}

.released-cover {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(201, 154, 68, 0.34);
  border-radius: 4px;
  background:
    radial-gradient(circle at 60% 20%, rgba(247, 241, 232, 0.24), transparent 18%),
    linear-gradient(135deg, #192438, #06070d);
  display: grid;
  place-items: center;
}

.released-cover span {
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.released-info h3 {
  margin: 0 0 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff8ed;
}

.released-info p {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
}

.released-wave {
  height: 32px;
}

.released-duration {
  color: rgba(247, 241, 232, 0.82);
  font-size: 14px;
}

.released-heart {
  color: rgba(247, 241, 232, 0.72);
  font-size: 26px;
}

.released-listen {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(201, 154, 68, 0.68);
  border-radius: 5px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.released-more {
  color: rgba(247, 241, 232, 0.72);
}

/* Music videos */

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

.soundtrack-video-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 8px;
  background: #08101c;
  color: #fff8ed;
  text-align: left;
  cursor: pointer;
}

.soundtrack-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.56) contrast(1.08) saturate(0.92);
}

.soundtrack-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.04), rgba(5, 7, 13, 0.82)),
    radial-gradient(circle at center, rgba(199, 54, 87, 0.14), transparent 44%);
}

.soundtrack-video-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 48%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(247, 241, 232, 0.9);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.24);
}

.soundtrack-video-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff8ed;
}

.soundtrack-video-info {
  position: absolute;
  z-index: 4;
  left: 18px;
  bottom: 18px;
}

.soundtrack-video-info h3 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff8ed;
}

.soundtrack-video-info p {
  margin: 0;
  color: rgba(247, 241, 232, 0.74);
  font-size: 13px;
}

.soundtrack-video-duration {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 18px;
  color: rgba(247, 241, 232, 0.86);
  font-size: 13px;
}

/* Coming soon */

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

.coming-soon-card {
  min-height: 220px;
  padding: 26px 22px 22px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 8px;
  background:
    radial-gradient(circle at center 34%, rgba(199, 54, 87, 0.28), transparent 28%),
    linear-gradient(180deg, rgba(14, 26, 43, 0.44), rgba(5, 7, 13, 0.36));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.coming-soon-icon {
  margin: auto auto 42px;
  color: var(--crimson-light);
  font-size: 34px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(199, 54, 87, 0.65);
}

.coming-soon-card h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff8ed;
}

.coming-soon-card p,
.coming-soon-card span {
  margin: 0 0 6px;
  color: rgba(247, 241, 232, 0.70);
  font-size: 13px;
}

.coming-soon-card span {
  color: var(--gold);
}

/* Notify box */

.soundtrack-notify-box {
  display: grid;
  grid-template-columns: 90px 1fr 470px;
  align-items: center;
  gap: 34px;
  min-height: 134px;
  margin: 28px 0 34px;
  padding: 28px 34px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(98, 21, 40, 0.62), rgba(5, 7, 13, 0.36));
}

.notify-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(199, 54, 87, 0.9);
  border-radius: 999px;
  color: var(--crimson-light);
  font-size: 30px;
}

.soundtrack-notify-box h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff8ed;
}

.soundtrack-notify-box p {
  margin: 0;
  color: rgba(247, 241, 232, 0.70);
  font-size: 14px;
}

.soundtrack-notify-form {
  display: flex;
  min-height: 54px;
}

.soundtrack-notify-form input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid rgba(201, 154, 68, 0.35);
  background: rgba(5, 7, 13, 0.48);
  color: #fff8ed;
}

.soundtrack-notify-form button {
  border: 0;
  padding: 0 32px;
  background: var(--crimson-light);
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Bottom CTAs */

.soundtrack-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 154, 68, 0.18);
  padding: 34px 0 46px;
}

.soundtrack-cta-card {
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding-right: 54px;
  color: #fff8ed;
}

.soundtrack-cta-card + .soundtrack-cta-card {
  border-left: 1px solid rgba(247, 241, 232, 0.22);
  padding-left: 60px;
  padding-right: 0;
}

.soundtrack-cta-play {
  position: relative;
  width: 56px;
  height: 56px;
  border: 3px solid var(--crimson-light);
  border-radius: 999px;
}

.soundtrack-cta-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-40%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--crimson-light);
}

.soundtrack-cta-icon {
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.soundtrack-cta-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

.soundtrack-cta-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.soundtrack-cta-arrow {
  color: var(--crimson-light);
  font-size: 24px;
}

/* YouTube modal */

.soundtrack-video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.soundtrack-video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.soundtrack-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.88);
  backdrop-filter: blur(10px);
}

.soundtrack-video-dialog {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  border: 1px solid rgba(201, 154, 68, 0.35);
  border-radius: 8px;
  background: #05070d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.soundtrack-video-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 241, 232, 0.35);
  border-radius: 999px;
  background: rgba(5, 7, 13, 0.72);
  color: #fff8ed;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.soundtrack-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}

.soundtrack-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

body.soundtrack-modal-open {
  overflow: hidden;
}

@media (max-width: 1000px) {
  .soundtrack-page-hero,
  .soundtrack-notify-box,
  .soundtrack-cta-row {
    grid-template-columns: 1fr;
  }

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

  .featured-cover {
    max-width: 220px;
  }

  .released-track {
    grid-template-columns: 34px 54px 1fr 70px;
  }

  .released-wave,
  .released-heart,
  .released-more {
    display: none;
  }

  .released-listen {
    grid-column: 4;
  }

  .coming-soon-grid,
  .soundtrack-video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .soundtrack-cta-card + .soundtrack-cta-card {
    border-left: 0;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .soundtrack-page-main {
    padding: 46px 24px 0;
  }

  .soundtrack-page-copy h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .coming-soon-grid,
  .soundtrack-video-grid {
    grid-template-columns: 1fr;
  }

  .released-track {
    grid-template-columns: 32px 48px 1fr;
  }

  .released-duration,
  .released-listen {
    grid-column: 3;
  }

  .released-listen {
    justify-self: start;
    margin-top: 8px;
  }

  .soundtrack-notify-form {
    flex-direction: column;
  }

  .soundtrack-notify-form input,
  .soundtrack-notify-form button {
    min-height: 52px;
  }

  .soundtrack-cta-card {
    grid-template-columns: 54px 1fr 22px;
    padding: 24px 0;
  }
}
/* ===== SHOP PAGE ===== */

.shop-page {
  background:
    radial-gradient(circle at 50% 14%, rgba(14, 26, 43, 0.24), transparent 32%),
    radial-gradient(circle at 50% 45%, rgba(199, 54, 87, 0.035), transparent 34%),
    #05070d;
}

.shop-page .nav a.active {
  position: relative;
  color: var(--gold);
}

.shop-page .nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  width: 42px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
}

.shop-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 86px 70px 0;
}

.shop-hero {
  text-align: center;
}

.shop-eyebrow {
  margin: 0 0 28px;
  color: var(--crimson-light);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1;
  text-transform: uppercase;
}

.shop-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 7.4vw, 98px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: #fff8ed;
}

.shop-pink-line {
  width: 58px;
  height: 3px;
  margin: 38px auto 30px;
  background: var(--crimson-light);
  border-radius: 999px;
}

.shop-intro {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(247, 241, 232, 0.78);
  font-size: 17px;
  line-height: 1.62;
}

.shop-coming-soon {
  max-width: 680px;
  margin: 52px auto 54px;
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  align-items: center;
  gap: 20px;
}

.shop-coming-soon .shop-line {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(201, 154, 68, 0.56),
      transparent
    );
}

.shop-star {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.shop-coming-soon strong {
  grid-column: 1 / -1;
  margin-top: -4px;
  color: var(--gold);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.48em;
  line-height: 1;
  text-transform: uppercase;
}

/* Signup card */

.shop-signup-card {
  max-width: 720px;
  margin: 0 auto 66px;
  padding: 40px 48px 34px;
  border: 1px solid rgba(201, 154, 68, 0.30);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(14, 26, 43, 0.30), transparent 38%),
    linear-gradient(180deg, rgba(14, 26, 43, 0.20), rgba(5, 7, 13, 0.32));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.shop-envelope {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
}

.shop-envelope svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--crimson-light);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-signup-card h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff8ed;
}

.shop-signup-card p {
  margin: 0;
  color: rgba(247, 241, 232, 0.72);
  font-size: 16px;
  line-height: 1.56;
}

.shop-signup-form {
  max-width: 620px;
  margin: 34px auto 22px;
  min-height: 60px;
  display: flex;
}

.shop-signup-form input {
  flex: 1;
  min-width: 0;
  padding: 0 22px;
  border: 1px solid rgba(201, 154, 68, 0.28);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(3, 5, 10, 0.48);
  color: #fff8ed;
  font-size: 15px;
}

.shop-signup-form input::placeholder {
  color: rgba(247, 241, 232, 0.55);
}

.shop-signup-form button {
  min-width: 176px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(135deg, var(--crimson-light), #9f2140);
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-privacy-note {
  color: rgba(247, 241, 232, 0.52) !important;
  font-size: 13px !important;
}

/* Category row */

.shop-category-row {
  max-width: 860px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.shop-category {
  min-height: 118px;
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
  position: relative;
}

.shop-category + .shop-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(247, 241, 232, 0.24);
}

.shop-category-icon {
  width: 56px;
  height: 56px;
}

.shop-category-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-category h2 {
  margin: 0;
  color: #fff8ed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Bottom CTA row */

.shop-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 154, 68, 0.18);
  padding: 34px 0 46px;
}

.shop-cta-card {
  display: grid;
  grid-template-columns: 62px 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding-right: 54px;
  color: #fff8ed;
}

.shop-cta-card + .shop-cta-card {
  border-left: 1px solid rgba(247, 241, 232, 0.22);
  padding-left: 60px;
  padding-right: 0;
}

.shop-cta-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

.shop-cta-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-cta-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(247, 241, 232, 0.74);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.shop-cta-title {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
  color: #fff8ed;
}

.shop-cta-arrow {
  color: var(--crimson-light);
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 900px) {
  .shop-main {
    padding: 64px 24px 0;
  }

  .shop-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .shop-signup-card {
    padding: 34px 22px 30px;
  }

  .shop-signup-form {
    flex-direction: column;
  }

  .shop-signup-form input,
  .shop-signup-form button {
    min-height: 56px;
    border-radius: 8px;
    border: 1px solid rgba(201, 154, 68, 0.28);
  }

  .shop-signup-form button {
    margin-top: 12px;
  }

  .shop-category-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .shop-category:nth-child(3)::before {
    display: none;
  }

  .shop-cta-row {
    grid-template-columns: 1fr;
  }

  .shop-cta-card {
    grid-template-columns: 54px 1fr 22px;
    padding: 24px 0;
  }

  .shop-cta-card + .shop-cta-card {
    border-left: 0;
    border-top: 1px solid rgba(247, 241, 232, 0.18);
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .shop-category-row {
    grid-template-columns: 1fr;
  }

  .shop-category + .shop-category::before {
    display: none;
  }
}
/* CONTACT PAGE */
.contact-page {
  background:
    linear-gradient(180deg, rgba(10, 14, 28, 0.95), rgba(5, 8, 18, 1)),
    radial-gradient(circle at top, rgba(26, 40, 71, 0.35), transparent 60%);
  color: #f5efe4;
}

.contact-main {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 72px;
}

.contact-hero {
  margin-bottom: 38px;
}

.section-eyebrow {
  color: #ff4d7a;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 18px;
}

.contact-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 6vw, 5.6rem);
  line-height: 1.04;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
}

.contact-accent-line {
  width: 52px;
  height: 4px;
  background: #ff4d7a;
  margin-bottom: 22px;
}

.contact-intro {
  color: #d7d0c3;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 640px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 34px 0 24px;
}

.contact-card {
  border: 1px solid rgba(201, 155, 73, 0.28);
  border-radius: 14px;
  padding: 28px 26px 24px;
  background: rgba(8, 13, 28, 0.46);
  min-height: 278px;
}

.contact-card-icon {
  color: #ff4d7a;
  font-size: 2rem;
  margin-bottom: 18px;
}

.contact-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  line-height: 1.02;
  margin: 0 0 16px;
}

.contact-card p {
  color: #d7d0c3;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 24px;
}

.contact-card a {
  color: #d8a24c;
  font-weight: 700;
  text-decoration: none;
}

.contact-card a span {
  margin-left: 8px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 0;
  border: 1px solid rgba(201, 155, 73, 0.28);
  border-radius: 14px;
  background: rgba(8, 13, 28, 0.46);
  overflow: hidden;
  margin: 20px 0 16px;
}

.contact-form-wrap {
  padding: 34px 34px 30px;
}

.contact-form-wrap h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 16px;
}

.contact-form-divider {
  width: 100%;
  height: 1px;
  background: rgba(201, 155, 73, 0.22);
  margin-bottom: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: #d7d0c3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 10px;
}

.form-group label span {
  color: #ff4d7a;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input {
  width: 100%;
  background: rgba(5, 8, 18, 0.9);
  border: 1px solid rgba(201, 155, 73, 0.22);
  border-radius: 6px;
  color: #f5efe4;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.char-count {
  color: #a7a093;
  font-size: 0.85rem;
  text-align: right;
  margin-top: 8px;
}

.form-bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.gold-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid #d8a24c;
  border-radius: 999px;
  background: transparent;
  color: #d8a24c;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  cursor: pointer;
}

.privacy-text {
  color: #bdb6aa;
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact-sidebar {
  border-left: 1px solid rgba(201, 155, 73, 0.22);
  padding: 26px 32px 28px;
}

.sidebar-block {
  padding: 2px 0;
}

.sidebar-kicker {
  color: #d7d0c3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 10px;
}

.contact-sidebar h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.08;
  margin: 0 0 12px;
}

.contact-sidebar p {
  color: #d7d0c3;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}

.sidebar-divider {
  height: 1px;
  background: rgba(201, 155, 73, 0.22);
  margin: 16px 0 20px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.social-row {
  display: flex;
  gap: 18px;
  margin: 14px 0 12px;
}

.social-row a {
  color: #ff4d7a;
  font-size: 1.8rem;
  text-decoration: none;
  line-height: 1;
}

.contact-email {
  color: #d8a24c;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-quote-box {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(201, 155, 73, 0.28);
  border-radius: 14px;
  padding: 26px 28px;
  background: rgba(8, 13, 28, 0.46);
  margin-bottom: 28px;
}

.quote-mark {
  color: #ff4d7a;
  font-size: 5rem;
  line-height: 1;
  transform: translateY(10px);
}

.contact-quote-box p {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
}

.contact-quote-box span {
  color: #d8a24c;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.bottom-link-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 155, 73, 0.22);
  padding-top: 26px;
  margin-top: 14px;
}

.bottom-link-card {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #f5efe4;
  padding: 14px 22px;
}

.bottom-link-card:first-child {
  border-right: 1px solid rgba(201, 155, 73, 0.22);
}

.bottom-link-icon {
  color: #d8a24c;
  font-size: 2.4rem;
  line-height: 1;
}

.bottom-link-card p {
  color: #d7d0c3;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin: 0 0 6px;
}

.bottom-link-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}

.bottom-link-card h4 span {
  color: #ff4d7a;
  margin-left: 8px;
}

.contact-page .main-nav a.active {
  color: #d8a24c;
  position: relative;
}

.contact-page .main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: #d8a24c;
}

@media (max-width: 1100px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-sidebar {
    border-left: none;
    border-top: 1px solid rgba(201, 155, 73, 0.22);
  }
}

@media (max-width: 768px) {
  .contact-main {
    width: min(100% - 32px, 1180px);
  }

  .form-grid,
  .contact-cards,
  .bottom-link-row,
  .contact-quote-box {
    grid-template-columns: 1fr;
  }

  .form-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-link-card:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(201, 155, 73, 0.22);
  }

  .contact-quote-box {
    text-align: center;
  }

  .contact-quote-box span {
    justify-self: center;
  }
}
/* ===== HOMEPAGE HEADER BRAND LOCKUP + SOCIALS ===== */

.home-header {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  column-gap: 28px;
  padding: 18px 48px;
}

.header-brand-lockup {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
}

.header-brand-lockup .logo.logo-hno {
  flex: 0 0 auto;
}

.brand-divider {
  width: 1px;
  height: 54px;
  background: rgba(247, 241, 232, 0.42);
  box-shadow: 0 0 8px rgba(247, 241, 232, 0.08);
}

.production-name {
  color: rgba(247, 241, 232, 0.76);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-header .nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  white-space: nowrap;
}

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

.header-socials a {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.92;
  transition: opacity 160ms ease, transform 160ms ease;
}

.header-socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-socials svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-socials a[aria-label="YouTube"] svg path,
.header-socials a[aria-label="Facebook"] svg path {
  fill: currentColor;
  stroke: none;
}

.header-socials a[aria-label="YouTube"] svg rect,
.header-socials a[aria-label="Facebook"] svg circle {
  fill: none;
  stroke: currentColor;
}

/* Center the hero eyebrow over the tagline/button/release stack */
.hero.hero-with-photo .hero-copy > .eyebrow {
  width: 430px;
  max-width: 100%;
  margin-left: 44px;
  margin-bottom: 20px;
  text-align: center;
}

/* Keep mobile/tablet sane */
@media (max-width: 1180px) {
  .home-header {
    grid-template-columns: auto 1fr auto;
    column-gap: 22px;
  }

  .home-header .nav {
    gap: 20px;
    font-size: 11px;
  }

  .production-name {
    display: none;
  }

  .brand-divider {
    display: none;
  }
}

@media (max-width: 900px) {
  .home-header {
    display: flex;
    justify-content: space-between;
    padding: 18px 22px;
  }

  .header-socials {
    gap: 12px;
  }

  .header-socials a {
    width: 24px;
    height: 24px;
  }

  .header-socials svg {
    width: 22px;
    height: 22px;
  }

  .hero.hero-with-photo .hero-copy > .eyebrow {
    width: 340px;
    margin-left: 0;
    text-align: center;
  }
}
/* ===== CONTACT PAGE FINAL REFINEMENT ===== */

/* Fix contact page proportions so iPad/laptop widths stay like the reference */
.contact-main {
  width: min(1180px, calc(100% - 120px));
  padding: 54px 0 72px;
}

.contact-hero h1 {
  max-width: 980px;
  font-size: clamp(4.2rem, 5.35vw, 5.55rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.contact-intro {
  max-width: 600px;
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Keep the four contact cards in one row until true mobile */
.contact-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 255px;
  padding: 28px 26px 24px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(14, 26, 43, 0.22), rgba(5, 7, 13, 0.34));
}

.contact-card h3 {
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.04;
}

.contact-card p {
  font-size: 0.96rem;
  line-height: 1.46;
}

/* Replace emoji look with clean line graphics */
.contact-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--crimson-light);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card-icon text {
  fill: currentColor;
  stroke: none;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Keep form/sidebar side-by-side like the reference */
.contact-panel {
  grid-template-columns: 1.66fr 1fr;
  border-radius: 7px;
}

.contact-form-wrap {
  padding: 32px 34px 30px;
}

.contact-form-wrap h2 {
  font-size: 2.75rem;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input {
  border-radius: 4px;
  background: rgba(5, 8, 18, 0.70);
}

.form-bottom {
  align-items: center;
}

.privacy-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.privacy-lock {
  width: 22px;
  height: 22px;
  color: rgba(247, 241, 232, 0.78);
  flex: 0 0 auto;
}

.privacy-lock svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Sidebar spacing and newsletter button like the reference */
.contact-sidebar {
  padding: 28px 32px;
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form .gold-outline-btn {
  width: 100%;
  min-height: 42px;
}

/* Social icons: IG, Facebook, TikTok, Email */
.social-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 14px 0 12px;
}

.social-row a {
  width: 26px;
  height: 26px;
  color: var(--crimson-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-row svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-row a[aria-label="Facebook"] svg path {
  fill: currentColor;
  stroke: none;
}

.social-row a[aria-label="Facebook"] svg circle {
  fill: none;
  stroke: currentColor;
}

/* Quote box: keep the box, remove the text/movie name */
.contact-quote-empty {
  grid-template-columns: 70px 1fr;
  min-height: 92px;
  padding: 22px 28px;
}

.contact-quote-empty p,
.contact-quote-empty span {
  display: none !important;
}

.contact-quote-empty .quote-mark {
  font-size: 4.4rem;
  transform: translateY(8px);
}

/* Bottom row polish */
.bottom-link-row {
  margin-top: 28px;
  padding-top: 32px;
}

.bottom-link-card h4 {
  font-size: 1.9rem;
}

/* The existing 1100px media rule stacks too early, so override it */
@media (min-width: 901px) {
  .contact-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .contact-panel {
    grid-template-columns: 1.66fr 1fr !important;
  }

  .contact-sidebar {
    border-left: 1px solid rgba(201, 155, 73, 0.22) !important;
    border-top: 0 !important;
  }
}

/* Only stack on actual smaller screens */
@media (max-width: 900px) {
  .contact-main {
    width: min(100% - 32px, 1180px);
    padding-top: 46px;
  }

  .contact-hero h1 {
    font-size: clamp(3.1rem, 11vw, 4.8rem);
  }

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

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

  .contact-sidebar {
    border-left: 0;
    border-top: 1px solid rgba(201, 155, 73, 0.22);
  }
}

@media (max-width: 620px) {
  .contact-cards,
  .form-grid,
  .bottom-link-row {
    grid-template-columns: 1fr;
  }
}
.contact-quote-box {
  grid-template-columns: 1fr !important;
}

.contact-quote-box .quote-mark,
.contact-quote-box span {
  display: none !important;
}
