
:root {
  /* =========================
     QDHM COLOR PALETTE
  ========================= */

  --ink: #171512;
  --black: #171512;
  --black-deep: #0d0c0a;

  --paper: #f7f3eb;
  --cream: #f4eee3;
  --white: #ffffff;

  /* Performance colors */
  --blue: #1A9FAD;
  --green: #34C193;
  --orange: #DF942D;
  --gold: #FB9D1C;

  /* Text colors */
  --text-dark: #171512;
  --text-light: #ffffff;
  --muted: #625d55;
  --muted-light: rgba(255, 255, 255, .76);

  /* Accent colors */
  --accent: #1A9FAD;
  --accent-dark: #147985;

  --line: rgba(23, 21, 18, .15);
  --line-light: rgba(255, 255, 255, .18);

  --shadow: 0 24px 60px rgba(35, 27, 18, .12);
}


/* =========================
   BASE
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--paper);

  /*
    Elegant but readable body font.
    Uses Avenir on Mac when available,
    then Inter, then common sans-serif.
  */
  font-family: "Avenir Next", Inter, Arial, sans-serif;

  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  /*
    Keeps your elegant serif heading style.
    Cormorant Garamond is refined and theatrical.
  */
  font-family: "Cormorant Garamond", Georgia, serif;

  line-height: .98;
  margin: 0;
  font-weight: 600;
  letter-spacing: -.02em;
}

h1,
h2 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: inherit;
}

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


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

.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;

  padding: 20px 5vw;

  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;
  transition: .3s ease;
}

.nav.scrolled {
  background: rgba(23, 21, 18, .95);
  backdrop-filter: blur(12px);
  padding-block: 13px;
}

.brand {
  text-decoration: none;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  gap: 26px;

  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.nav-links a {
  text-decoration: none;
  opacity: .9;
  transition: color .2s ease, opacity .2s ease;
}

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


/* =========================
   HERO
========================= */

.hero {
  min-height: 100svh;
  position: relative;

  display: grid;
  align-items: end;

  overflow: hidden;
  color: white;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .76),
      rgba(0, 0, 0, .20)
    ),

    linear-gradient(
      0deg,
      rgba(0, 0, 0, .64),
      transparent 99%
    ),

    url("images/rainbow.jpg") center / cover no-repeat,

    #27221d;
}

/* DIZZY IMAGE */
.hero::before {
  content: "";
  position: absolute;

  right: 4%;
  top: 50%;
  transform: translateY(-50%);

  width: min(36vw, 525px);
  height: 70%;

  background: url("images/dizzy.jpg") center / contain no-repeat;

  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: min(1100px, 90%);
  margin: 0 auto;

  padding: 150px 0 85px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .25em;

  font-size: .72rem;
  font-weight: 700;

  margin-bottom: 22px;

  color: var(--gold);
}

.hero h1 {
  font-size: clamp(4.5rem, 13vw, 10.5rem);
  max-width: 900px;
}

.hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy {
  max-width: 620px;

  margin: 30px 0 34px;

  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;

  color: rgba(255, 255, 255, .90);
}


/* MOBILE */
@media (max-width: 700px) {
  .hero::before {
    width: 75vw;
    height: 65%;

    right: -8%;
    top: 48%;

    opacity: .8;
  }

  .hero-content {
    padding-bottom: 60px;
  }
}
/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 14px 22px;

  text-decoration: none;

  border: 1px solid rgba(255, 255, 255, .65);

  text-transform: uppercase;
  letter-spacing: .12em;

  font-size: .72rem;
  font-weight: 700;

  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.button:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);

  transform: translateY(-2px);
}

/* Colored section buttons */

.hospitality .button {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.hospitality .button:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

.audiences .button {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.audiences .button:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

.safety .button {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.safety .button:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

.cta .button {
  background: white;
  color: var(--ink);
  border-color: white;
}

.cta .button:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}


/* =========================
   GENERAL SECTIONS
========================= */

section {
  padding: 110px 5vw;
}

.container {
  width: min(1120px, 100%);
  margin: auto;
}


/* =========================
   INTRO / DIZZY
========================= */

/*
  Dizzy section = teal blue.
*/

.intro {
  background: var(--blue);
  color: var(--ink);
}

.intro .container {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.section-label {
  color: var(--ink);

  text-transform: uppercase;
  letter-spacing: .2em;

  font-size: .7rem;
  font-weight: 700;

  margin-bottom: 18px;
}

.intro h2,
.section-heading h2 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.intro p {
  margin: 0 0 20px;

  color: rgba(23, 21, 18, .86);

  font-size: 1.06rem;
}

.statement {
  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid rgba(23, 21, 18, .25);

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.25;
}


/* =========================
   DARK SECTION
========================= */

.dark {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;

  margin-bottom: 55px;
}

.section-heading p {
  max-width: 390px;
  margin: 0;

  color: rgba(255, 255, 255, .72);
}

.dark .section-label {
  color: var(--gold);
}


/* =========================
   SERVICES
========================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service {
  min-height: 330px;

  padding: 35px;

  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.service h3 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

/*
  Service color accents:

  1 = Aerial green
  2 = Fire orange
  3 = Immersive golden orange
*/

.service:nth-child(1) h3 {
  color: var(--green);
}

.service:nth-child(2) h3 {
  color: var(--orange);
}

.service:nth-child(3) h3 {
  color: #1A9FAD;
}

.service ul,
.audience-list {
  padding: 0;
  margin: 0;

  list-style: none;
  color: rgba(255, 255, 255, .78);
}

.service li {
  padding: 8px 0;

  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.service li:last-child {
  border: 0;
}


/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 12px;
  margin-top: 45px;
}

.photo {
  min-height: 340px;

  position: relative;
  overflow: hidden;

  background: #ddd3c4;
}

.photo img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  position: absolute;
  inset: 0;
}

.photo::before {
  content: none;
}


/* =========================
   HOSPITALITY
========================= */
.hospitality {
  background: var(--green);
  color: var(--ink);

  padding: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;

  min-height: 600px;
}

.split-image {
  min-height: 500px;

  background:
    url("images/dizzyskirt.jpg") center / contain no-repeat,
    var(--green);

  position: relative;
}

.split-image::after {
  content: none;
}

.split-content {
  padding: 70px 7vw;

  display: flex;
  justify-content: center;
  flex-direction: column;
}

.split-content h2 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  margin-bottom: 28px;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list li {
  padding: 14px 0;

  border-bottom: 1px solid rgba(23, 21, 18, .22);

  font-size: 1.05rem;
}

.clean-list li::before {
  content: "✦";

  color: var(--ink);
  margin-right: 12px;
}

/* =========================
   AUDIENCES
========================= */

.audiences {
  background: var(--orange);
  color: var(--ink);
}

.audience-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;
  align-items: center;
}


.audience-image {
  display: block;
  width: 80%;
  max-width: 420px;
  height: auto;
  margin-bottom: 32px;
}

.audience-list {
  color: var(--ink);

  border-top: 1px solid rgba(23, 21, 18, .25);
}

.audience-list li {
  padding: 17px 0;

  border-bottom: 1px solid rgba(23, 21, 18, .20);

  font-size: 1.15rem;
}

.audience-list li::before {
  content: "0" counter(item);

  counter-increment: item;

  display: inline-block;
  width: 45px;

  color: var(--ink);

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}

.audience-list {
  counter-reset: item;
}


/* =========================
   SAFETY / FIRE
========================= */

.safety {
  background: var(--blue);
  color: var(--ink);
}

.safety-heading {
  font-size: clamp(3.5rem, 8vw, 7rem);
  margin-bottom: 55px;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 80px;
}

.safety-card {
  border-top: 1px solid var(--ink);
  padding-top: 25px;
}

.safety-card h3 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.safety-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-card li {
  padding: 12px 0;

  border-bottom: 1px solid rgba(23, 21, 18, .18);
}


/* =========================
   ABOUT / ARTIST
========================= */

.about {
  background: var(--black);
  color: white;
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;

  gap: 80px;
}

.about h2 {
  font-size: clamp(3.5rem, 8vw, 7rem);
}

.about-copy {
  color: rgba(255, 255, 255, .78);
}

.about-copy p {
  margin: 0 0 24px;
}

.facts {
  margin-top: 35px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 1px;

  background: rgba(255, 255, 255, .14);
}

.fact {
  background: var(--black);
  padding: 22px;
}

.fact strong {
  display: block;

  color: var(--gold);

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;

  margin-bottom: 4px;
}

/* Experience */
.fact:nth-child(4n + 1) strong {
  color: var(--blue);
}

/* Lyra */
.fact:nth-child(4n + 2) strong {
  color: var(--green);
}

/* Fire */
.fact:nth-child(4n + 3) strong {
  color: #d44213;
}

/* Hoop */
.fact:nth-child(4n + 4) strong {
  color: var(--gold);
}


/* =========================
   ARTIST GALLERY
========================= */

.about-gallery {
  margin-top: 65px;

  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;

  gap: 12px;
}

.about-gallery .photo {
  min-height: 430px;
}

.about-gallery .photo:first-child {
  min-height: 560px;
}


/* =========================
   CALL TO ACTION
========================= */

.cta {
  background: var(--gold);
  color: var(--ink);

  text-align: center;

  padding: 115px 5vw;
}

.cta h2 {
  font-size: clamp(4rem, 10vw, 9rem);
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;

  margin: 0 auto 35px;

  color: rgba(23, 21, 18, .84);
}


.cta .button {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
}

.email-note {
  font-size: .8rem;

  margin-top: 24px !important;
  margin-bottom: 0 !important;
}


/* =========================
   FOOTER
========================= */

footer {
  background: var(--black-deep);

  color: rgba(255, 255, 255, .60);

  padding: 35px 5vw;

  display: flex;
  justify-content: space-between;
  gap: 20px;

  font-size: .78rem;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  color: var(--gold);
}


/* =========================
   TABLET / MOBILE
========================= */

@media (max-width: 850px) {

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 6vw;
  }

  .intro,
  .audience-wrap,
  .safety-grid,
  .about-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 35px;
  }

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

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

  .photo {
    min-height: 280px;
  }

  .split-image {
    min-height: 60vh;
  }

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

  .about-gallery .photo:first-child {
    grid-column: 1 / -1;
    min-height: 450px;
  }

}


@media (max-width: 520px) {

  .hero h1 {
    font-size: 4.2rem;
  }

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

  .about-gallery .photo:first-child {
    grid-column: auto;
  }

  footer {
    flex-direction: column;
  }

}