:root {
  --lq-black: #080506;
  --lq-charcoal: #151012;
  --lq-red: #e7332f;
  --lq-burgundy: #7a1115;
  --lq-gold: #f1c36a;
  --lq-cream: #fff7ec;
  --lq-muted: #cfc4bd;
  --lq-card: rgba(255, 255, 255, 0.08);
  --lq-border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--lq-cream);
  background: var(--lq-black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
img, iframe, video { max-width: 100%; }
a { color: inherit; }
.center { text-align: initial; margin: 0; }
.gradient { background: transparent; }
.pageContent { overflow: visible; width: 100%; }

.home-page {
  background:
    radial-gradient(circle at top left, rgba(231, 51, 47, 0.22), transparent 35rem),
    linear-gradient(180deg, #090506 0%, #161012 46%, #080506 100%);
}

.hero-section {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: clamp(6rem, 10vw, 9rem) 1.25rem clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 6, 0.94), rgba(8, 5, 6, 0.65), rgba(8, 5, 6, 0.96)),
    url("images/trio.webp") center / cover no-repeat;
  opacity: 0.9;
}
.hero-overlay {
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 45%;
  background: radial-gradient(circle, rgba(231, 51, 47, 0.3), transparent 60%);
  filter: blur(20px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--lq-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
}
h1, h2, h3, h4, h5 {
  margin: 0;
  color: inherit;
  line-height: 1.1;
}
h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 7vw, 6.3rem);
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}
h3 { font-size: 1.35rem; }
.hero-lede {
  max-width: 650px;
  margin: 1.35rem 0 0;
  color: var(--lq-muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #180506;
  background: linear-gradient(135deg, var(--lq-gold), #fff0b5);
  box-shadow: 0 16px 40px rgba(241, 195, 106, 0.22);
}
.button-secondary {
  border: 1px solid var(--lq-border);
  color: var(--lq-cream);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.hero-brand-card {
  padding: 1.5rem;
  border: 1px solid var(--lq-border);
  border-radius: 2rem;
  background: rgba(8, 5, 6, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  text-align: center;
}
.hero-brand-card img {
  width: min(390px, 90%);
  display: block;
  margin: 0 auto;
}
.hero-brand-card p {
  margin: 1rem 0 0;
  color: var(--lq-gold);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.5rem 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1rem;
}
.section-heading p:not(.eyebrow) {
  color: var(--lq-muted);
  font-size: 1.12rem;
}
.feature-grid,
.class-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.feature-card,
.class-card,
.contact-cta {
  border: 1px solid var(--lq-border);
  background: var(--lq-card);
  border-radius: 1.5rem;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}
.feature-card { padding: 1.25rem; }
.feature-card p,
.class-card p,
.contact-cta p { color: var(--lq-muted); }
.class-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.class-card { overflow: hidden; }
.class-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}
.class-card-body { padding: 1.25rem; }
.class-day {
  margin: 0 0 0.35rem;
  color: var(--lq-gold) !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.class-meta { font-weight: 800; }
.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--lq-gold);
  font-weight: 800;
  text-decoration-thickness: 2px;
}




.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--lq-border);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 4rem;
}
.contact-cta a:not(.button) { color: var(--lq-gold); }

#pageFooter {
  color: var(--lq-muted);
  background: #050303;
  text-align: center;
  padding: 2rem 1rem;
}
#pageFooter h4 { color: var(--lq-gold); }
.scroll-left { height: auto; overflow: visible; }
.scroll-left p {
  position: static;
  width: auto;
  animation: none;
  transform: none;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .hero-inner,
  .class-card-grid,
  .feature-grid,
  .contact-cta {
    grid-template-columns: 1fr;
  }

  .hero-brand-card {
    max-width: 420px;
  }

  .contact-cta {
    display: grid;
  }
}
@media (max-width: 560px) {
  .hero-section { min-height: auto; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .image-strip { grid-template-columns: 1fr; }
}
/* =========================================================
   TOP HEADER AREA
   Controls the full header bar
   ========================================================= */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 28px;
}

/* =========================================================
   HEADER LOGO + BRAND TEXT
   Controls this section:
   <a class="site-brand"> ... </a>
   ========================================================= */

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* =========================================================
   HEADER LOGO IMAGE SIZE
   Change width below to make the logo bigger/smaller
   ========================================================= */

.site-header .site-brand img {
    width: 70px !important;
    max-width: 70px !important;
    min-width: 70px !important;
    height: auto !important;
    display: block !important;
}

/* =========================================================
   TEXT BESIDE HEADER LOGO
   ========================================================= */

.site-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand strong {
    font-size: 1.1rem;
}

.site-brand small {
    font-size: 0.75rem;
}



/* =========================================================
   MAIN HEADER / MENU
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 28px;
    background: rgba(8, 5, 6, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

/* =========================================================
   BRAND / LOGO AREA
   ========================================================= */

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff7ec;
}

.site-brand img {
    width: 70px !important;
    max-width: 70px !important;
    height: auto !important;
    display: block;
}

.site-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand strong {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.site-brand small {
    color: #f1c36a;
    font-size: 0.75rem;
}

/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a {
    color: #fff7ec;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.10rem;
}

.site-nav a:hover {
    color: #f1c36a;
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f1c36a, #fff0b5);
    color: #180506 !important;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

@media (max-width: 760px) {

    /* =====================================================
       MOBILE HEADER
    ====================================================== */

    .site-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 12px 18px;
    }


    /* =====================================================
       MOBILE BRAND AREA
    ====================================================== */

    .site-brand {
        justify-content: center;
        text-align: center;
    }

    .site-brand img {
        width: 60px !important;
        max-width: 60px !important;
        min-width: 60px !important;
        height: auto !important;
    }


    /* =====================================================
       SECTION TEXT SPACING
    ====================================================== */

    .section-heading p {
        margin-bottom: 2px;
    }


    /* =====================================================
       MOBILE NAVIGATION
    ====================================================== */

    .site-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .site-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 999px;
        text-align: center;
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.92rem;
    }

    .nav-cta {
        grid-column: 1 / -1;
    }


    /* =====================================================
       MOBILE LAYOUT FIXES
    ====================================================== */

    .feature-grid,
    .class-card-grid,
    .gallery-grid,
    .image-strip {
        grid-template-columns: 1fr !important;
    }

    .image-strip img,
    .gallery-card img,
    .class-card img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

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

    .button {
        width: 100%;
    }

}
  /* =========================================================
   GALLERY PAGE
========================================================= */

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

.gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid var(--lq-border);
    background: var(--lq-card);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
}

.gallery-card img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 0.85rem 1rem;
    color: var(--lq-muted);
    font-size: 0.95rem;
}

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

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

    .gallery-card img {
        height: 220px;
    }
}
  
  /* =========================================================
   PORTRAIT / MOBILE FIXES
========================================================= */

@media (max-width: 760px) {

    .site-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1rem;
    }

    .site-brand {
        justify-content: center;
        text-align: center;
    }

    .site-brand img {
        width: 60px !important;
        max-width: 60px !important;
    }

    .site-nav {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .site-nav a {
        display: block;
        text-align: center;
        padding: 0.7rem 0.5rem;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        font-size: 0.9rem;
    }

    .nav-cta {
        grid-column: 1 / -1;
    }

    .section {
        width: min(100% - 1.25rem, 1180px);
        padding: 1.5rem 0;
    }

    h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
        line-height: 1.05;
    }

    h2 {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }

    .feature-grid,
    .class-card-grid,
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-cta {
        display: grid;
        text-align: center;
    }

    .button {
        width: 100%;
    }

    img,
    iframe,
    video {
        max-width: 100%;
        height: auto;
    }
}
  
  /* =========================================================
   CONTACT CTA LAYOUT
========================================================= */

.contact-cta {
    align-items: flex-start;
}


  
  .contact-cta .hero-actions {
    padding-top: 3.2rem;
}
  
  
  .contact-action-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
}

.contact-action-grid p {
    margin: 0;
}

@media (max-width: 650px) {
    .contact-action-grid {
        grid-template-columns: 1fr;
    }

    .contact-action-grid .button {
        width: 100%;
    }
}
  
  .image-strip img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}
  /* =========================================================
   MOBILE FIX: IMAGE + TEXT CARDS
   Prevent text from squeezing images into thin strips
========================================================= */

@media (max-width: 700px) {

    .image-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-strip img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block;
    }

    .class-card,
    .feature-card,
    .gallery-card {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .class-card img,
    .gallery-card img {
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
    }

    .class-card-body,
    .gallery-card figcaption {
        height: auto !important;
    }
}
  
  
  /* =========================================================
   MOBILE FIX: HERO BACKGROUND IMAGE
   Prevent trio image being cropped too tightly on phones
========================================================= */

@media (max-width: 700px) {

    .hero-section::before {
        background:
            linear-gradient(
                180deg,
                rgba(8, 5, 6, 0.88),
                rgba(8, 5, 6, 0.72),
                rgba(8, 5, 6, 0.96)
            ),
            url("images/trio.webp") center top / contain no-repeat !important;
    }

    .hero-section {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
  
  /* HERO IMAGE MOBILE OVERRIDE */
@media screen and (max-width: 700px) {

    section.hero-section::before {
        background-image:
            linear-gradient(
                180deg,
                rgba(8, 5, 6, 0.85),
                rgba(8, 5, 6, 0.65),
                rgba(8, 5, 6, 0.95)
            ),
            url("images/trio.webp") !important;

        background-size: contain !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

}
  
  /* =========================================================
   HOME PAGE IMAGE STRIP
========================================================= */

/* =========================================================
   HOME PAGE IMAGE STRIP - CLEAN VERSION
========================================================= */

.image-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.image-strip img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 1.25rem;
    border: 1px solid var(--lq-border);
    background: rgba(255,255,255,0.06);
}

@media (max-width: 700px) {

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

}
  
  
  
}