/* =====================================================================
   REALLY GOOD HOME ENTERTAINMENT - style.css
   Dark ember theme: deep ember-black + ivory + ember-coral
   Cinema-night palette for a Moab home entertainment company
   ===================================================================== */

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

:root {
  --bg: #16100F;
  --panel: #221614;
  --ember: #B2503A;
  --ember-deep: #8E3B2A;
  --hair: #6F372A;
  --pale: #E3B3A2;
  --ivory: #F4EFEA;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ivory);
  background-color: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--ember);
  text-decoration: none;
}

a:hover {
  color: var(--pale);
}

ul {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background: var(--ember);
  color: var(--ivory);
}

/* =====================================================================
   TICKET NAVIGATION (.ticket-nav)
   Slim sticky top strip, ember bottom border, ticket-glyph links
   ===================================================================== */

.ticket-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: var(--bg);
  border-bottom: 1px solid var(--ember);
  transition: box-shadow 0.3s ease;
}

.ticket-nav.is-scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.nav-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-square {
  width: 22px;
  height: 22px;
  background: var(--ember);
  flex-shrink: 0;
  border-radius: 2px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-word {
  color: var(--ivory);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 15px;
  text-transform: uppercase;
}

.brand-caption {
  color: var(--ember);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ember);
  border-radius: 2px;
  padding: 10px 9px;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ivory);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-link:hover {
  color: var(--pale);
  background-color: var(--panel);
}

.nav-link.is-active {
  color: var(--ember);
}

/* Ticket glyph: small rectangle with serration notches and perforations */
.ticket-glyph {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 13px;
  border: 1.5px solid var(--ember);
  border-radius: 2px;
  flex-shrink: 0;
}

.ticket-glyph::before,
.ticket-glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--ember);
}

.ticket-glyph::before {
  left: 4px;
}

.ticket-glyph::after {
  right: 4px;
}

.ticket-notch {
  position: absolute;
  right: -1.5px;
  top: 1px;
  width: 3px;
  height: 4px;
  background: var(--bg);
  box-shadow: 0 6px 0 var(--bg);
}

.nav-link.is-active .ticket-glyph {
  background: var(--ember);
  border-color: var(--ember);
}

.nav-link.is-active .ticket-glyph::before,
.nav-link.is-active .ticket-glyph::after {
  background: var(--bg);
}

.nav-link.is-active .ticket-notch {
  background: var(--bg);
  box-shadow: 0 6px 0 var(--bg);
}

.ticket-glyph--solid {
  background: var(--ember);
  border-color: var(--ember);
}

.ticket-glyph--solid::before,
.ticket-glyph--solid::after {
  background: var(--bg);
}

.ticket-glyph--solid .ticket-notch {
  background: var(--bg);
  box-shadow: 0 6px 0 var(--bg);
}

/* =====================================================================
   MARQUEE HERO (.marquee-hero)
   ===================================================================== */

.marquee-hero {
  background-color: var(--bg);
  padding: 84px 0 0;
  border-bottom: 1px solid var(--hair);
}

.hero-block {
  padding-bottom: 56px;
}

.eyebrow-chip {
  display: inline-block;
  background: var(--ember);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 26px;
}

.hero-title {
  color: var(--ivory);
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 900px;
  font-weight: 800;
  margin-bottom: 26px;
}

.hero-sub {
  color: var(--ivory);
  font-size: 18px;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background: var(--ember);
  color: var(--ivory);
  border: 1.5px solid var(--ember);
}

.btn-primary:hover {
  background: var(--ember-deep);
  border-color: var(--ember-deep);
  color: var(--ivory);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid var(--ember);
}

.btn-outline:hover {
  background: var(--ember);
  color: var(--ivory);
}

.btn-light {
  background: var(--ivory);
  color: var(--ember);
  border: 1.5px solid var(--ivory);
}

.btn-light:hover {
  background: var(--pale);
  border-color: var(--pale);
  color: var(--ember);
}

/* Marquee screen graphic */
.marquee-stage {
  position: relative;
  padding: 0 24px 40px;
}

.marquee-stage::before,
.marquee-stage::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 1.5px;
  height: 150px;
  background: var(--ember);
  transform-origin: top center;
}

.marquee-stage::before {
  left: 6%;
  transform: rotate(-22deg);
}

.marquee-stage::after {
  right: 6%;
  transform: rotate(22deg);
}

.screen-frame {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  height: 150px;
  border: 1.5px solid var(--ember);
  border-radius: 20px 20px 46% 46% / 20px 20px 30px 30px;
  background: var(--panel);
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 28px solid var(--ember);
  transform: translate(-50%, -50%);
}

.marquee-baseline {
  position: relative;
  max-width: 980px;
  margin: 34px auto 0;
  padding-top: 30px;
}

.marquee-baseline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ember);
}

.marquee-baseline ul {
  display: flex;
  justify-content: space-between;
}

.marquee-baseline li {
  color: var(--pale);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
}

.marquee-baseline li::before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background: var(--ember);
  margin: 0 auto 12px;
}

/* =====================================================================
   TICKET ROWS (.ticket-rows-section)
   Four full-width rows separated by thin ember hairlines
   ===================================================================== */

.ticket-rows-section {
  background-color: var(--bg);
  padding: 88px 0 76px;
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.eyebrow {
  display: block;
  color: var(--pale);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  color: var(--ivory);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.section-lead {
  color: var(--ivory);
  font-size: 17px;
  max-width: 720px;
}

.ticket-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 34px 4px;
  border-bottom: 1px solid var(--hair);
}

.ticket-row-body {
  flex: 1 1 auto;
}

.ticket-row-title {
  color: var(--ivory);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.ticket-row-body p {
  color: var(--ivory);
  font-size: 16px;
  max-width: 780px;
}

.row-chip {
  flex-shrink: 0;
  background: var(--ember);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  margin-top: 6px;
  white-space: nowrap;
}

/* =====================================================================
   SEAT STRIP (.seat-strip-section)
   Horizontal strip of four compact seat tiles
   ===================================================================== */

.seat-strip-section {
  background-color: var(--panel);
  padding: 88px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.seat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.seat-tile {
  text-align: center;
  padding: 34px 18px 30px;
  border: 1px solid var(--hair);
  background-color: var(--bg);
  border-radius: 4px;
}

.seat-tile:nth-child(3) {
  border-color: var(--ember);
}

/* Cinema seat shape: rounded rectangle with a taller back */
.seat-shape {
  position: relative;
  width: 46px;
  height: 26px;
  border: 1.5px solid var(--ember);
  border-radius: 7px 7px 3px 3px;
  margin: 0 auto 22px;
}

.seat-shape::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: -10px;
  height: 13px;
  border: 1.5px solid var(--ember);
  border-radius: 4px 4px 0 0;
  background: var(--bg);
}

.seat-shape::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  background: var(--ember);
}

.seat-tile:nth-child(3) .seat-shape {
  background: var(--ember);
  border-color: var(--ember);
}

.seat-tile:nth-child(3) .seat-shape::before {
  background: var(--ember);
  border-color: var(--ember);
}

.seat-tile:nth-child(3) .seat-shape::after {
  background: var(--ember-deep);
}

.seat-name {
  color: var(--ivory);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.seat-note {
  color: var(--ivory);
  font-size: 14px;
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* =====================================================================
   ENJOY ROWS (.enjoy-rows-section)
   Three full-width rows with play-circle marks
   ===================================================================== */

.enjoy-rows-section {
  background-color: var(--bg);
  padding: 88px 0 76px;
}

.enjoy-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 32px 4px;
  border-bottom: 1px solid var(--hair);
}

.play-circle {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--ember);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

.play-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--bg);
  transform: translate(-34%, -50%);
}

.enjoy-row-title {
  color: var(--ivory);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}

.enjoy-row-body p {
  color: var(--ivory);
  font-size: 16px;
  max-width: 780px;
}

/* =====================================================================
   CTA BAND (.cta-band)
   Full-width solid ember band with ivory text
   ===================================================================== */

.cta-band {
  background-color: var(--ember);
  padding: 88px 24px;
  text-align: center;
}

.cta-band .eyebrow {
  color: var(--ivory);
}

.cta-title {
  color: var(--ivory);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: 720px;
  margin: 0 auto 18px;
}

.cta-text {
  color: var(--ivory);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 34px;
}

/* =====================================================================
   MARQUEE FOOTER (.marquee-footer)
   ===================================================================== */

.marquee-footer {
  background-color: var(--bg);
  border-top: 1px solid var(--ember);
  padding: 46px 0 0;
}

.footer-row-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 38px;
}

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

.footer-links a {
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--pale);
}

.footer-contact {
  color: var(--pale);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.footer-contact a {
  color: var(--pale);
}

.footer-contact a:hover {
  color: var(--ivory);
}

.footer-row-2 {
  border-top: 1px solid var(--hair);
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.footer-motif {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-legal {
  color: var(--ivory);
  font-size: 12px;
  text-align: center;
}

.footer-legal a {
  color: var(--ember);
}

.footer-legal a:hover {
  color: var(--pale);
}

/* =====================================================================
   SECONDARY PAGES (services / contact)
   ===================================================================== */

.page-hero {
  background-color: var(--bg);
  padding: 84px 0 64px;
  border-bottom: 1px solid var(--hair);
}

.page-hero h1 {
  color: var(--ivory);
  font-size: 48px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.01em;
  max-width: 860px;
  margin-bottom: 22px;
}

.page-hero .hero-sub {
  max-width: 760px;
}

/* Service detail rows on services page */
.service-block {
  padding: 60px 0 44px;
  border-bottom: 1px solid var(--hair);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.service-num {
  color: var(--pale);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-title {
  color: var(--ivory);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.service-block p {
  color: var(--ivory);
  font-size: 16px;
  max-width: 840px;
  margin-bottom: 14px;
}

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

.process-step {
  border: 1px solid var(--hair);
  background-color: var(--panel);
  border-radius: 4px;
  padding: 22px 18px;
  text-align: center;
}

.process-step-num {
  color: var(--ember);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.process-step-name {
  color: var(--ivory);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-step p {
  color: var(--ivory);
  font-size: 13px;
  line-height: 1.55;
  margin: 10px 0 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form {
  background-color: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 34px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  color: var(--pale);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--hair);
  border-radius: 2px;
  color: var(--ivory);
  font-family: inherit;
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ember);
}

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

.form-status {
  color: var(--pale);
  font-size: 14px;
  margin-top: 16px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-panel {
  background-color: var(--panel);
  border: 1px solid var(--hair);
  border-radius: 4px;
  padding: 26px;
}

.info-panel h3 {
  color: var(--ivory);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-panel p,
.info-panel li {
  color: var(--ivory);
  font-size: 15px;
}

.info-panel ul {
  margin-top: 6px;
}

.info-panel li {
  margin-bottom: 6px;
}

.info-panel a {
  color: var(--ember);
}

.info-panel a:hover {
  color: var(--pale);
}

/* FAQ accordion (contact page) */
.faq-item {
  border-bottom: 1px solid var(--hair);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--ivory);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
}

.faq-q::after {
  content: "+";
  color: var(--ember);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  color: var(--ivory);
  font-size: 15px;
  padding-bottom: 20px;
  max-width: 720px;
}

.faq-item.is-open .faq-a {
  max-height: 300px;
}

/* =====================================================================
   FADE-UP REVEAL
   ===================================================================== */

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

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

@media (max-width: 920px) {
  .hero-title {
    font-size: 44px;
  }

  .process-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .seat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .ticket-nav {
    position: sticky;
    top: 0;
  }

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--ember);
    padding: 10px 24px 18px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.5);
  }

  .ticket-nav.is-open .nav-links {
    display: flex;
  }

  .nav-link {
    padding: 14px 8px;
    font-size: 13px;
    justify-content: flex-start;
  }

  .hero-title {
    font-size: 36px;
  }

  .marquee-stage::before,
  .marquee-stage::after {
    height: 90px;
  }

  .screen-frame {
    height: 110px;
  }

  .ticket-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .row-chip {
    margin-left: 42px;
  }

  .enjoy-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .seat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .process-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-row-2 {
    justify-content: center;
  }

  .footer-motif {
    position: static;
    transform: none;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .seat-strip {
    grid-template-columns: 1fr;
  }

  .process-strip {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}
