* {
  box-sizing: border-box;
}

:root {
  --background: #f5efe7;
  --panel: #fffaf4;

  --navy: #26364a;
  --teal: #3f6f70;
  --terracotta: #b96f52;
  --gold: #caa66a;
  --sage: #778f79;

  --text: #303234;
  --muted: #77736f;
  --border: rgba(38, 54, 74, 0.14);

  --shadow: 0 15px 40px rgba(38, 54, 74, 0.10);
}


/* PAGE */

body {
  margin: 0;

  font-family: "Montserrat", Arial, sans-serif;

  color: var(--text);

  background:
    radial-gradient(
      circle at top left,
      rgba(202, 166, 106, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(63, 111, 112, 0.14),
      transparent 35%
    ),
    var(--background);
}


/* MAIN WEBSITE CONTAINER */

.page-shell {
  width: min(1100px, calc(100% - 32px));

  margin: 32px auto;

  background: var(--panel);

  border: 1px solid rgba(202, 166, 106, 0.4);

  border-radius: 28px;

  padding: 42px;

  box-shadow: var(--shadow);
}


/* TOP SECTION */

.hero {
  text-align: center;
}


/* MAIN TITLE */

.hero h1 {
  margin: 0;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(3rem, 7vw, 5rem);

  font-weight: 600;

  letter-spacing: 0.04em;

  color: var(--navy);
}


/* SUBTITLE */

.subtitle {
  margin: 8px 0 26px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 1.5rem;

  font-style: italic;

  font-weight: 600;

  color: var(--teal);
}


/* MAIN PHOTO */

.main-photo {
  width: min(720px, 100%);

  max-height: 480px;

  object-fit: cover;

  display: block;

  margin: 0 auto 38px;

  border: 6px solid white;

  border-radius: 18px;

  box-shadow: 0 12px 28px rgba(38, 54, 74, 0.15);
}


/* 4 MAIN SECTIONS */

.content-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 24px;
}


/* SECTION BOXES */

.card {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--border);

  border-radius: 22px;

  padding: 24px;

  background: #fffdf9;

  box-shadow: 0 7px 20px rgba(38, 54, 74, 0.06);
}


/* COLORED STRIPE ON LEFT */

.card::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;
  bottom: 0;

  width: 5px;

  background: var(--gold);
}


/* DIFFERENT COLORS FOR EACH SECTION */

.videos-card::before {
  background: var(--teal);
}

.bio-card::before {
  background: var(--terracotta);
}

.setlist-card::before {
  background: var(--gold);
}

.photos-card::before {
  background: var(--sage);
}


/* SECTION TITLES */

.card h2 {
  margin-top: 0;

  margin-bottom: 16px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 2rem;

  font-weight: 600;

  color: var(--navy);
}


/* NORMAL TEXT */

.card p {
  line-height: 1.65;
}


/* VIDEOS */

.video-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

.video-grid iframe {
  width: 100%;

  aspect-ratio: 16 / 9;

  border: 0;

  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(38, 54, 74, 0.12);
}


/* SET LIST */

.set-list {
  columns: 2;

  column-gap: 28px;
}

.set-list p {
  position: relative;

  margin: 0 0 9px;

  padding-left: 14px;

  break-inside: avoid;
}

.set-list p::before {
  content: "•";

  position: absolute;

  left: 0;

  color: var(--terracotta);
}


/* SMALL TEXT */

.small-note {
  color: var(--muted);

  font-size: 0.9rem;

  margin-top: 16px;
}


/* PICTURES */

.photo-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.photo-grid img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  border-radius: 12px;

  border: 4px solid white;

  box-shadow: 0 5px 15px rgba(38, 54, 74, 0.12);

  transition: transform 0.2s ease;
}

.photo-grid img:hover {
  transform: translateY(-3px);
}


/* FOOTER */

footer {
  text-align: center;

  color: var(--muted);

  padding-top: 30px;

  font-size: 0.85rem;
}


/* MOBILE */

@media (max-width: 780px) {

  .page-shell {
    width: min(100% - 18px, 1100px);

    margin: 9px auto;

    padding: 22px 16px;

    border-radius: 20px;
  }

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

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

  .set-list {
    columns: 1;
  }
}
